v17 Subtitles stoped working. Not able to download subs anymore
#1
I just updated to Kodi 17.1. At the same time downloading of subtitles stopped working.

Can someone please take a look at the log and tell me whats wrong? I have tried with subscene, opensubtitles and opensibtitles by opensubtitles.

Log: https://paste.ubuntu.com/24484613/
Reply
#2
nao tenho o codigo para ativaçao. Eaonde incerir o codigo?
Reply
#3
error in line 512
Code:
File ".........Kodi\addons\service.subtitles.subscene\service.py", line 512, in <module>
item['3let_language'].append(xbmc.convertLanguage(lang, xbmc.ISO_639_2))
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe5' in position 14: ordinal not in range(128)

error decoding character å, try unselect language Norwegian Bokmål in your subtitle setting
Reply
#4
or change and fix service.py in line 512 from

Code:
if 'languages' in params:
        for lang in urllib.unquote(params['languages']).decode('utf-8').split(","):

to
Code:
if 'languages' in params:
        languages = unicode(params['languages']).encode('utf-8')
        for lang in urllib.unquote(languages).decode('utf-8').split(","):
Reply
#5
Thank you so much, now it is working again Smile
Reply

Logout Mark Read Team Forum Stats Members Help
Subtitles stoped working. Not able to download subs anymore0