spyros78
15th August 2008, 15:07
Hi all,
I am trying to convert some M2T (MPEG2, Resolution 1440x1080, 16:9 @ 25.00fps) files to SD. I am then planning to copy the converted SD content on DigiBeta tape. The original video is interlaced and I want to retain interlacing.
I am currently using the below script:
LoadPlugin("C:\Program Files\DGIndex\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\yadifmod\YadifMod.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins\MPASource\MPASource.dll")
Video=MPEG2Source("D:\M2T\Video1.d2v")
Audio=MPASource("D:\M2T\Video1 DELAY -264ms.mp2")
Audio = Normalize(audio, 0.95)
AudioDub(video,audio)
converttoyuy2(interlaced=true)
Bicubicresize(720, Last.Height)
# Modified version of Yadif. Using edge-directed interpolation, checking previous, current and next frames to
# recreate missed field. Mode = 1: double framerate (bob), temporal and spatial interlacing check.
YadifMod(Mode = 1, EDeint = Bob(0, 1))
BicubicResize(Last.Width, 576)
SeparateFields()
SelectEvery(4, 0, 3)
Weave()
I noticed a strange artefact when panning which can mainly be seen on red objects. It looks something between interlacing, color-bleed and ghosting.
I also checked this thread as well: http://forum.doom9.org/showthread.php?t=139102 but my case is slightly different and I am not that advanced with AviSynth. I am suspecting the problem might be at converttoyuy2?
Could you please help me out? Please check a Screengrab though it does look a bit different with motion and in an interlaced monitor.
Thanks in advance.
I am trying to convert some M2T (MPEG2, Resolution 1440x1080, 16:9 @ 25.00fps) files to SD. I am then planning to copy the converted SD content on DigiBeta tape. The original video is interlaced and I want to retain interlacing.
I am currently using the below script:
LoadPlugin("C:\Program Files\DGIndex\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\yadifmod\YadifMod.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins\MPASource\MPASource.dll")
Video=MPEG2Source("D:\M2T\Video1.d2v")
Audio=MPASource("D:\M2T\Video1 DELAY -264ms.mp2")
Audio = Normalize(audio, 0.95)
AudioDub(video,audio)
converttoyuy2(interlaced=true)
Bicubicresize(720, Last.Height)
# Modified version of Yadif. Using edge-directed interpolation, checking previous, current and next frames to
# recreate missed field. Mode = 1: double framerate (bob), temporal and spatial interlacing check.
YadifMod(Mode = 1, EDeint = Bob(0, 1))
BicubicResize(Last.Width, 576)
SeparateFields()
SelectEvery(4, 0, 3)
Weave()
I noticed a strange artefact when panning which can mainly be seen on red objects. It looks something between interlacing, color-bleed and ghosting.
I also checked this thread as well: http://forum.doom9.org/showthread.php?t=139102 but my case is slightly different and I am not that advanced with AviSynth. I am suspecting the problem might be at converttoyuy2?
Could you please help me out? Please check a Screengrab though it does look a bit different with motion and in an interlaced monitor.
Thanks in advance.