I try to play the m3u playlist file under my application. I read this post which is related with my problem http://mailman.videolan.org/pipermail/v ... 54167.html, and in accordance with its content I execute the following lines:
Code: Select all
/* Create the VLC instance */
inst = libvlc_new (...);
/* Create the Media List instance */
ml = libvlc_media_list_new(inst, ...);
/* Load m3u playlist file */
libvlc_media_list_add_file_content(ml, "/user/playlist.m3u", ...);
/* Create the Media List Player instance */
mlp = libvlc_media_list_player_new(inst, ...);
/* Assign the current media list object to media list player */
libvlc_media_list_player_set_media_list(mlp, ml, ...);
/* Play */
libvlc_media_list_player_play(mlp, ...);
Is it a known issue? How can I properly play the m3u playlist files using libvlc?
Thank you in advance for your engagement,
--
Piotr