This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mumbledj/.travis.yml
2015-08-03 14:16:12 +01:00

18 lines
675 B
YAML

language: go
install:
- wget http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz
- tar -xvf ffmpeg-release-64bit-static.tar.xz --strip 1 --no-anchored ffmpeg ffprobe
- sudo chmod a+rx ffmpeg
- sudo chmod a+rx ffprobe
- sudo mv ffmpeg /usr/local/bin/ffmpeg
- sudo mv ffprobe /usr/local/bin/ffprobe
- wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz
- tar xzvf opus-1.0.3.tar.gz
- cd opus-1.0.3
- ./configure
- make
- sudo make install
- cd ..
- sudo curl https://yt-dl.org/downloads/2015.07.28/youtube-dl -o /usr/local/bin/youtube-dl
- sudo chmod a+rx /usr/local/bin/youtube-dl