uvg266/.travis-install.bash
2020-12-15 13:47:28 +02:00

26 lines
756 B
Bash

#!/bin/bash
# Download FFmpeg and HM decoder and place them in $PATH.
set -euvo pipefail
mkdir -p "${HOME}/bin"
wget http://ultravideo.fi/ffmpeg-release-4.2.1-32bit-static.tar.xz
sha256sum -c - << EOF
226f55f8a94d71f3d231a20fe59fcbb7f6100cabf663f9bcb887d17b332a91c5 ffmpeg-release-4.2.1-32bit-static.tar.xz
EOF
tar xf ffmpeg-release-4.2.1-32bit-static.tar.xz
cp ffmpeg-4.2.1-i686-static/ffmpeg "${HOME}/bin/ffmpeg"
chmod +x "${HOME}/bin/ffmpeg"
wget http://ultravideo.fi/ubuntu-vtm-11.0.tgz
sha256sum -c - << EOF
0f1655a308ccba82976d11ed70ceb5a9cb4291db950558c707f0dfd84d5462ca ubuntu-vtm-11.0.tgz
EOF
tar xf ubuntu-vtm-11.0.tgz
cp DecoderApp "${HOME}/bin/DecoderAppStatic"
chmod +x "${HOME}/bin/DecoderAppStatic"
export PATH="${HOME}/bin:${PATH}"