2017-07-10, 17:39
Can I access my GPM Podcasts through this addon? If not, is that a feature that you are interested in working on?
Regardless, thank you for this
Regardless, thank you for this
(2017-07-20, 16:25)curael Wrote: Is it possible to get the "Recents" feature implemented as a choice in the main menu? I would very much like to just have the "Recents" listed so I don't have to do a search or browse my library, since it's honestly inconvenient from a remote control. :/
Been using this plug-in for a while and I've had no issues with log-in or what ever on Kodi 17 - it just works for me. But I'd like "Recents" if it's not too much work.
Thanks for reading.
22:32:42.077 T:1620 NOTICE: [GoogleMusicEXP-1.11.1] ARGV: ['plugin://plugin.audio.googlemusic.exp/', '32', '?path=search']
22:32:42.161 T:1620 NOTICE: [GoogleMusicEXP-1.11.1] PATH: search
22:33:02.335 T:6628 NOTICE: [GoogleMusicEXP-1.11.1] ARGV: ['plugin://plugin.audio.googlemusic.exp/', '33', '?path=search_query&query=amy%20winehouse']
22:33:02.413 T:6628 NOTICE: [GoogleMusicEXP-1.11.1] PATH: search_query
22:33:02.413 T:6628 NOTICE: [GoogleMusicEXP-1.11.1] API getsearch: amy%20winehouse
22:33:02.640 T:6628 NOTICE: [GoogleMusicEXP-1.11.1] Loading auth from cache
22:33:03.918 T:6628 NOTICE: [GoogleMusicEXP-1.11.1] Loaded 0 tracks (0 art miss)
22:33:03.918 T:6628 NOTICE: [GoogleMusicEXP-1.11.1] Loaded 0 albums (0 art miss)
22:33:03.918 T:6628 NOTICE: [GoogleMusicEXP-1.11.1] API search results: tracks 0 albums 0 artists 0 stations 0 videos 20
22:33:03.924 T:6628 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.UnicodeEncodeError'>
Error Contents: 'ascii' codec can't encode character u'\xb4' in position 19: ordinal not in range(128)
Traceback (most recent call last):
File "C:\Users\benja\AppData\Roaming\Kodi\addons\plugin.audio.googlemusic.exp\default.py", line 40, in <module>
GoogleMusicNavigation.GoogleMusicNavigation().listMenu(params)
File "C:\Users\benja\AppData\Roaming\Kodi\addons\plugin.audio.googlemusic.exp\GoogleMusicNavigation.py", line 132, in listMenu
listItems = self.getSearch(get("query"))
File "C:\Users\benja\AppData\Roaming\Kodi\addons\plugin.audio.googlemusic.exp\GoogleMusicNavigation.py", line 553, in getSearch
listItems.append(self.createFolder(video['title'],{'action':'play_yt','display_name':video['title']}))
File "C:\Users\benja\AppData\Roaming\Kodi\addons\plugin.audio.googlemusic.exp\GoogleMusicNavigation.py", line 428, in createFolder
return "?".join([utils.addon_url, urlencode(params)]), li, "true"
File "C:\Program Files (x86)\Kodi\system\python\Lib\urllib.py", line 1347, in urlencode
v = quote_plus(str(v))
UnicodeEncodeError: 'ascii' codec can't encode character u'\xb4' in position 19: ordinal not in range(128)
-->End of Python script error report<--
for key, value in params.iteritems():
#utils.log("key: "+key.encode('utf-8')+" value: "+value.encode('utf-8'))
params[key] = value.encode('utf-8')
(2017-07-22, 12:41)bennyblanc0 Wrote: Added the following at line 428 in GoogleMusicNavigation.py and the unicode issue seems to be resolved.
Code:for key, value in params.iteritems():
#utils.log("key: "+key.encode('utf-8')+" value: "+value.encode('utf-8'))
params[key] = value.encode('utf-8')
from urllib import quote_plus, unquote_plus, urlencode, url2pathname
listItems = self.getSearch(url2pathname(get("query")))
(2017-08-13, 12:02)Noobie101 Wrote: Using Kodi 17 and 18 I actually have 2 issues on install it can't install deocartor .or request s... So I got it from somewhere off the internet I forget where.
Once I have it installed then I doesn't see deocartor ... I think that how u spell it ..
So that's my issue is the dependances.
22:03:49.494 T:4932 ERROR: Control 50 in window 10502 has been asked to focus, but it can't
22:03:49.756 T:20476 NOTICE: [GoogleMusicEXP-1.11.1] ARGV: ['plugin://plugin.audio.googlemusic.exp/', '655', '']
22:03:50.758 T:20476 NOTICE: [GoogleMusicEXP-1.11.1] Checking init data
22:03:50.923 T:20476 NOTICE: [GoogleMusicEXP-1.11.1] Trying to fetch the device_id
22:03:50.923 T:20476 NOTICE: [GoogleMusicEXP-1.11.1] Logging in
22:03:52.072 T:20476 NOTICE: [GoogleMusicEXP-1.11.1] Login in with device_id failed, trying with MAC
22:03:52.603 T:20476 NOTICE: [GoogleMusicEXP-1.11.1] Login failed
22:04:50.141 T:17484 NOTICE: ES: Client from ::ffff:192.168.1.3 timed out
22:07:50.091 T:20476 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.TypeError'>
Error Contents: exceptions must be old-style classes or derived from BaseException, not NoneType
Traceback (most recent call last):
File "C:\Users\Abba\AppData\Roaming\Kodi\addons\plugin.audio.googlemusic.exp\default.py", line 21, in <module>
utils.checkInit()
File "C:\Users\Abba\AppData\Roaming\Kodi\addons\plugin.audio.googlemusic.exp\utils.py", line 113, in checkInit
login.initDevice()
File "C:\Users\Abba\AppData\Roaming\Kodi\addons\plugin.audio.googlemusic.exp\GoogleMusicLogin.py", line 52, in initDevice
self.login()
File "C:\Users\Abba\AppData\Roaming\Kodi\addons\plugin.audio.googlemusic.exp\GoogleMusicLogin.py", line 109, in login
raise
TypeError: exceptions must be old-style classes or derived from BaseException, not NoneType
-->End of Python script error report<--
22:07:50.230 T:4932 ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.audio.googlemusic.exp/
22:07:50.230 T:4932 ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.audio.googlemusic.exp/) failed