LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
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


Reply
  Search this Thread
Old 07-10-2005, 08:16 PM   #1
heema
Senior Member
 
Registered: Sep 2003
Location: Egypt
Distribution: Arch
Posts: 1,528

Rep: Reputation: 47
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

 
Old 07-24-2005, 06:18 AM   #2
heema
Senior Member
 
Registered: Sep 2003
Location: Egypt
Distribution: Arch
Posts: 1,528

Original Poster
Rep: Reputation: 47
BUMP
 
Old 10-26-2005, 07:55 PM   #3
mndar
Member
 
Registered: Feb 2005
Posts: 34

Rep: Reputation: 16
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.
Old 01-12-2007, 06:54 AM   #4
flebber
Member
 
Registered: Jan 2005
Location: Newcastle, Australia
Distribution: debian stable
Posts: 394

Rep: Reputation: 30
So is this still the only option to convert rmvb files
 
Old 01-12-2007, 11:19 AM   #5
dive
Senior Member
 
Registered: Aug 2003
Location: UK
Distribution: Slackware
Posts: 3,467

Rep: Reputation: Disabled
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.
 
Old 01-12-2007, 05:41 PM   #6
flebber
Member
 
Registered: Jan 2005
Location: Newcastle, Australia
Distribution: debian stable
Posts: 394

Rep: Reputation: 30
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 ~]$
 
Old 01-12-2007, 06:04 PM   #7
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 current
Posts: 1,649

Rep: Reputation: 148Reputation: 148
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
 
Old 01-12-2007, 06:45 PM   #8
flebber
Member
 
Registered: Jan 2005
Location: Newcastle, Australia
Distribution: debian stable
Posts: 394

Rep: Reputation: 30
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.
 
Old 01-13-2007, 03:43 AM   #9
dive
Senior Member
 
Registered: Aug 2003
Location: UK
Distribution: Slackware
Posts: 3,467

Rep: Reputation: Disabled
Try a different encoder with -ovc.
man mencoder for some ideas.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
What software can turn .avi to .rmvb ? naihe2010 Linux - Software 1 12-01-2005 04:54 PM
how to convert rm/rmvb to VCD? macarthor Linux - Software 3 10-26-2005 08:05 PM
Program which can convert RMVB to MPEG or AVI AoiSora Linux - Software 1 08-29-2005 09:59 PM
how to play .rmvb, .avi, .wmv, .mp3 file shawn82 Linux - General 2 07-05-2005 09:51 AM
RMVB to AVI Converters vanquisher Linux - Software 0 11-05-2004 12:21 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 04:23 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration