ActiveX: show only audio spectrum with a A/V source
Posted: 26 Mar 2010 11:08
Hi,
I have an rtsp audio+video source, and I would like to visualize the audio spectrum ignoring the video.
I've tried (in C#) different combinations of options, such as:
or:
Actually I've tried also more options combinations, but nothing shows up what I would see using the VLC player's option: Audio -> Show -> Spectrum (on my italian installations is Audio -> Visualizzazioni -> Spettro).
Any hint?
Thanks,
Michel
I have an rtsp audio+video source, and I would like to visualize the audio spectrum ignoring the video.
I've tried (in C#) different combinations of options, such as:
Code: Select all
string[] options =
{
":audio-visual=visual",
":show-display=true",
":no-video-title-show",
":no-video",
":effect-list=spectrum"
};
vlc.playlist.add("rtsp://whatever", "OnlyAudioSpectrum", options);
vlc.playlist.play();
Code: Select all
string[] options =
{
":audio-visual=spectrum",
":show-display=true",
":no-video"
};
vlc.playlist.add("rtsp://whatever", "OnlyAudioSpectrum", options);
vlc.playlist.play();
Any hint?
Thanks,
Michel