I am using libvlc to play hls streams. I am able to play the stream but I am unable to swtich between hls streams present in the .m3u8 files.
However, VLC Player is able to switch between the streams without any issues.
I would like to know if certain settings or library calls need to be made in order to enable adaptive streaming on hls.
Below is what I use to call libvlc assuming I have instantiated the vlc instance to vlc
libvlc_media_new_location(vlc, "http://stream-hls.imrsv.com/twoman/variant.m3u8");
I am using libvlc 2.1.0 Rincewind
Thank you for the help.