my father-in-law has bought a box that plays videos from USB stick, but some of videos have AC3/PCM audio stream, and the device isn't able to cope with that. It is unfortunately only able to decode MP3 audio stream.
I need some software that he'll be able to run on each video to re-encode the audio and then mux it back into AVI format that the device can play. What do you recommend? Keep in mind that the target user is 60+ years old computer novice, so I can't throw FFMPEG at him and hope it will work :-)
Well, I was thinking that I could write a little windows tool that would just call ffmpeg
ffmpeg -i input.avi -vcodec copy -acodec libmp3lame -ac 2 output.avi
should I bother with writing a software or is there a braindead simple tool out there?