![]() |
TMPGENC acusa erro
Olá
Duas tentativas o mesmo erro: [b] Illegal floating decimal point calculation order[b]. Utilizado: DVD2AVI - forced film Avisynth 2.5 Tmpgenc. O erro ocorreu exatamente no mesmo ponto nas duas tentavas (com 00:59:52 min). Script usado: ## DLL Section ## # LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\MPEG2Dec3.dll") LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\GripFit_YV12.dll") LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\STMedianFilter.dll") LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\asharp.dll") LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\unfilter.dll") LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\undot.dll") # #### ## Defined Variables and Constants ## # MaxTreshold = 1.50 nf = 0 # Current frame. # #### ## Main section and static filters ### # #Mpeg2Source("Your_D2V_Source_Here") Mpeg2Source("D:\Atlantis kvcd\Atlantis kvcd.d2v") # undot() Limiter() # gamma-correct image for display in a brighter environment Levels(0, 1.3, 255, 0, 255) asharp(1, 4) #GripCrop(Your_GripCrop_Parameters_Here) GripCrop(704, 480, overscan=2, source_anamorphic=true) GripSize(resizer="BicubicResize") STMedianFilter(3, 3, 1, 1 ) 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() #LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker! Limiter() # # ## Functions ### function fmin( int f1, int f2) { return ( f1<f2 ) ? f1 : f2 } #Sampler(100, length=24) ## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size * .98 ## # #### |
Site design, images and content © 2002-2026 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2026 Jelsoft Enterprises Ltd.