Loop through .mp3 files and cover photos to generate video files for upload to YouTube.
#!/bin/bash #run chmod u+x manson.sh for i in {1..15} do echo "(i) is $i" j=$(printf "%03d" $i) date n=$(printf "ffmpeg -loop 1 -r 1 -i $j.png -i $j.mp3 -c:a copy -shortest -c:v libx264 mov_$j.mp4") $n done