Log in

View Full Version : Problem when converting .ts to divx


DIggedy
5th May 2005, 00:31
I'm using the following script to convert a HD 1920x1088 29.97 .ts file down to a 1280x544 (cropped for 2.35:1) divx file:

----------------------------------------------------------
# LOAD PLUGINS
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb521.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\UnDot.dll")

# SOURCE
mpeg2source("C:\Disc3.d2v")

# DECIMATE
Telecide(order=1)
Decimate(cycle=5)

# RESIZE
LanczosResize(1280,544)
----------------------------------------------------------

Note that the crop was done in DGIndex when creating the .d2v file.

The problem is that the output looks great, except for a strange colour abberation that occurs every 4th frame or so (see attached example), like one of the colour channels has a slight delay. Has anyone experienced this before?

DIggedy
5th May 2005, 00:35
Here's the example, for some reason it wouldn't display on my original post.

EDIT: Why won't the image I'm attaching display? It says it's attached when I edit the post but doesn't appear in the thread? :confused: It's only a 28kb jpg...

Backwoods
5th May 2005, 01:24
Mods have to approve it. You can upload it at www.imageshack.ws or www.uploadhouse.com and use IMG tags to show your sample.

DIggedy
5th May 2005, 01:55
ok I figured the problem out. It was simply a matter of adding ConvertToYUY2() to the script.