Miguel Borges de Freitas

Results 148 comments of Miguel Borges de Freitas

Share a full debug log playing the file in which subs are not being added to the player despite being on the media folder. If possible use the same files...

Yeap I'd say so. Those files should only be detected and parsed upon a playback request, otherwise there would be a high performance penalty. @mrobe can you also kindly post...

Hey @CastagnaIT, Thanks for yet another exceptional bug report (and support addon). Can you check if the following patch fixes the issue? ``` diff --git a/xbmc/interfaces/python/XBPython.cpp b/xbmc/interfaces/python/XBPython.cpp index a02b7d4415..fca86a4eaf 100644...

Yeah, my patch doesn't do anything, it was a brainfart from my side :) Obviously the `tmp` vector is deleted whenever the `OnNotification` method goes out of scope. I took...

Thanks for rolling up your sleeves and tackling the issue :) This is currently no mans land and I am a bit unsure who can review this nowadays. Looking at...

Please take a look at CI failures, https://github.com/xbmc/repo-plugins/pull/3510/checks?check_run_id=3918149094 The automated checks can figure out a few issues automatically :)

@albfan buttonmaps are out of the scope of python plugins. Never did it myself but I think you have to create a buttonmap for your joycon controller (see https://kodi.wiki/view/HOW-TO:Share_button_maps). There's...

To check if settings are filled you can check the value of the setting on the add-on entry point: my_path = xbmcaddon.Addon().getSetting("myPathsettingId") if not my_path or not xbmcvfs.exists(xbmcvfs.translatePath(my_path): xbmcgui.Dialog.ok("my_addon", "setting...

Yeah it happens with any build (also affects latest nightly). Maybe this small .vob will help reproduce? [VTS_01_6.zip](https://github.com/LibreELEC/LibreELEC.tv/files/9101629/VTS_01_6.zip)

I guess I might try to debug it further later on and check if I can adapt the patch to check exactly what breaks it - thanks for the effort