Mr_Odwin
5th April 2006, 09:46
I am making an app for avi to mpeg-2 conversion and part of the process is to automatically generate the avisynth scripts. At the moment it produces some thing like:
Video=AVISource("C:\Documents and Settings\James\My Documents\My Videos\SerenityBacked.avi", False)
Audio=DirectShowSource("C:\Documents and Settings\James\My Documents\FAVC\Working Folder 0\SerenityBacked.avi")
Audiodub(Video,Audio)
Aside from the channel output and DRC selection is there any benefit to using NicAudio over DirectShowSource? Obviously using NicAudio involves demuxing the audio so I'm a bit loathe to introduce that additional step. Does NicAudio not rely on the corresponding directshow filters so, for example, it can open ac3 even if the required codec isn't present?
Video=AVISource("C:\Documents and Settings\James\My Documents\My Videos\SerenityBacked.avi", False)
Audio=DirectShowSource("C:\Documents and Settings\James\My Documents\FAVC\Working Folder 0\SerenityBacked.avi")
Audiodub(Video,Audio)
Aside from the channel output and DRC selection is there any benefit to using NicAudio over DirectShowSource? Obviously using NicAudio involves demuxing the audio so I'm a bit loathe to introduce that additional step. Does NicAudio not rely on the corresponding directshow filters so, for example, it can open ac3 even if the required codec isn't present?