install-ffmpeg.sh
· 483 B · Bash
Eredeti
#!/usr/bin/env bash
stat ffmpeg-master-latest-linux64-gpl.tar.xz || wget https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz
tar xvf ffmpeg-master-latest-linux64-gpl.tar.xz
cp -v ffmpeg-master-latest-*/bin/* /usr/bin/
chmod +x /usr/bin/ffmpeg /usr/bin/ffprobe /usr/bin/ffplay
cp -v ffmpeg-master-latest-*/man/man1/* /usr/local/share/man/man1/
cp -v ffmpeg-master-latest-*/man/man3/* /usr/local/share/man/man3/
ffmpeg -version
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | stat ffmpeg-master-latest-linux64-gpl.tar.xz || wget https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz |
| 4 | |
| 5 | tar xvf ffmpeg-master-latest-linux64-gpl.tar.xz |
| 6 | |
| 7 | cp -v ffmpeg-master-latest-*/bin/* /usr/bin/ |
| 8 | |
| 9 | chmod +x /usr/bin/ffmpeg /usr/bin/ffprobe /usr/bin/ffplay |
| 10 | |
| 11 | cp -v ffmpeg-master-latest-*/man/man1/* /usr/local/share/man/man1/ |
| 12 | |
| 13 | cp -v ffmpeg-master-latest-*/man/man3/* /usr/local/share/man/man3/ |
| 14 | |
| 15 | ffmpeg -version |