ffmpeg installer

This commit is contained in:
2015-07-16 14:15:52 +05:30
parent d1fc63937d
commit a28418f0ff
+14
View File
@@ -0,0 +1,14 @@
export appName='ffmpeg-2.7.1-64bit-static';
export installationPath="$appDir/$appName";
downloadPack(){
wget -c 'http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz';
}
installPack(){
tar -xJvf 'ffmpeg-release-64bit-static.tar.xz';
cd "$appName";
find ./ -maxdepth 1 -type f -executable > 'binaries.lst';
}