rack04
12th July 2010, 19:13
I have a video file that has sections of pure interlaced video and 3:2 pulled-down progressive video. Is there a way to treat these sections differently? For example:
Frames 0-353 are pure interlaced video
I can apply the following script for this section:
LoadPlugin("C:\Program Files\DGDecNV\DGMultiDecodeNV.dll")
DGMultiSource("C:\Personal\Videos\300.dgi", deinterlace=1)
Frames 354-590 are 3:2 pulled-down progressive video
I can apply the following script for this section:
LoadPlugin("C:\Program Files\DGDecNV\DGMultiDecodeNV.dll")
LoadPlugin("C:\Program Files\TIVTC\TIVTC.dll")
DGMultiSource("C:\Personal\Videos\300.dgi")
tfm(order=1).tdecimate()
Frames 0-353 are pure interlaced video
I can apply the following script for this section:
LoadPlugin("C:\Program Files\DGDecNV\DGMultiDecodeNV.dll")
DGMultiSource("C:\Personal\Videos\300.dgi", deinterlace=1)
Frames 354-590 are 3:2 pulled-down progressive video
I can apply the following script for this section:
LoadPlugin("C:\Program Files\DGDecNV\DGMultiDecodeNV.dll")
LoadPlugin("C:\Program Files\TIVTC\TIVTC.dll")
DGMultiSource("C:\Personal\Videos\300.dgi")
tfm(order=1).tdecimate()