Skip to content

Commit 6a081c9

Browse files
use static ffmpeg in travis build
1 parent b11e77d commit 6a081c9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.travis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@ python:
33
- "2.7"
44
- "3.4"
55
sudo: required
6+
cache: pip
67
install:
78
- "pip install -r requirements/production.txt"
89
- "pip install -r requirements/testing.txt"
910
- "pip install ."
1011
before_script:
11-
- sudo add-apt-repository ppa:jon-severinsson/ffmpeg -y
12-
- sudo apt-get update -q
13-
- sudo apt-get install imagemagick ffmpeg
12+
- wget -q http://johnvansickle.com/ffmpeg/builds/ffmpeg-git-64bit-static.tar.xz
13+
- tar xf ffmpeg-git-64bit-static.tar.xz
14+
- cd ffmpeg-*
15+
- sudo mv ff* /usr/bin/
16+
- ffmpeg -version
17+
- convert --version
1418
script:
1519
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27,coverage; fi
1620
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then tox -e py34; fi

0 commit comments

Comments
 (0)