Log in

View Full Version : Frame size is not supported??


storebror
19th July 2004, 01:09
Hi. got this weird .avs-script errormessage when trying to encode in CCE 2,50.
"Frame size 712x584 is not supported. Supported Frame size is up to 720x576"

I'm able to play the .avs-script in my Win MediaPlayer without any syntaxerrors.
Any hints?

My avs-script:

---------------------------------------------------------------------------------
#Import("D:\\VirtualDub\plugins\vdub_filters.avs")
AVISource("D:\movies\The Jackal\The Jackal.avi")
LoadPlugin("D:\Program\AviSynth 2.5\plugins\mpeg2Dec3.dll")
#LoadPlugin("D:\Program\AviSynth 2.5\plugins\VSFilter.dll")
ConvertToYUY2()
#TextSub("D:\Movies\The Jackal\The_Jackal.ssa")
AssumeFPS(25.0, sync_audio=True)
BicubicResize(688,352,0,0.6,0,0,720,368)
AddBorders(12,116,12,116)
#Trim(0,179119).FadeOut(150)
AddAudio()
resampleAudio(41000)
#SSRC(48000)
-----------------------------------------------------------------------------------------

Lagoon
19th July 2004, 05:16
CCE doesn't support 584 vertical resolution, only 576.

Also your 712x584 resolution isnt good for any dvd project.

Should be 720/704 x 480/576.

Your Addborders line should be :

AddBorders(16,112,16,112)

or

AddBorders(8,112,8,112)

storebror
19th July 2004, 12:35
Hi. Yes ,that's the problem. Why does CCE keep arguing about a resolution that doesn't exist?:confused: At least not in my script. I know that this error occurs if there's a syntaxerror or similar in the avs-script, then CCE complains about the resolution the script itself is getting when it's displayed in eg. Win MediaPlayer, buggy ah?:D
And about the resolutions in my script: This was taken from FITCD when loading my movie into that program. It's suppose to be quite accurate as far as i know.. or?

Lagoon
19th July 2004, 14:31
The only buggy program is fitcd here, as it didnt calculate correctly.
Your avs script IS 712x584, this IS NOT dvd compliant, and CCE won't encode 584 vertical pixels.

BicubicResize(688,352,0,0.6,0,0,720,368)
AddBorders(12,116,12,116)

688+12+12=712
352+116+116=584

storebror
19th July 2004, 15:02
Hehe..ok,:p I've just encoded in CCE with my script that look like this: (don't know if it will look good on/in my TV/DVD player though..lol)
-------------------------------------------------------------------
#Import("D:\unzipped\abit.appz\unzipped\appz\filmprogs\rippers\ripPack\VirtualDub\plugins\vdub_filters.avs")
AVISource("D:\movies\The Jackal\The Jackal.avi")
LoadPlugin("D:\Program\AviSynth 2.5\plugins\mpeg2Dec3.dll")
LoadPlugin("D:\Program\AviSynth 2.5\plugins\VSFilter.dll")
TextSub("D:\Movies\The Jackal\The_Jackal.ssa")
AVISource("D:\movies\The Jackal\The Jackal.avi")
ConvertToYUY2()
BicubicResize(672,544,0,0.6,0,2,720,364)
AddBorders(24,16,24,16)
#Trim(0,179119).FadeOut(150)
AddAudio()
resampleAudio(41000)
#SSRC(48000)
--------------------------------------------------------------------