digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Konvertierung und Encodieren (Deutsch) (http://www.digitalfaq.com/archives/deutsch/)
-   -   XVID KVCD: Bild steht auf dem Kopf (http://www.digitalfaq.com/archives/deutsch/5623-xvid-kvcd-bild.html)

DasToem 09-16-2003 11:41 AM

XVID KVCD: Bild steht auf dem Kopf
 
Hallo Leute,

ich hab grade versucht ein xvid in eine kvcd umzuwandeln, doch leider steht der Film auf dem Kopf. Wo liegt der Fehler?

Hier mein Script:

Code:

## DLL Section ##
#
LoadPlugin("D:\DVD-Ripping\avisynth\MPEG2Dec3.dll")
LoadPlugin("D:\DVD-Ripping\avisynth\GripFit_YV12.dll")
LoadPlugin("D:\DVD-Ripping\avisynth\STMedianFilter.dll")
LoadPlugin("D:\DVD-Ripping\avisynth\asharp.dll")
LoadPlugin("D:\DVD-Ripping\avisynth\unfilter.dll")
LoadPlugin("D:\DVD-Ripping\avisynth\undot.dll")
#
####

## Defined Variables and Constants ##
#
MaxTreshold = 1.50
nf =  0 # Current frame.
#
####

## Main section and static filters ###
#
AviSource("D:\dc\xvid.avi",false)
#ConvertToYUY2()

undot()
Limiter()
asharp(1, 4)
GripCrop(352, 288, overscan=2)
GripSize(resizer="BilinearResize")
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()
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!
Limiter()

#
#
## Functions ###

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

#
####

Tom

Krassi 09-16-2003 12:27 PM

Schau mal Deine Codecs an. Meistens ist ein ff*-Codec für Mpeg4 daran schuld.
Deinstalliere ihn am Besten über Systemsteuerung->Software.

EDIT: In Deinem Script kann ich keinen Fehler sehen.

Razorblade2000 09-16-2003 05:39 PM

Erst mal: ffdshow = SEHR GUTER CODEC

Das ändert jetzt zwar nich die Ursache, aber die symptome:

für ein:
FlipVertical()
in dein script ein :-D

Krassi 09-17-2003 02:39 AM

Quote:

Originally Posted by Razorblade2000
Erst mal: ffdshow = SEHR GUTER CODEC

Das ändert jetzt zwar nich die Ursache, aber die symptome:

für ein:
FlipVertical()
in dein script ein :-D

@Razorblade,
ich meinte nicht ffdshow, es ist ein anderer Codec, weiss aber den genauen Namen nicht mehr.

EDIT: @DasToem: Probier mal eine Neuinstallation von ffvfw und Avisynth 2.52


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