Offline batch convert MP3 to MP4 with image

tin34543

New member
Hi,

I'm looking for a free standalone tool (not online) with a GUI that can do a batch convert of
several hundred MP3 and WAV files to MP4, and include an image on each converted file.

FFMpeg too complicted for me. Any other suggestions?

Cheers!

PT
 
Are you sure? FFMPeg rules

Probably something like

ls "*.\(wav\|mp3\)"| xargs -I '{}' ffmpeg -y -i '{}' -i YOURIMAGEHERE.png -codec:v mpeg4 '{}'.mp4
 
Back
Top