43 lines
1.6 KiB
Bash
Executable File
43 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
install_ffmpeg_gen(){
|
|
echo "Downloading ffmpeg"
|
|
rm -rf /tmp/ffmpeg.tar.xz
|
|
wget -q --show-progress -c "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz" -O /tmp/ffmpeg.tar.xz
|
|
echo "Installing ffmpeg"
|
|
tar Jxf /tmp/ffmpeg.tar.xz -C /tmp/
|
|
if [ -f /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffmpeg ] ; then
|
|
cp -rf /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffmpeg /usr/bin/
|
|
chmod +x /usr/bin/ffmpeg
|
|
fi
|
|
if [ -f /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffprobe ] ; then
|
|
cp -rf /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffprobe /usr/bin/
|
|
chmod +x /usr/bin/ffprobe
|
|
fi
|
|
if [ -f /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffplay ] ; then
|
|
cp -rf /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffplay /usr/bin/
|
|
chmod +x /usr/bin/ffplay
|
|
fi
|
|
if [ -d /tmp/ffmpeg-master-latest-linux64-gpl/man ] ; then
|
|
cp -rf /tmp/ffmpeg-master-latest-linux64-gpl/man/* /usr/share/man/
|
|
fi
|
|
rm -rf /tmp/ffmpeg.tar.xz
|
|
rm -rf /tmp/ffmpeg-master-latest-linux64-gpl
|
|
echo "Installation ffmpeg done"
|
|
}
|
|
|
|
echo "Checking ffmpeg version"
|
|
touch /etc/ffmpeg_version.conf
|
|
version_ffmpeg=$(curl "https://github.com/BtbN/FFmpeg-Builds/releases/tag/latest" 2> /dev/null | grep "<title>" | cut -d ">" -f 2 | cut -d "<" -f 1)
|
|
version_ffmpeg_current=$(cat /etc/ffmpeg_version.conf)
|
|
if [ "${version_ffmpeg}" != "${version_ffmpeg_current}" ] ; then
|
|
echo "New ffmpeg version detected"
|
|
install_ffmpeg_gen
|
|
error_install=$?
|
|
if [ ${error_install} -eq 0 ] ; then
|
|
echo "${version_ffmpeg}" > /etc/ffmpeg_version.conf
|
|
fi
|
|
else
|
|
echo "No updates for ffmpeg"
|
|
fi
|