Skip to content

Commit 9f0aac2

Browse files
committed
Download ffmpeg.
1 parent 1ce1953 commit 9f0aac2

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

AppVeyor/Install.cmd

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,24 @@ cd ..
44
call CloneRepositories.cmd https://github.com/ImageMagick shallow
55

66
set INNOSETUP=C:\InnoSetup
7-
if exist "C:\InnoSetup" goto strawberry
7+
if exist "C:\InnoSetup" goto x86
88

99
mkdir %INNOSETUP%
1010
cd %INNOSETUP%
1111
echo Downloading innosetup-5.5.9-unicode.exe
1212
appveyor DownloadFile https://github.com/ImageMagick/ImageMagick-Windows/releases/download/20160630/innosetup-5.5.9-unicode.exe
1313
cd ..
1414

15-
:strawberry
15+
:x86
1616

1717
if "%1" == "x64" goto x64
1818

19+
set VISUALMAGICKBIN=C:\ImageMagick\VisualMagick\bin
20+
cd %VISUALMAGICKBIN%
21+
22+
echo Downloading ffmpeg-4.2-win32.exe
23+
appveyor DownloadFile https://github.com/ImageMagick/ImageMagick-Windows/releases/download/20160630/ffmpeg-4.2-win32.exe -FileName "ffmpeg.exe"
24+
1925
set STRAWBERRYX86=C:\Strawberry-x86
2026
if exist %STRAWBERRYX86% goto install
2127

@@ -28,6 +34,12 @@ goto install
2834

2935
:x64
3036

37+
set VISUALMAGICKBIN=C:\ImageMagick\VisualMagick\bin
38+
cd %VISUALMAGICKBIN%
39+
40+
echo Downloading ffmpeg-4.2-win64.exe
41+
appveyor DownloadFile https://github.com/ImageMagick/ImageMagick-Windows/releases/download/20160630/ffmpeg-4.2-win64.exe -FileName "ffmpeg.exe"
42+
3143
set STRAWBERRY64=C:\Strawberry-x64
3244
if exist %STRAWBERRY64% goto install
3345

0 commit comments

Comments
 (0)