Hi all,
I'd like to ask if it is possible to control subtitle position with libVLC?
I would like to develop an app/extension using VLC/libVLC for learning japanese by watching anime. The app/extension shall help with reading/understanding the japanese subtitles (for example by showing readings of Kanji/translations of words etc). This requires the usage of japanese .srt subtitles. These have to be positionable on screen in order to not clash other subtitles that already might be hardcoded into the material. I could do that with VLC and try to do what I need in a lua extension, but these don't seem to be very well suported by VLC anymore. Very limited docs, examples and no help in the forum.
The other way I could go would be using libVLC (ie libVLCSharp) for displaying the video and interact with the player using libVLC. In this case I could also display the necessary information much nicer than with lua. I have found some basic subtitle handling in libVLC but not how to position them. libVLC uses .srt files with the same file name for playback (it shows in the sample I made up), but I can't find a way to configure details like size and position. Setting up key commands for moving the position on screen seems to be limited to win32 and X.
If the subtitle can not be positioned by libVLC which I kind of suspect after going through some VLC code, which other way could I go in order to interface with VLC in the described manner?
Any help highly appreciated!