raisinberry777
3rd September 2009, 22:51
Here's a slight mouthful!
Basically, my source is a 1440*1080i MPEG2 DVB-T PAL video recorded from my PVR. The source is clearly upscaled, so I'm trying to downscale it again to MPEG2.
I'm a newbie when it comes to Avisynth, so I don't really know a whole lot about what I'm doing and admittedly I'm just trying to go with whatever I can find on the internet.
Theoretically it should look pretty much eactly the same, right? I've encoded it back to SD using RipBot264 and it looks fine, but feed the same script into CCE (since I want to convert to MPEG2) and the output looks terrible compared to the original source, and bitrate starvation isn't a problem with my conversions (multipass VBR, 5000 kbps avg).
Source is here:
http://www.mediafire.com/download.php?hnmyknyywgh
Here are some of the Avisynth scripts I have tried so far:
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\SmoothDeinterlacer.dll")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\ColorMatrix.dll")
LoadPlugin("D:\Documents and Settings\xxxx\My Documents\Downloads\RipBot264v1.14.2\Tools\dgindex\DGDecode.dll")
MPEG2Source("C:\Recordings\job1.d2v")
ColorMatrix()
SmoothDeinterlace(lacethresh=10, tff=true, doublerate=true)
Spline36Resize(720,576).Sharpen(0.2)
Trim(1,0)
SeparateFields
SelectEvery(4,0,3)
Weave
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\SmoothDeinterlacer.dll")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\ColorMatrix.dll")
LoadPlugin("D:\Documents and Settings\xxxx\My Documents\Downloads\RipBot264v1.14.2\Tools\dgindex\DGDecode.dll")
MPEG2Source("C:\Recordings\job1.d2v")
ColorMatrix()
SmoothDeinterlace(lacethresh=10, tff=true, doublerate=true)
MSharpen()
LanczosResize(720,576)
Trim(1,0)
SeparateFields
SelectEvery(4,0,3)
Weave
LoadPlugin("D:\Documents and Settings\xxxx\My Documents\Downloads\RipBot264v1.14.2\Tools\dgindex\DGDecode.dll")
MPEG2Source("C:\Recordings\job1.d2v")
AssumeTFF
Separatefields
MSharpen()
LanczosResize(720,288)
Weave
ConverttoYUY2(interlaced=true)
Does anyone have suggestions to offer?
Basically, my source is a 1440*1080i MPEG2 DVB-T PAL video recorded from my PVR. The source is clearly upscaled, so I'm trying to downscale it again to MPEG2.
I'm a newbie when it comes to Avisynth, so I don't really know a whole lot about what I'm doing and admittedly I'm just trying to go with whatever I can find on the internet.
Theoretically it should look pretty much eactly the same, right? I've encoded it back to SD using RipBot264 and it looks fine, but feed the same script into CCE (since I want to convert to MPEG2) and the output looks terrible compared to the original source, and bitrate starvation isn't a problem with my conversions (multipass VBR, 5000 kbps avg).
Source is here:
http://www.mediafire.com/download.php?hnmyknyywgh
Here are some of the Avisynth scripts I have tried so far:
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\SmoothDeinterlacer.dll")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\ColorMatrix.dll")
LoadPlugin("D:\Documents and Settings\xxxx\My Documents\Downloads\RipBot264v1.14.2\Tools\dgindex\DGDecode.dll")
MPEG2Source("C:\Recordings\job1.d2v")
ColorMatrix()
SmoothDeinterlace(lacethresh=10, tff=true, doublerate=true)
Spline36Resize(720,576).Sharpen(0.2)
Trim(1,0)
SeparateFields
SelectEvery(4,0,3)
Weave
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\SmoothDeinterlacer.dll")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\ColorMatrix.dll")
LoadPlugin("D:\Documents and Settings\xxxx\My Documents\Downloads\RipBot264v1.14.2\Tools\dgindex\DGDecode.dll")
MPEG2Source("C:\Recordings\job1.d2v")
ColorMatrix()
SmoothDeinterlace(lacethresh=10, tff=true, doublerate=true)
MSharpen()
LanczosResize(720,576)
Trim(1,0)
SeparateFields
SelectEvery(4,0,3)
Weave
LoadPlugin("D:\Documents and Settings\xxxx\My Documents\Downloads\RipBot264v1.14.2\Tools\dgindex\DGDecode.dll")
MPEG2Source("C:\Recordings\job1.d2v")
AssumeTFF
Separatefields
MSharpen()
LanczosResize(720,288)
Weave
ConverttoYUY2(interlaced=true)
Does anyone have suggestions to offer?