PDA

View Full Version : CCE Error


jrmann1999
10th April 2003, 17:58
I'm trying to transcode an mpeg2 source in CCE 2.66(and 2.50 tested) and when loading the avisynth I get the following error:

Frame rate 5994/125 is not supported. Supported frame rate are 23.976, 24, 25, 29.97, 30, 50, 59.94 and 60.

The source material is 29.97fps interlaced that I use the following avisynth script to decimate down to 23.976(explanations for why I use something are inline with the code).

mpeg2source("test.d2v") // Mpeg2dec3 v1.0.1
SeparateFields() // Take the 29.97i and make it 59.94p
SelectOdd() // Take the 59.94p to 29.97p
Decimate(cycle=5) // Take 29.97p down to 23.976p
Trim() ... // Cut unwanted sections off
Crop() ... // Crop
BicubicResize(720,400,0,0.75)
AddBorders(0,40,0,40)
ConvertToYUY2() // Source is YV12.
ResampleAudio(44100) // CCE 2.50 bugfix.

auenf
11th April 2003, 15:12
open it in vdub and check what you get, cause im not sure if decimate works properly with half height.

Enf...

jrmann1999
11th April 2003, 21:42
IT works fine in vdub.