leonid_makarovsky
16th November 2004, 06:37
Hello,
I have about 40 minutes of video AVI file (interlaced NTSC 29.976 - source is film).
I was trying to feed TMPGenc with different segments of that video. For that reason the code looked like:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb521.dll")
AVISource("IronMaiden-a.avi")
Telecide(order=1)
Decimate(cycle=5, mode=0)
Trim(490, 60362)
LanczosResize(352, 480)
Now I was thinking that I'm trimming the 23.976 fps AVI 'cause I put the trim statement after Telecide and Decimate. Wouldn't it be better to first trim the interlaced source and then feed it to TMPGenc? So that it would've been:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb521.dll")
AVISource("IronMaiden-a.avi")
Trim(different frame #, different frame #)
Telecide(order=1)
Decimate(cycle=5, mode=0)
Trim(490, 60362)
LanczosResize(352, 480)
Eventually all the segments will be joined when they are mpeg2 files.
--Leonid
I have about 40 minutes of video AVI file (interlaced NTSC 29.976 - source is film).
I was trying to feed TMPGenc with different segments of that video. For that reason the code looked like:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb521.dll")
AVISource("IronMaiden-a.avi")
Telecide(order=1)
Decimate(cycle=5, mode=0)
Trim(490, 60362)
LanczosResize(352, 480)
Now I was thinking that I'm trimming the 23.976 fps AVI 'cause I put the trim statement after Telecide and Decimate. Wouldn't it be better to first trim the interlaced source and then feed it to TMPGenc? So that it would've been:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb521.dll")
AVISource("IronMaiden-a.avi")
Trim(different frame #, different frame #)
Telecide(order=1)
Decimate(cycle=5, mode=0)
Trim(490, 60362)
LanczosResize(352, 480)
Eventually all the segments will be joined when they are mpeg2 files.
--Leonid