digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   KVCD: File too large for single CD? (http://www.digitalfaq.com/archives/encode/6812-kvcd-file-large.html)

Stevis2002 11-21-2003 03:08 PM

KVCD: File too large for single CD?
 
Hi all, I have been coding my divx/avi files for ages using the razorblade guide, tok, avisynth 2.52 and the usual stuff which is needed, but with this 1 file/film it keeps getting errmmm.....too big for it's boots say? I set it all up so it will fit to an 800mb disc, but when i set tok off to work it's magic, it makes me a file which is 880mb.
So, ok, it wants to be bigger, so i set it to fit a 74 min disc. Now it finishes up 820mb.. Any ideas why? Here is the script i use below. I always use the same script, but i just do a bit of cutting 'n' pasting where needed. Thanks in advance all :) Steve :)

BTW....the only difference in this film to the others i have done is that it is 29.97 fps ntsc, as opposed to 23.97?


#================================================= =====#
# -= AviSynth script by MovieStacker v2.0.0 (beta3) =- #
#================================================= =====#


## DLL Section ##
#
LoadPlugin("C:\Filters\MPEG2Dec3.dll")
LoadPlugin("C:\Filters\GripFit_YV12.dll")
LoadPlugin("C:\Filters\STMedianFilter.dll")
LoadPlugin("C:\Filters\asharp.dll")
LoadPlugin("C:\Filters\undot.dll")
#
####

## Defined Variables and Constants ##
#
MaxTreshold = 1.50
scd_trigger = 30 # Scene change trigger value.
nf = 0 # Current frame.
#
####

## Main section and static filters ###
#
AviSource("C:\Documents and Settings\Mandie S\My Documents\Movies\zzzzzzzzz.avi")
#
undot()
Limiter()
asharp(2, 4)
GripCrop(352, 240, overscan=2, source_anamorphic=false)
GripSize(resizer="BicubicResize")
STMedianFilter(8, 32, 0, 0 )
MergeChroma(blur(MaxTreshold))
MergeLuma(blur(0.2))
#
#

## Dynamic Linear Adaptive Filtering and Scene Change Detection ##
#
# ( 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:

ScriptClip("nf = YDifferenceToNext()"+chr(13)+ "nf > 2.5 ? asharp( -(fmin((nf/30), 1)), 0 ) : \
TemporalSoften(2,7,7,3,2) ")

#
# Scene change detection ( kwag ) - If a scene change is detected, we
# blur heavily. This affects the scene before and the one after the
# scene change, thus providing a softer transition for the encoder instead
# of a sharp "spike".
# If it's not a scene change, then we just blur dynamically, depending on
# the action.

ScriptClip("nf > scd_trigger ? asharp( -2,0) : asharp(0,0) ")

#
#
#

GripBorders()
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!
Limiter()

#
#
## Functions ###

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

#
####

I am a newbie at hard coding and it means hardly nothing to me. Please take this into consideration when replying.

ARAGORN 11-21-2003 03:37 PM

AviSource("C:\Documents and Settings\Mandie S\My Documents\Movies\Elf.TS-InR.DIVX_Xtech.avi") :twisted: :twisted:

Please, read the disclaimer :twisted:

rhino 11-21-2003 03:38 PM

I don't think you'll get much help considering the name of the file - read the Disclaimer.

Cheers,

*ah aragorn is quicker off the mark :)

dazedconfused 11-21-2003 03:39 PM

There is also a specific AVI forum dedicated to all questions concerning DIVX/XVID/AVI. All discussions regarding DIVX/XVID/AVI must be posted in that specific forum or they will be deleted. Thanks.

-d&c

Stevis2002 11-21-2003 03:40 PM

Sorry guys :)
 
Sorry....i did set out with that in mind, just completely slipped my mind. Thanks for pointing it out!


All times are GMT -5. The time now is 08:42 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.