PDA

View Full Version : CCE/avs resolution problem


Kb_cruncher
2nd July 2002, 20:27
hi
i am trying to use cce to encode svcd's.my problem is that when i play back any encode i have done with cce the picture stays small when i go to full screen in any player,ie. the picture stays the same size and black borders are added on all four sides to make up the rest of the screen.
I'm no newby when it comes to avs scripts but am new to the svcd sceen(i'm an ogm man).i have tryed these scripts with no change:



LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
mpeg2source("D:\Atlantis_the lost empire\test.d2v")
crop(0,0,720,576)
BicubicResize(480,432,0,0.5)
AddBorders(0,72,0,72)
ResampleAudio(44100)

LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
mpeg2source("D:\Atlantis_the lost empire\test.d2v")
BicubicResize(480,432,0,0.5)
AddBorders(0,72,0,72)
ResampleAudio(44100)

LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
mpeg2source("D:\Atlantis_the lost empire\test.d2v")
BicubicResize(480,576)
ResampleAudio(44100)

LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
mpeg2source("D:\Atlantis_the lost empire\test.d2v")
ResampleAudio(44100)
#this one i used with half horizontal res in cce(for cvd output)

i get the same result with all these scripts(the picture is fine when i first open it but the picture stays the same size when going full screen.
does anyone know what/if i am doing anything wrong.i have followed dooms svcd guide(the cce part)to the letter and have set up cce to conform to the info bitrate viewer gives me as per this guide too.

this proiblem is driving me nuts.

thanks in advance

Kb_cruncher

buffy
3rd July 2002, 11:34
The only thing i can think of at the moment is that maybe u have set the wrong aspect ratio. So make sure that u have set the aspect ratio to 4:3 and not 16:9 in the video settings in cce

good luck :)
/buffy

alturismo
3rd July 2002, 16:52
these are my svcd settings wich i used before dvdr
and worked always fine with me.
setted always the aspect ratio in cce to 4:3

LoadPlugin("C:\windows\system32\simpleresize.dll")
LoadPlugin("C:\windows\system32\mpeg2dec.dll")
mpeg2source("D:\test\test.d2v")
ResampleAudio(44100)
SimpleResize(480,432)
AddBorders(0,72,0,72)

instead of simple resize you can take also bicubic or whatever,
makes no difference in result of picsize

should make an diff in quality as sad, i tested simple resize
and bicubic and cant see any difference, so i always took simple
cause it was about 20 % faster for me, as i said before changing
to dvdr.

may that works for you also ;)