Skip to content

Instantly share code, notes, and snippets.

@thebestjoe
thebestjoe / gist:7e80b0c948383075fd5b98df576c14db
Last active December 12, 2017 09:01
make youtube video from mp3 files
for name in *.mp3; do ffmpeg -loop 1 -i <image name goes here>.jpg -i "$name" -shortest -c:v libx264 -preset ultrafast -c:a copy "${name%.*}.mp4"; done