Log in

View Full Version : orange picture just on DVD player, not on PC


sh03z
26th April 2004, 03:04
Hey,

I just encoded a movie twice, and
it looks orange on my home DVD player (pioneer)
but on my PC everything is fine.

is there a problem with the DVD-R, the DVD player, or my PC software?


Thanks very much,

-Mike

RB
26th April 2004, 08:49
Please provide more information. What version of CCE did you use, what does your AVISynth script look like? Can you post a screenshot (you can attach the picture to your reply)?

sh03z
26th April 2004, 17:21
Ok, more information...

I can't post a screen shot, because it's only orange on my TV

this is my avs:

LoadPlugin("C:\PROGRA~1\GORDIA~1\decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\KernelDeInt.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\dgbob.dll")
LoadPlugin("C:\$$$$avs\convolution3d.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\FluxSmooth.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\TomsMoComp.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\VSFilter.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\SimpleResize.dll")
LoadPlugin("C:\$decodefix$\MPEG2Dec3dg.dll")
mpeg2source("D:\xxxx.d2v")
ConvertToYUY2()
crop(4,0,712,480)
BicubicResize(720,480)
Telecide(order=1,guide=1).Decimate()
Temporalsoften(3,5,5,mode=2,scenechange=10)
Convolution3d (preset="movieHQ")


I was using CCE version 2.67 with Andreas SVCD matrix.

I'm beginning to think the matrices I've been using aren't DVD compliant =(

RB
26th April 2004, 18:56
Make a simple test to rule out matrices/filters. Use CCE standard matrix and a minimal script like
LoadPlugin("C:\$decodefix$\MPEG2Dec3dg.dll")
mpeg2source("D:\xxxx.d2v")
ConvertToYUY2(interlaced=true)

sh03z
26th April 2004, 19:16
Ok, thanks RB

I will next time.