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 21:48:21 +01:00

19 lines
635 B
YAML

language: go
install:
- export PATH=$PATH:~/bin/
- 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
- chmod a+rx ffmpeg
- chmod a+rx ffprobe
- mv ffmpeg ~/bin/ffmpeg
- mv ffprobe ~/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
- make install
- cd ..
- curl https://yt-dl.org/downloads/2015.07.28/youtube-dl -o ~/bin/youtube-dl
- chmod a+rx ~/bin/youtube-dl