Hi there,
I've dug around a lot of code trying to figure out how to change subtitle size *while* the video is playing. I've come to a conclusion that the correct way to do this is via
Code: Select all
config_PutInt(vlc_obj, "freetype-fontsize", 56);
config_GetInt will then return correctly 56, which leads me to believe that I'm on the correct path. Unfortunately, this config change doesn't propagate to the player. I've tried using config_SaveConfigFile, but nothing changed. To be honest, I'm not sure what to pass as the first parameter in config_PutInt, or what to call afterwards to make the video view update. I've tried passing the core vlc instance, the media itself, etc.
Could someone please give me a hint where to look?
Thanks in advance!