Alex
Alex

Reputation: 35781

How to transcode video formats

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

Answers (1)

Samuel Neff
Samuel Neff

Reputation: 74899

ffmpeg is pretty much the defacto standard app for transcoding video.

http://www.ffmpeg.org/

Convert to h264/mp4:

ffmpeg.exe -i inputFile.rm -vcodec libx264 -s 320x240 -acodec libfaac outputFile.mp4

Upvotes: 2

Related Questions