8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f2e70 commit 39741f4Copy full SHA for 39741f4
.travis.yml
@@ -1,9 +1,10 @@
1
language: python
2
before_install:
3
- >
4
- [ -f ffmpeg-3.3.4-64bit-static/ffmpeg ] || (
+ [ -f ffmpeg-release/ffmpeg ] || (
5
curl -O https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz &&
6
- tar Jxf ffmpeg-release-64bit-static.tar.xz
+ mkdir -p ffmpeg-release &&
7
+ tar Jxf ffmpeg-release-64bit-static.tar.xz --strip-components=1 -C ffmpeg-release
8
)
9
matrix:
10
include:
@@ -28,9 +29,9 @@ matrix:
28
29
install:
30
- pip install tox
31
script:
- - export PATH=$(readlink -f ffmpeg-3.3.4-64bit-static):$PATH
32
+ - export PATH=$(readlink -f ffmpeg-release):$PATH
33
- tox -e $TOX_ENV
34
cache:
35
directories:
36
- .tox
- - ffmpeg-3.3.4-64bit-static
37
+ - ffmpeg-release
0 commit comments