Log in

View Full Version : RMVB don't support resolution greater than 720x480 ?


adrianmak
18th June 2007, 13:33
my avs file

# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\KernelDeInt.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgbob.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\Convolution3d.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\FluxSmooth.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\TomsMoComp.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\VSFilter.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\SimpleResize.dll")

# SOURCE
video=mpeg2source("C:\[DVDISO]GouGou Sentai Movie\movie.d2v")
audio=DirectShowSource("movie T02 3_2ch 448Kbps DELAY 0ms.ac3")

# CROPPING
video.crop(2,0,716,476).LanczosResize(800,432)
return video



I scaled up the video to 800x432 and I use easy realmedia producer 1.9.4 ouput to rmvb. However the rmvb is 720x480
but not my scale up resolution 800x432

Leak
18th June 2007, 14:18
my avs file

[...]
# CROPPING
video.crop(2,0,716,476).LanczosResize(800,432)
return video

Either lose the "return video" at the end, or change the line above it to "video=video.crop(2,0,716,476).LanczosResize(800,432)".

The way it is now, you're cropping and resizing the video, then throwing away those changes and returning the original video.

Sirber
18th June 2007, 16:35
audio= does nothing? no return?
Also using DirectShowSource on AC3...

killerhex
18th June 2007, 16:37
and rmvb supports all kinds of resolutions its just your script