Hi,
I use VLC ActiveX in a Windows application. This app contains multiple embedded (ActiveX) VLC players, each using another sound card. This worked well with v0.9.9 and no longer works with the current version v1.0.1.
I use the following code:
string[] strInitOptions = {
//Don't change position of these settings
":no-video",
":directx-audio-device=0",
":one-instance",
":random",
":no-loop",
":aout aout_directx",
};
int n;
n = player.playlist.add(Url, null, strInitOptions);
By giving different channels to directx-audio-device= one can select different sound channels. In the latest version everything plays through the default channel.
Is it possible to support this feature again?
Thanks