Menu

#4 Multifile encoding

open
None
3
2003-07-22
2003-05-04
No

Add the ability to rip to multiple AVI files. In
particular, provide the user with the ability to choose
the number of CDs s/he would like to put the movie on.

I like to do this with movies over 90 minutes long,
since a video bitrate under 750 tends to be overly
lossy (IMO) and is really noticeable when playing a
movie fullscreen.

I'd also like to suggest that the ideal range for
encoding video is somewhere between 650 and 1500.
Anything below 650 and you fall below the "VCR quality"
range.

Discussion

  • Tom Chance

    Tom Chance - 2003-05-05

    Logged In: YES
    user_id=175451

    Hmm, any idea of exactly how you do this? I'm sure there's a
    clever set of mencoder options to do it easily, since at the
    moment all I can think of is calculating the movie length in
    frames, dividing that by the number of CDs the user wants,
    then getting mencoder to do seperate rips for each chunk of
    frames.

    Or, ask for the video bitrate and work out how many CDs that
    will use, then do the same operation.

    Tricky.

     
  • Tom Chance

    Tom Chance - 2003-05-05
    • assigned_to: nobody --> telex4
     
  • Jason Huebel

    Jason Huebel - 2003-05-06

    Logged In: YES
    user_id=83484

    I noticed there is an option with mencoder to rip a certain
    number of seconds. But that seems to only rip from the
    beginning of the file. I'll look to see if I can find
    options that let you set the startpoint and duration.

     
  • Jason Huebel

    Jason Huebel - 2003-05-06

    Logged In: YES
    user_id=83484

    OK, given that we know the total running time for a title,
    you can use these options for ripping portions:

    -ss <start position in seconds>
    -endpos <end position in seconds>

    So, if a movie is 120 minutes long, these commands should
    work to cut the movie in two parts (add in all the other
    options too):

    # Chunk 1 (60 minutes long, specify end point)
    $ mencoder -endpos 3600 -o filename_part1of2.avi
    # Chunk 2 (60 minutes long, specify start point)
    $ mencoder -ss 3600 -o filename_part2of2.avi

    Now, doing three or more parts would be more complicated, of
    course. But those options used together should work. :-)

    BTW, the reason I don't specify an "-endpos" on the second
    chunk is just in case the movie is 120 minutes, 2 seconds long.

     
  • Jason Huebel

    Jason Huebel - 2003-05-07

    Logged In: YES
    user_id=83484

    I guess I should mention that I tried using the -ss option with
    only small success. It does some wierd things on my
    machine. That may just be my setup, or it may have
    something to do with seeking on a DVD.

    Let me know if you have more success than I did.

     
  • Tom Chance

    Tom Chance - 2003-07-22
    • priority: 5 --> 3
     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.