Skip to content

Commit

Permalink
Use ffmpeg v4 in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkvdb committed Apr 26, 2021
1 parent 372cd42 commit 9e2b929
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -93,9 +93,9 @@ before_install:
install:
- |
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
wget http://ffmpeg.org/releases/ffmpeg-3.1.3.tar.bz2
tar xf ffmpeg-3.1.3.tar.bz2
cd ffmpeg-3.1.3 && ./configure --prefix=/${DEPS_DIR}/local --disable-static --enable-shared --disable-avdevice --disable-doc --disable-htmlpages --disable-manpages --disable-programs --disable-encoders --disable-muxers --enable-swscale --disable-yasm --enable-protocol=file --enable-protocol=http --enable-iconv && make -j4 install
wget https://www.ffmpeg.org/releases/ffmpeg-4.4.tar.bz2
tar xf ffmpeg-4.4.tar.bz2
cd ffmpeg-4.4 && ./configure --prefix=/${DEPS_DIR}/local --disable-static --enable-shared --disable-avdevice --disable-doc --disable-htmlpages --disable-manpages --disable-programs --disable-encoders --disable-muxers --enable-swscale --disable-yasm --enable-protocol=file --enable-protocol=http --enable-iconv && make -j4 install
cd ..
fi
Expand Down

0 comments on commit 9e2b929

Please sign in to comment.