PDA

View Full Version : Codec Usage


donjuan03
9th January 2006, 02:19
How do I tell which codec AVISynth is using when using AVISource() as the clip opener. If it is possible how do I change which one it uses. Im very new to this so if I am asking the wrong question and direction would be greatly appreciated.

Thanks in advance,

Dan

squid_80
9th January 2006, 02:36
There's a FourCC parameter for avisource which lets you specify which one to use for the .avi file. For example:# Try opening as Xvid
avisource("blah.avi", fourCC="XVID")

# Try opening as Divx5.0
avisource("blah.avi", fourCC="DX50")

donjuan03
9th January 2006, 02:56
That makes sense. How about for audio codecs is there anyway to tell for them too?