4

Is there anyway to convert .rm to .flv using terminal? Because .rm file is not running in Mplayer in my Ubuntu 12.04.

OS Detail:
Linux HP-CQ40 3.8.0-39-generic #58~precise1-Ubuntu SMP Fri May 2 21:33:17 UTC 2014
i686 i686 i386 GNU/Linux

2 Answers2

4

Easiest is with avconv (and no special options):

avconv -i samplevideo.rm samplevideo.flv

(in case someone suggests ffmpeg: Is FFmpeg missing from the official repositories in 14.04? )

Installation of avconv:

sudo apt-get install libav-tools

For all your GUI users (yeah you!):

enter image description here

Rinzwind
  • 309,379
0

You can use ffmpeg :

ffmpeg -i file.rm file.flv
nux
  • 39,152