Skip to content

Instantly share code, notes, and snippets.

@Botffy
Created August 15, 2020 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Botffy/bdfade020f3b44543e57d6f17bac49d2 to your computer and use it in GitHub Desktop.
Save Botffy/bdfade020f3b44543e57d6f17bac49d2 to your computer and use it in GitHub Desktop.
Convert all mp3 files in the directory into mp4 videos with a still image
for f in *.mp3; do
ffmpeg -loop 1 -i still.png -i "$f" -shortest "${f%.mp3}.mp4"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment