Reputation: 35781
We're converting a bunch of .RM files to .MP4 and wondered what the best way is. Here are the details:
This is on a Windows system. Is there a free tool you recommend for this? Thank you.
Upvotes: 2
Views: 244
Reputation: 74899
ffmpeg is pretty much the defacto standard app for transcoding video.
Convert to h264/mp4:
ffmpeg.exe -i inputFile.rm -vcodec libx264 -s 320x240 -acodec libfaac outputFile.mp4
Upvotes: 2