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 to install gns3 on Linux Ubuntu Mint
  • How to convert audio for Asterisk .wav format
  • Using Cisco CME Router with Asterisk as a dial-peer
  • Cisco CME How To Configure SIP Trunk VOIP
  • Virtualbox host Only Network Error Failed to save host network interface parameter - Cannot change gateway IP of host only network
  • Cisco CME and C7200 Router Testing and Learning Environment on Ubuntu 20+ Setup Tutorial Guide
  • Abusive IP ranges blacklist
  • How to Install Any OS on a Physical Drive from Windows Using VMware Workstation (Linux, Windows, BSD)
  • CDN Cloudflare how to set and preserve the real IP of the client without modifying application code on Apache
  • CentOS 7 fix Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=container error was 14: curl#6 -
  • Ubuntu Debian How To Install Recommended Packages Automatically
  • How to set Linux Ubuntu Redhat Debian Command Line http https socks proxy for yum apt
  • How to resize a pdf without losing much quality in Linux Mint Ubuntu Debian Redhat Solution
  • qemu: could not load PC BIOS 'bios-256k.bin' solution
  • Proxmox How To Custom Partition During Install
  • Hyper-V Linux VM Boots to Black Screen, Storage, NIC Not Found Issues
  • Ubuntu Mint How to Fix Missing/Broken /dev and /dev/pts which causes terminal to immediately close exit and not work
  • 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