I’m developing an application in C# and I’m using DirectShow.NET libraries to render .AVI files with multiple audio tracks
How can I switch between multiple audio tracks ? I’m using RenderFile to build my filtergraph rather than manually build it.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Should switching between audio tracks be supported, one of the filters in the pipeline (demultiplexing filter) would expose
IAMStreamSelectinterface and you can use it to switch tracks.You can use
ICaptureGraphBuilder2::FindInterfacemethod to quickly locate the interface in your filter graph.