Android VOX/RTL-Now Add-on failure
#1
I am using the Himedia Q10-II eMMc Media Player with the latest XBMC 13 Gotham installed.
For 2 days now the above mentioned Add-on for German TV-Shows isn't working anymore resulting in a script error when I select "all shows". Any idea how to fix this issue. Thx in advance.
Reply
#2
I have the same issue on Ubuntu 14.04; I've narrowed it down to a regex that hangs forever.

Code:
def showContent(urlC):
    global thisPlugin
    content = getUrl(urlC)
    match = re.compile(n_regexContent,re.DOTALL).findall(content) <<<< This hangs forever

I've also tried the other NOW plugin from Addonscriptorde, but that one just segfaults (https://github.com/AddonScriptorDE).
Related: http://www.xbmcnerds.com/index.php?page=...&pageNo=13
Fanless Linux HTPC/NAS: Streacom FC10, ASUS P8H77-M PRO, i3-3225, Corsair LP White DDR3-1600, picoPSU-150-XT, 1x SSD 840, 2x HDD WD Red 3TB
Stats: 29W idle, 55W load, CPU 38-43°C idle, CPU 55-60°C load, HDD 42-43°C idle, HDD 47°C load

Reply
#3
So I quick-and dirty-fixed the RTL NOW Plugin here: http://pastebin.com/5LRXrESx
Also: The RTMPE on Linux is currently broken in Gotham, but the xbmc-nightly fixes the issue: http://forum.xbmc.org/showthread.php?tid...id=1702220
Fanless Linux HTPC/NAS: Streacom FC10, ASUS P8H77-M PRO, i3-3225, Corsair LP White DDR3-1600, picoPSU-150-XT, 1x SSD 840, 2x HDD WD Red 3TB
Stats: 29W idle, 55W load, CPU 38-43°C idle, CPU 55-60°C load, HDD 42-43°C idle, HDD 47°C load

Reply
#4
Ich weiß nicht, ob Binwiederda das Problem schon glöst hat, aber habe auch einen guten Tip bekommen, der wie folgt alles wieder lauffähig macht:

(root folder: bei mir Android)\data\org.xbmc.xbmc\files\.xbmc\addons\plugin.video.rtl_now-master\

•default.py mit einem txt Editor öffnen
•Zeile 94 ------> match = re.compile('<h2>(.+?)</h2>', re.DOTALL).findall(entry)
•ersetzen mit -->match = re.compile('<h.>(.+?)</h.>', re.DOTALL).findall(entry) --> also die h2 durch h. ersetzen
•speichern und schließen

Viel Spaß.
Reply

Logout Mark Read Team Forum Stats Members Help
VOX/RTL-Now Add-on failure0