Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
07-10-2005, 08:16 PM
|
#1
|
Senior Member
Registered: Sep 2003
Location: Egypt
Distribution: Arch
Posts: 1,528
Rep:
|
Convert RMVB movie to AVI
how can i convert a rmvb movie to avi ?
i tried searching for it but it seams thats its a rare question with no answer that i have found

|
|
|
07-24-2005, 06:18 AM
|
#2
|
Senior Member
Registered: Sep 2003
Location: Egypt
Distribution: Arch
Posts: 1,528
Original Poster
Rep:
|
BUMP
|
|
|
10-26-2005, 07:55 PM
|
#3
|
Member
Registered: Feb 2005
Posts: 34
Rep:
|
mencoder can do it
This command works
mencoder foo.rmvb -o foo.avi -ovc xvid -xvidencopts fixed_quant=5 -oac mp3lame -lameopts abr:br=128
or
mencoder Smallville\ 422\ Commencement\ hdtv.rmvb -o /disks/402/smallville402.avi -ovc xvid -xvidencopts fixed_quant=5 -oac mp3lame -lameopts vbr=3
But somehow the size is more than that of the rmvb file. Also there is some loss. I still have to try different options. I would really like to just view rmvb files. Do you know any player that can do so. I have tried Realplayer which plays the video well but the audio is not good. You can't make out what the person is saying.
Mplayer and xine play the audio well but the video is b&w and with some coloured lines. an older version of xine-lib does play them but with it my processsor usage jumps to 70% while playing divx files
|
|
1 members found this post helpful.
|
01-12-2007, 06:54 AM
|
#4
|
Member
Registered: Jan 2005
Location: Newcastle, Australia
Distribution: debian stable
Posts: 394
Rep:
|
So is this still the only option to convert rmvb files
|
|
|
01-12-2007, 11:19 AM
|
#5
|
Senior Member
Registered: Aug 2003
Location: UK
Distribution: Slackware
Posts: 3,467
Rep: 
|
I've done 'mencoder foo.rmvb -o foo.avi -ovc divx4 -oac pcm' in the past, which worked fine.
If mencoder works at reencoding I would expect mplayer to play too.
Last edited by dive; 01-12-2007 at 11:20 AM.
|
|
|
01-12-2007, 05:41 PM
|
#6
|
Member
Registered: Jan 2005
Location: Newcastle, Australia
Distribution: debian stable
Posts: 394
Rep:
|
I get this error tho
[flebber@localhost ~]$ mencoder /home/Torrent/Blood Diamond/Blood Diamond.rmbus.rmvb -o blood.avi -ovc divx4 -oac pcm
MEncoder 1.0rc1-4.1.1 (C) 2000-2006 MPlayer Team
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz (Family: 15, Model: 2, Stepping: 9)
CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
Option ovc: Unknown suboption divx4
Error parsing option on the command line: -ovc
Exiting... (error parsing command line)
[flebber@localhost ~]$
|
|
|
01-12-2007, 06:04 PM
|
#7
|
Senior Member
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 current
Posts: 1,649
Rep: 
|
Quote:
Originally Posted by flebber
I get this error tho
[flebber@localhost ~]$ mencoder /home/Torrent/Blood Diamond/Blood Diamond.rmbus.rmvb -o blood.avi -ovc divx4 -oac pcm
MEncoder 1.0rc1-4.1.1 (C) 2000-2006 MPlayer Team
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz (Family: 15, Model: 2, Stepping: 9)
CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
Option ovc: Unknown suboption divx4
Error parsing option on the command line: -ovc
Exiting... (error parsing command line)
[flebber@localhost ~]$
|
Try quoting the file name in "" or escaping the spaces:
a: "/home/Torrent/Blood Diamond/Blood Diamond.rmbus.rmvb"
b: /home/Torrent/Blood\ Diamond/Blood\ Diamond.rmbus.rmvb
|
|
|
01-12-2007, 06:45 PM
|
#8
|
Member
Registered: Jan 2005
Location: Newcastle, Australia
Distribution: debian stable
Posts: 394
Rep:
|
Quote:
[flebber@localhost ~]$ mencoder /home/Torrent/Blood Diamond/Blood Diamond.rmbus.rmvb -o blood.avi -ovc divx4 -oac pcm
MEncoder 1.0rc1-4.1.1 (C) 2000-2006 MPlayer Team
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz (Family: 15, Model: 2, Stepping: 9)
CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
Option ovc: Unknown suboption divx4
Error parsing option on the command line: -ovc
Exiting... (error parsing command line)
[flebber@localhost ~]$ mencoder /home/Torrent/Blood\ Diamond/Blood\ Diamond.rmbus.rmvb -o blood.avi -ovc divx4 -oac pcm
MEncoder 1.0rc1-4.1.1 (C) 2000-2006 MPlayer Team
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz (Family: 15, Model: 2, Stepping: 9)
CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
Option ovc: Unknown suboption divx4
Error parsing option on the command line: -ovc
Exiting... (error parsing command line)
[flebber@localhost ~]$ mencoder "/home/Torrent/Blood Diamond/Blood Diamond.rmbus.rmvb" -o blood.avi -ovc divx4 -oac pcm
MEncoder 1.0rc1-4.1.1 (C) 2000-2006 MPlayer Team
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz (Family: 15, Model: 2, Stepping: 9)
CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
Option ovc: Unknown suboption divx4
Error parsing option on the command line: -ovc
Exiting... (error parsing command line)
|
Same error unfortuneately -ovc suboption for divx.
but I have the rpm installe
divx4linux.i386 5.0.5-0.fc6.rf installed
Last edited by flebber; 01-12-2007 at 06:51 PM.
|
|
|
01-13-2007, 03:43 AM
|
#9
|
Senior Member
Registered: Aug 2003
Location: UK
Distribution: Slackware
Posts: 3,467
Rep: 
|
Try a different encoder with -ovc.
man mencoder for some ideas.
|
|
|
All times are GMT -5. The time now is 04:23 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|