digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   Getting GOP Error from TMPGE DVD Author after CCE Encode? (http://www.digitalfaq.com/archives/encode/6564-gop-error-tmpge.html)

surferr 11-06-2003 08:34 PM

Getting GOP Error from TMPGE DVD Author after CCE Encode?
 
I'm trying to put 3 movies on one DVD-R using CCE and KDVD templates, but I'm getting an error from TMPGE DVD Author. After encoding I got a frame rate error, so I had to use pulldown to resolve that. However, after doing that I get the following error when loading into TMPGE DVD Author:

"The video GOP is too long.
For a standard DVD it is necessary that the GOP fulfill the following conditions:

Max 36 fields {18 frames) {NTSC format only}
Max 30 fields {15 frames) {PAL format only}"


Here is my script:
=============================================

################################################## ################
# Using Kwag?s Motion Adaptive Filtering to get more compression #
################################################## ################
##############
# Parameters #
##############
myanamorphic=true # change to false if on step 6 you had 4:3 instead of 16:9
#Use 720 or 352 to KDVD, 528 352 to K(S)VCD
#subtitle="VTS_01_0.sub" # Add a# in the beginning of this line if you don't need #subtitles or change for the name of the sub file created on step 7. movie="name_of_the_project_DVD2AVI.d2v"
myoverscan=1 # Test values from 0 to 3 here. Bigger files produce more quality but
#a value too big will cause undesirable black borders on your TV.
MaxTreshold = 1.50
nf = 0 # Current frame.

################
## Functions ###
################

function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}

##########
# Script #
##########
MPEG2Source ("F:\DVD_Rips\The Sting\The Sting.d2v")

#Resize, over scan and borders
undot()
Limiter()
asharp(1, 4)
GripCrop(720,480,overscan=myoverscan,Source_anamor phic=myanamorphic,dest_anamorphic=false)
GripSize(resizer="BicubicResize")
STMedianFilter(8, 32, 0, 0)
MergeChroma(blur(MaxTreshold))
MergeLuma(blur(0.1))

## Linear Motion Adaptive Filtering ##
#
# ( Portions from AviSynth's manual ) - This will apply temporalsoften to
# very static scenes, and apply variable blur on moving scenes.
# We also assign a variable - and this is why a line break is inserted:

SwitchThreshold = (Width<=352) ? 4 : (Width<=480) ? 3 : 2
ScriptClip("nf = YDifferenceToNext()"+chr(13)+ "nf >= SwitchThreshold ? \
unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ) : \
TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1) ")

#
#
#

GripBorders()

#Subtitles #
############
#VobSub(subtitle) # Add a # in the beginning of this line if you don't need #subtitles.

converttoyuy2()

sampler (length=15)
==========================================

This is my first attempt at KDVD using CCE, so in unchartered waters here. Any suggestions would be appreciated.


All times are GMT -5. The time now is 08:03 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.