PDA

View Full Version : avs Resize line not working....


Spiderz
18th September 2003, 23:25
I am making a svcd of a 4:3 dvd. I know i need to resize it to 480x480 for it to work.
I added this line to my .avs file
BicubicResize(480,480,0.0,0.6)

but when i scan the output with Bitrate Viewer it still says 720x480... what am i doing wrong? and how cxan i fix this:confused:

mati
19th September 2003, 08:37
720x480 video resize it to 480x480 (NTSC SVCD), right? here's syntax for Bicubic resize..
BicubicResize(clip clip, int target_width, int target_height, float b, float c, float src_left, float src_top, float src_width, float src_height).. so in your case ->

BicubicResize(480, 480, 0, 0, 720, 480) or just BicubicResize(480, 480)

tiki4
19th September 2003, 09:46
@mati:

This shouln't be necessary, the BicubicResize of Spiderz should work as it is, but:

@Spiderz:

You don't accidently use TMPGEnc? Check that you set the resolution in the encoding settings to 480x480 and also to NTSC video. Better even, use the NTSC SVCD template that comes with TMPGEnc.

I hope that helped.

tiki4

Spiderz
19th September 2003, 10:41
thanks both of you! the advice helped a bunch i got it working now :)