I recorded an HDTV program OTA, saved as a .tp file.
Checked in Virtualdub using this script.
The file is Progressive with hard 3:2 pulldown (hard pulldown according to Dgindex)
MPEG2Source("56.d2v")
AssumeTFF()
SeparateFields()
Used the following in DVD Flick and burned ok.
#Channel 56 29.97fps 1920x1080i
LoadPlugin("C:\AviSynth 2.5\plugins\DGDecode.dll")
Video=Mpeg2Source("C:\56.d2v")
audio=NicAC3Source("C:\56 PID 034 2_0ch 192Kbps DELAY -190ms.ac3")
audiodub(video, audio)
DelayAudio(-0.190)
LanczosResize(720,416,26,0,1868,1080)
AddBorders(0,32,0,32)
Is there any advantage to removing the pulldown.
If I wish to remove the pulldown, where would I insert the lines.
Welcome any changes I can make to this script to make it more efficient?
+ Reply to Thread
Results 1 to 5 of 5
-
-
Hi-
The file is Progressive with hard 3:2 pulldown (hard pulldown according to Dgindex)
Is there any advantage to removing the pulldown.
If I wish to remove the pulldown, where would I insert the lines.
Video=Mpeg2Source("C:\56.d2v")
Video=Video.Telecide()
Video=Video.Decimate()
audio=NicAC3Source("C:\56 PID 034 2_0ch 192Kbps DELAY -190ms.ac3")
audiodub(video, audio)
and so on... -
Much obliged for your suggestions.
I will adjust the script accordingly and compare the two results.
Using the methods mentioned in this thread - except that the reference was to VOB.
http://forum.doom9.org/showthread.php?t=142986
I decided it was in fact progressive with hard pulldown. -
Follow up:
Tried both scripts on the same small clip and was surprised I could tell the difference on the TV.
Never noticed before.
Thanks again for coming through.
Same frame - pulldown and pulldown removed.
-
Hehe, the reason you saw interlacing on the TV set was because you resized the original interlaced capture without taking into account the fact that it was interlaced. Those have to be resized in a special way, a problem that doesn't occur when resizing a progressive stream, what you get after the IVTC.
Similar Threads
-
Stream Transport
By Soixante in forum ComputerReplies: 4Last Post: 4th Apr 2014, 05:05 -
Files Transport Stream, .ts and players DVD/BluRay... possible?
By vygger in forum DVD & Blu-ray PlayersReplies: 8Last Post: 15th Jan 2012, 13:45 -
Problem converting from MPEG Program Stream to Transport Stream
By vivajam in forum Newbie / General discussionsReplies: 5Last Post: 24th Jan 2011, 04:40 -
DVD to MPEG2 Transport Stream audio sync problem
By elba in forum Video Streaming DownloadingReplies: 12Last Post: 23rd Oct 2008, 02:09 -
need MPEG2 Transport stream and Program stream profiler
By afarun in forum ProgrammingReplies: 3Last Post: 23rd Aug 2007, 01:06