mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 18:19:55 +00:00
Update Windows CI scripts to use ffmpeg 3.2.4
This commit is contained in:
parent
8d84869432
commit
ae05c37a46
1 changed files with 13 additions and 13 deletions
|
@ -305,11 +305,11 @@ if [ -z $SKIP_DOWNLOAD ]; then
|
||||||
"Bullet-2.86-msvc${MSVC_YEAR}-win${BITS}.7z"
|
"Bullet-2.86-msvc${MSVC_YEAR}-win${BITS}.7z"
|
||||||
|
|
||||||
# FFmpeg
|
# FFmpeg
|
||||||
download "FFmpeg 3.0.1" \
|
download "FFmpeg 3.2.4" \
|
||||||
"http://ffmpeg.zeranoe.com/builds/win${BITS}/shared/ffmpeg-3.0.1-win${BITS}-shared.7z" \
|
"http://ffmpeg.zeranoe.com/builds/win${BITS}/shared/ffmpeg-3.2.4-win${BITS}-shared.7z" \
|
||||||
"ffmpeg-3.0.1-win${BITS}.7z" \
|
"ffmpeg-3.2.4-win${BITS}.7z" \
|
||||||
"http://ffmpeg.zeranoe.com/builds/win${BITS}/dev/ffmpeg-3.0.1-win${BITS}-dev.7z" \
|
"http://ffmpeg.zeranoe.com/builds/win${BITS}/dev/ffmpeg-3.2.4-win${BITS}-dev.7z" \
|
||||||
"ffmpeg-3.0.1-dev-win${BITS}.7z"
|
"ffmpeg-3.2.4-dev-win${BITS}.7z"
|
||||||
|
|
||||||
# MyGUI
|
# MyGUI
|
||||||
download "MyGUI 3.2.3-git" \
|
download "MyGUI 3.2.3-git" \
|
||||||
|
@ -434,21 +434,21 @@ cd $DEPS
|
||||||
echo
|
echo
|
||||||
|
|
||||||
# FFmpeg
|
# FFmpeg
|
||||||
printf "FFmpeg 3.0.1... "
|
printf "FFmpeg 3.2.4... "
|
||||||
{
|
{
|
||||||
cd $DEPS_INSTALL
|
cd $DEPS_INSTALL
|
||||||
|
|
||||||
if [ -d FFmpeg ] && grep "FFmpeg version: 3.0.1" FFmpeg/README.txt > /dev/null; then
|
if [ -d FFmpeg ] && grep "FFmpeg version: 3.2.4" FFmpeg/README.txt > /dev/null; then
|
||||||
printf "Exists. "
|
printf "Exists. "
|
||||||
elif [ -z $SKIP_EXTRACT ]; then
|
elif [ -z $SKIP_EXTRACT ]; then
|
||||||
rm -rf FFmpeg
|
rm -rf FFmpeg
|
||||||
|
|
||||||
eval 7z x -y "${DEPS}/ffmpeg-3.0.1-win${BITS}.7z" $STRIP
|
eval 7z x -y "${DEPS}/ffmpeg-3.2.4-win${BITS}.7z" $STRIP
|
||||||
eval 7z x -y "${DEPS}/ffmpeg-3.0.1-dev-win${BITS}.7z" $STRIP
|
eval 7z x -y "${DEPS}/ffmpeg-3.2.4-dev-win${BITS}.7z" $STRIP
|
||||||
|
|
||||||
mv "ffmpeg-3.0.1-win${BITS}-shared" FFmpeg
|
mv "ffmpeg-3.2.4-win${BITS}-shared" FFmpeg
|
||||||
cp -r "ffmpeg-3.0.1-win${BITS}-dev/"* FFmpeg/
|
cp -r "ffmpeg-3.2.4-win${BITS}-dev/"* FFmpeg/
|
||||||
rm -rf "ffmpeg-3.0.1-win${BITS}-dev"
|
rm -rf "ffmpeg-3.2.4-win${BITS}-dev"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export FFMPEG_HOME="$(real_pwd)/FFmpeg"
|
export FFMPEG_HOME="$(real_pwd)/FFmpeg"
|
||||||
|
@ -755,4 +755,4 @@ if [ -z $CI ]; then
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit $RET
|
exit $RET
|
||||||
|
|
Loading…
Reference in a new issue