Hello,
I am developing a video player in .NET arround libvlc.
The version used is: libvlc 2.1.3 and VLC same version.
I encountered the problem of subtitle / audio tracks / video tracks retrieval from the media. For this purpose, I use the functions:
libvlc_video_get_spu_description and
libvlc_video_get_spu_count
I use them after the video started playing, when a chapter or a title is changed, but they always return the same result:
subs count = 1
subs list = "Disabled".
I see that VLC (main application) returns these values correctly over the same video.
Also, for DVD these functions work as expected.
My questions are:
Am I using the correct functions ?
If I should use other ones, which ones ?
Am I using them improperly ?