You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
# Script to download the latest x64 mac version of ffmpeg
|
|
# The binary will be placed in the root dir of the app
|
|
rm ffmpeg*
|
|
wget https://evermeet.cx/ffmpeg/ffmpeg-5.1.1.7z
|
|
7z e ffmpeg-5.1.1.7z
|
|
chmod +x ffmpeg
|
|
rm ffmpeg-5.1.1.7z
|
|
|