Log in

View Full Version : Avisynth and ac3


castellanos
28th September 2004, 19:56
A stupid question may be: I was trying to make an avi back up of one of my DVD films, useing Avisynth frameserving. I did everything with Dr. DivX and everything was fine.
Just to control the subtitles and before to make the encoding, I use BS player to open the avs file, and instead of open the external audio file with BS player, I would like to put it inside the avs file, as I've already seen: ac3source("C:/ac3file.ac3")... I tried that, but it could not open the ac3 file.
The reason is because I need the Ac3 Filter or is it possible to do it, as in my case, with the ac3 filter from WinDVD?
Or I am totally wrong?
Greetings! :)

malkion
28th September 2004, 20:36
one method could be,

a=mpeg2source("video.d2v") #or your own video source
b=directshowsource("audio.ac3",fps=23.976)
audiodub(a,b)

this should work.