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