setting currentVideoSubTitleIndex in VLCMediaPlayer to -1 does not work
according to the header for VLCMediaPlayer
`/**
- Return the current video subtitle index
- \return current video subtitle index, -1 if none
- Pass -1 to disable. */ @property (readwrite) int currentVideoSubTitleIndex;`
That is the way to to turn off subtitles, when I traced the function called by libvlc (libvlc_video_set_spu) to the related code in libvlc I noticed they don't handle -1 at all, I opened an issue there and got a response about it being a deprecated function and -1 wasn't part of the documented spec on how to turn it off. I'm new to both VLCKit and libvlc code so I'm at a loss for how to approach this problem, or what kind of fix to recommend.
EDIT: it appears libvlc_media_player_select_tracks() is the function that is supposed to be used in place of libvlc_video_set_spu, I hope that helps.
created a PR on github to address this issue, built and tested & working great.