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.


Tags:

mencoder, linux, cli, editing, encode, xvid, multiple, partsmencoder, format, canon, reduced, manual, filename, avi, ovc, oac, mp, xvidencopts, fixed_quant, output, endpos, inputfile, outputfile, specifying, quot, ss, defaults, tricky, documented, portion, videon, unintuitive, ignoring, isn, doesn, hh, kb, mb, sb, byte, enabled, accurate, boundary, conjunction, specified, relative, adds, ultimately, stumps, finishes, essence,

Latest Articles

  • How high can a Xeon CPU get?
  • bash fix PATH environment variable "command not found" solution
  • Ubuntu Linux Mint Debian Redhat Youtube Cannot Play HD or 4K videos, dropped frames or high CPU usage with Nvidia or AMD Driver
  • hostapd example configuration for high speed AC on 5GHz using WPA2
  • hostapd how to enable and use WPS to connect wireless devices like printers
  • Dell Server Workstation iDRAC Dead after Firmware Update Solution R720, R320, R730
  • Cloned VM/Server/Computer in Linux won't boot and goes to initramfs busybox Solution
  • How To Add Windows 7 8 10 11 to GRUB Boot List Dual Booting
  • How to configure OpenDKIM on Linux with Postfix and setup bind zonefile
  • Debian Ubuntu 10/11/12 Linux how to get tftpd-hpa server setup tutorial
  • efibootmgr: option requires an argument -- 'd' efibootmgr version 15 grub-install.real: error: efibootmgr failed to register the boot entry: Operation not permitted.
  • Apache Error Won't start SSL Cert Issue Solution Unable to configure verify locations for client authentication SSL Library Error: 151441510 error:0906D066:PEM routines:PEM_read_bio:bad end line SSL Library Error: 185090057 error:0B084009:x509 certif
  • Linux Debian Mint Ubuntu Bridge br0 gets random IP
  • redis requirements
  • How to kill a docker swarm
  • docker swarm silly issues
  • isc-dhcp-server dhcpd how to get longer lease
  • nvidia cannot resume from sleep Comm: nvidia-sleep.sh Tainted: Linux Ubuntu Mint Debian
  • zfs and LUKS how to recover in Linux
  • [error] (28)No space left on device: Cannot create SSLMutex Apache Solution Linux CentOS Ubuntu Debian Mint