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*
|
|
curl https://evermeet.cx/ffmpeg/ffmpeg-6.0.zip -o ffmpeg.zip
|
|
unzip ffmpeg.zip
|
|
chmod +x ffmpeg
|
|
rm ffmpeg.zip
|
|
|