Log in

View Full Version : decode ac3 w/ avisynth


SiXXGuNNZ
14th August 2004, 22:01
I wanted to test out the new recodes load avisytnh scripts, but would like to encode the audio also, how would I load the ac3 audio?

Bogalvator
15th August 2004, 01:50
a=avisource("yourfile.avi") #or whatever source
b=directshowsource("yourac3.ac3")

audiodub(a,b)

Wilbert
15th August 2004, 12:15
In addition, don't forget to read

http://www.avisynth.org/DirectShowSource

SiXXGuNNZ
15th August 2004, 20:34
thanks guys