Advertisement
Guest User

Untitled

a guest
Sep 13th, 2012
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. NOTE: Almost all LOL samples (for TV) start at approx 5 mins - this could be 592 - 605 range, if the first doesn't work, back it up, or move it forward). Even though the rebuilt srs sample isn't correct (and will be artifacty), you will be able to determine where in the original it starts. In almost all I have seen, length is 60 seconds.
  2.  
  3. Basic format is
  4.  
  5. Split a large video into small videos
  6. note the mb suffix in the -endpos switch:
  7. mencoder -ovc copy -oac copy -ss 0 -endpos 700mb -o movie_part1.avi movie.avi
  8.  
  9. But will use time, so format is
  10. mencoder -ovc copy -oac copy -ss 0 -endpos {nsecs} -o OUTPUT.avi SOURCE.AVI
  11.  
  12. Note, output file is first, source file is 2nd
  13.  
  14. I needed a good 61 seconds sample, so Cmd was:
  15. mencoder -ovc copy -oac copy -ss 0 -endpos 61 -o z.avi fringe.s0205.hdtv.xvid-2hd.avi
  16.  
  17.  
  18. Another example:
  19. mencoder -ovc copy -oac copy -ss 301 -endpos 60 -o z.avi CSI.Miami.S08E18.HDTV.XviD-LOL.avi
  20.  
  21. This makes a 60 second sample starting at 301 seconds (5.01)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement