using mencoder to join avi files


/ Published in: Bash
Save to your folder(s)

simple way to join avi files on the command line (need to have mplayer installed)


Copy this code and paste it in your HTML
  1. # oac - means copy audio codec from original file
  2. # ovc - means copy video codec
  3. # o - means output to file with _name_ (joined.avi)
  4. mencoder -oac copy -ovc copy -o "joined.avi" "1.avi" "2.avi"

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.