Log in

View Full Version : Ghosting and Blended frames


jse12
12th August 2014, 17:00
Hello,

I'm trying to encode some PAL DVD's to x264. The DVD's are 576i at 25fps, but the source content was NTSC-J at 23.976fps so when I do my encode I end up with blended frames and ghosting like this.

http://i.imgur.com/AtWDeXw.jpg

Here is my avs file

LoadPlugin("C:\StaxRip_1.1.8.0\Applications\AviSynth plugins\Decomb\Decomb.dll")
LoadPlugin("C:\StaxRip_1.1.8.0\Applications\AviSynth plugins\Decomb\Decomb.dll")
LoadPlugin("C:\StaxRip_1.1.8.0\Applications\DGMPGDec\DGDecode.dll")
LoadCPlugin("C:\StaxRip_1.1.8.0\Applications\AviSynth plugins\Yadif\yadif.dll")
MPEG2Source("T:\_CAPPING_\sample_source temp files\sample_source.d2v")
Crop(0,0, -Width % 8,-Height % 8)
ConvertToYV12()
Yadif()
Crop(2,2,-2,-2)
Lanczos4Resize(716,402)

Can anyone help me
Thanks in Advance

Sharc
12th August 2014, 18:21
Try

yadif(mode=1)
srestore()

or upload a short (2 seconds) sample of the video.

jse12
12th August 2014, 20:31
srestore()

Works great, thank you very much sharc