PDA

View Full Version : AutoGK and Philips DVP642


esojmc
30th April 2004, 03:53
I just downloaded AutoGK 1.19 to try out xvid playback on my new DVP642. I converted a movie using all the standard setting and burned it to a cd. It plays back fine on the PC but on on this player the picture doesn't look right. It looks like the picture is embossed. Kind of looks psychedelic. Sound is fine.

Any ideas what might be happening? Is there some setting changes I can make in AutoGK that will help?

Great player (DVP642) and great program (AutoGK), BTW.

Thanks.


Attached is the avs script generated by autoGK:

LoadPlugin("C:\PROGRA~1\AutoGK\filters\mpeg2dec3dg.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\undot.dll")

function getOrder(clip c) {
order = GetParity(c) ? 1 : 0
return order }

movie = mpeg2source("C:\tmp\sphere\gk_tmp\xvid_sphere.d2v")
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=0,threshold=35)
c_width = width(cropclip)
c_height = round(height(cropclip) / 1.21518987341772)
input_par = float(c_width)/float(c_height)
fixed_aspect = input_par > 1.4 ? 1.21518987341772 : 1.18518518518519
c_height = round(height(cropclip) / fixed_aspect)
input_par = float(c_width)/float(c_height)
out_width = 576
out_height = round(float(out_width) / input_par)
hmod = out_height - (floor(out_height / 16 ) * 16)
out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=35)
Undot()
BicubicResize(out_width,out_height,0,0.5)

esojmc
30th April 2004, 14:05
Found the problem. I initially installed AutoGK without the ESS patch. Uninstalled/installed with the ESS patch and everything looks great.

Thanks