View Single Post
Old 5th March 2010, 21:22   #5  |  Link
Didée
Registered User
 
Join Date: Apr 2002
Location: Germany
Posts: 5,389
The sync issue of LOTR has been talked about so many times ...

For Fellowship, you need to trim off 13 of the black frames at the end of the 1st disk. (Seems there's one GOP without audio.) Trimming is usually done in the Avisynth script.

Code:
part1 = mpeg2source("disk1.d2v")
part2 = mpeg2source("disk2.d2v")

part1 = part1.trim( 0, framecount(part1)-14 )  ##  yes, "14" will remove the last 13 frames ... (a 1-frame clip has one frame, which has frame number zero)

part1 ++ part2
__________________
- We´re at the beginning of the end of mankind´s childhood -

My little flickr gallery. (Yes indeed, I do have hobbies other than digital video!)
Didée is offline   Reply With Quote