Hello there,
I'm trying to integrate libVLC in my app but I'm not being able to play audio CDs. I'm using PassLibVLC as a wrapper.
According to the help with the syntax cdda://[device] the CD can be played in VLC, that is not true at least for Windows, where the proper syntax is cdda:///[device] (example vlc cdda:///d:\ or vlc cdda:///d: is the valid syntax)
When I use the VLC syntax for the url in LibVCL the following events are triggered and nothing is played:
Stopped
MediaChanged
Opening
Buffering
EncounteredError (and nothing is returned by invoking libvlc_errmsg)
Same happens when using a libvlc_media_list_t_ptr.
Trying to play dvds it works great using the syntax dvd:///device.
Can anyone tellme how to use libvlc to play a specific track in an audio cds? and
How can I get the error message generated? I read in another post the the log routines have been disabled, is that true?
Kind regards