mencoder Linux CLI video editing how to encode video file into xvid and split by time into multiple parts

Mencoder is great, you can throw anything at it, including video files from your camera and have it encode into xvid or almost any other format.

In my case I took 640x480 video from my Canon and reduced the size by 1/3 with the options below (there are many other options that you can read about in the manual but I like to keep it simple). 

Mencoder Encode

mencoder <filename.avi> -ovc xvid -oac mp3lame -xvidencopts fixed_quant=4 -o <output.avi>

Mencoder Split

Split the first 9 minutes of video into a part

mencoder -endpos 00:09:00 -ovc copy -oac copy inputfile.xvid -o outputfile.xvid

*We're kind of cheating because without specifying "-ss" (the start position) it defaults to starting at the beginning which would be the same as "-ss 00:00:00"

Note that we don't need the -ss (start time) flag because we are taking the first 9 minutes of the video.  It gets a little tricky (and this is not well documented or known by some) when you want to take a portion of videon in the middle (meaning not the first x minutes and not the last x minutes).

Split 9 minutes of video starting from the 9 minute point

This is where I consider mencoder to be unintuitive, here is the code I was using and lots would ask "why is mencoder ignoring the endpos"?  It actually isn't, what you thought you were telling mencoder is different than what is actually happening.

Take this code for example:

mencoder -ss 00:09:00 -endpos 00:18:00 -ovc copy -oac copy inputfile.xvid -o outputfile.xvid

At first I assumed this means "start at 9 minutes" and "end at 18 minutes".  Actually it means "start at 9 minutes" and "end at 27 minutes".  In other words "endpos" doesn't work as I believe it should and here's why from the mencoder manual:

  -endpos <[[hh:]mm:]ss[.ms]|size[b|kb|mb]> (also see -ss and -sb)
              Stop at given time or byte position.
              NOTE: Byte position is enabled only for MEncoder and will not be accurate, as it  can  only  stop  at  a
              frame  boundary.   When  used in conjunction with -ss option, -endpos time will shift forward by seconds
              specified with -ss.

So what the manual means is that endpos is relative to ss.  That means if you say you "start at 5 minutes" and "end at 9 minutes", you're actually saying 5 minutes + 9 minutes = end at 14 minutes.   So you can see that mencoder isn't ignoring you, it just takes the start position and adds the end position value and that is what ultimately becomes the endpos.  I don't agree with that, mencoder is a great tool but I think this stumps a lot of people because it doesn't make sense.

Split 9 minutes of video from the end

mencoder -ss 00:18:00 -ovc copy -oac copy inputfile.xvid -o outputfile.xvid

*This is cheating again by just specifying the start, it will take everything from the start point until the video finishes.

In essence you're specifying "-endpos 00:27:00" assuming the movie ends at 27 minutes, but you get the idea.

Latest Articles

  • failed to IDENTIFY (INIT_DEV_PARAMS failed, err_mask=0x80)
  • pcnet32: eth0: transmit timed out, status 97fb, resetting - NIC card problem solution
  • Linux Screen How To Scroll Up and Down
  • Directadmin Install Segfault Error
  • Could not display "trash:///". Error: DBus error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout
  • SSH error slow login debug1: An invalid name was supplied Cannot determine realm for numeric host address - Solution
  • How To Install CPanel
  • LOG: MAIN PANIC failed to expand condition "${if eq {$authenticated_id}{}{0}{${if eq {$sender_address}{$local_part@$domain}{0}{${if match{$received_protocol}{N^e?smtps?a$N}{${perl{checkbx_autowhitelist}{$authenticated_id}}}{${if eq{$received_prot
  • Firefox 11 closes/quits without saving Open Tabs Prompt Solution/Fix
  • Firefox 11 stop hiding http:// and https:// solution fix
  • The Importance of a High Quality Power Supply/Power Supplies To Prevent Overheating/System Crash/Hardware Damage
  • Asus VE247H 23.7" Inch LCD/LED Backlit Monitor Dead/Stuck Pixel Policy Complaint
  • Firefox Error ./firefox-bin: error while loading shared libraries: libxul.so: cannot open shared object file: No such file or directory
  • Linux Ubuntu Nvidia GT430 Lockups/Errors/Freezes NVRM: os_schedule: Attempted to yield the CPU while in atomic or interrupt context
  • Xen how to mount disk images off-line and access data
  • Xen non-HVM container won't work/boot anymore
  • how to exit xen console session from xm
  • Skype Linux/Ubuntu Sound Echo/Distortion Poor Quality Problem Fix Solution
  • Ubuntu 10.04 Flash Videos have tearing/lines Solution
  • File /etc/vz/conf/ve-vps.basic.conf-sample not found: No such file or directory - Openvz Error solution