libVLC 2.0 no audio visualizations.
Posted: 07 Apr 2012 20:53
I've been using nVLC .NET wrapper of the library.
To activate the visualizations, I add the following line:
The method is declared as follows:
This worked absolutely fine with libVLC 1.1, but no longer works with 2.0.
Are there any visualization parameters changes in the new version? Maybe libvlc_media_add_option declaration is no longer valid?
Thanks.
To activate the visualizations, I add the following line:
Code: Select all
IMedia.AddOptions(new string[] { "audio-visual=goom"});
Code: Select all
[DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)]
public static extern void libvlc_media_add_option(IntPtr libvlc_media_inst, [MarshalAs(UnmanagedType.LPArray)] byte[] ppsz_options);
Are there any visualization parameters changes in the new version? Maybe libvlc_media_add_option declaration is no longer valid?
Thanks.