Skip to content

Commit

Permalink
try to fix missing ffmpeg on windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaaro committed Aug 2, 2016
1 parent 02c6a3f commit 31cba0d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@ install:
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pip.py"
- "%PYTHON%/Scripts/pip.exe install -e ."
# Install ffmpeg
- ps: Start-FileDownload ('http://ffmpeg.zeranoe.com/builds/win64/shared/ffmpeg-2.7-win64-shared.7z' ) ffmpeg-shared.7z
- 7z x ffmpeg-shared.7z > NULL
- "SET PATH=%cd%\\ffmpeg-2.7-win64-shared\\bin;%PATH%"
test_script:
- "%PYTHON%/python.exe test/test.py"

0 comments on commit 31cba0d

Please sign in to comment.