Kodi Community Forum
[RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Music Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=148)
+---- Thread: [RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script (/showthread.php?tid=88235)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22


RE: [RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script - cal1319 - 2013-10-28

Im running FRODO 12.2 and using 2.0.4 of the plugin. I have installed/reinstalled deleted all appdata ect... every time I click on playlist, it says I have no playlist (which I do). When I click on popular music or try to search for anything it get script error. Not sure what else I can do. Windows 7 computer, works fine using the desktop app on the same computer. Cheers!


RE: [RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script - VanZan - 2013-11-12

For heaven's sake put your log on pastebin !!


RE: [RELEASE] Grooveshark - PantsOnFire - 2013-11-19

(2013-10-28, 15:35)cal1319 Wrote: Not sure what else I can do. Windows 7 computer, works fine using the desktop app on the same computer. Cheers!

How to add your debug log file to pastebin.com:
http://wiki.xbmc.org/index.php?title=Debug_log


RE: [RELEASE] Grooveshark (Plugin) Music Addon - denhams - 2013-11-28

(2013-10-12, 15:23)jjmucker Wrote: Hi Stephen, here is the old log. Hopefully this works
http://xbmclogs.com/show.php?id=68729

FYI, I have Frodo 12.0 installed on my main windows HTPC and can log in no problem.
Thanks

Thanks. I see this error:

14:18:37 T:1756040728 ERROR: /storage/emulated/0/Android/data/org.xbmc.xbmc/files/.xbmc/addons/plugin.audio.groove/resources/lib/GroovesharkAPI.py:18: DeprecationWarning: the md5 module is deprecated; use hashlib instead
import urllib2, pprint, md5, os, pickle, tempfile, time, re, simplejson, base64, sys, socket

I'll take a look at replacing the md5 module. That might fix it for you.


RE: [RELEASE] Grooveshark (Plugin) Music Addon - denhams - 2013-11-28

(2013-11-28, 15:18)denhams Wrote:
(2013-10-12, 15:23)jjmucker Wrote: Hi Stephen, here is the old log. Hopefully this works
http://xbmclogs.com/show.php?id=68729

FYI, I have Frodo 12.0 installed on my main windows HTPC and can log in no problem.
Thanks

Thanks. I see this error:

14:18:37 T:1756040728 ERROR: /storage/emulated/0/Android/data/org.xbmc.xbmc/files/.xbmc/addons/plugin.audio.groove/resources/lib/GroovesharkAPI.py:18: DeprecationWarning: the md5 module is deprecated; use hashlib instead
import urllib2, pprint, md5, os, pickle, tempfile, time, re, simplejson, base64, sys, socket

I'll take a look at replacing the md5 module. That might fix it for you.

There's a new version 2.0.6 that should be in the repo soon. Try that and let me know how you get on.

Stephen.


RE: [RELEASE] Grooveshark (Plugin) Music Addon - denhams - 2013-11-29

(2013-10-28, 15:35)cal1319 Wrote: Im running FRODO 12.2 and using 2.0.4 of the plugin. I have installed/reinstalled deleted all appdata ect... every time I click on playlist, it says I have no playlist (which I do). When I click on popular music or try to search for anything it get script error. Not sure what else I can do. Windows 7 computer, works fine using the desktop app on the same computer. Cheers!
Please try version 2.0.6. If that doesn't work then please post your log.


Grooveshark addon problem with temporary directory - jisaitua - 2013-12-01

Hi,

I'm using xbmc in a linux multi user environment and the temp directory “/tmp/groovesharkapi” has privileges problems because all xbmc instances use the same file. I changed the line in the GroovesharkAPI.py constructor, where the directory is created:

self.cacheDir = os.path.join(tempfile.gettempdir(), 'groovesharkapi')

to (you should import getpass first)

self.cacheDir = os.path.join(tempfile.gettempdir(),getpass.getuser() + '_' + 'groovesharkapi')

Making the temp directory unique for every logged user. This worked for me, but I don't know if this is the best approach. Maybe the best solution would be to use the xbmc temp directory.

Regards and thanks for your addon.
JIS.


RE: [RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script - VanZan - 2013-12-02

Is anybody else seeing the addon listed twice in the XBMC.org repo? There's one thats 2.0.5 and another that's 2.0.6. I couldn't get the latter to install so just grabbed it from the sourceforge page.


RE: [RELEASE] Grooveshark (Plugin) Music Addon - denhams - 2013-12-02

(2013-12-01, 22:10)jisaitua Wrote: Hi,

I'm using xbmc in a linux multi user environment and the temp directory “/tmp/groovesharkapi” has privileges problems because all xbmc instances use the same file. I changed the line in the GroovesharkAPI.py constructor, where the directory is created:

self.cacheDir = os.path.join(tempfile.gettempdir(), 'groovesharkapi')

to (you should import getpass first)

self.cacheDir = os.path.join(tempfile.gettempdir(),getpass.getuser() + '_' + 'groovesharkapi')

Making the temp directory unique for every logged user. This worked for me, but I don't know if this is the best approach. Maybe the best solution would be to use the xbmc temp directory.

Regards and thanks for your addon.
JIS.

Thanks for that. I'll look to adding a permanent solution in the next version.

(2013-12-02, 02:31)VanZan Wrote: Is anybody else seeing the addon listed twice in the XBMC.org repo? There's one thats 2.0.5 and another that's 2.0.6. I couldn't get the latter to install so just grabbed it from the sourceforge page.

Yeah. Same issue here. I'll report it to the repo owner.


RE: [RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script - three2five - 2013-12-03

Is this supposed to work on Gotham? Before annoying anyone with my pastebin I'd tought I ask that first. Cannot find any reference to gotham in this post. Sadly Gotham is the only good working release on my Nexus 5 right now


RE: [RELEASE] Grooveshark (Plugin) Music Addon - denhams - 2013-12-03

(2013-12-03, 16:25)three2five Wrote: Is this supposed to work on Gotham? Before annoying anyone with my pastebin I'd tought I ask that first. Cannot find any reference to gotham in this post. Sadly Gotham is the only good working release on my Nexus 5 right now

I've not tested with Gotham so go ahead and pastebin your log.


RE: [RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script - iorifly - 2013-12-31

This working in gotham??


RE: [RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script - fumbrunner - 2014-02-17

Working fine on Frodo 12.2 on my laptop. Can't connect to grooveshark on Gotham on my phone and tablet.


RE: [RELEASE] Grooveshark (Plugin) Music Addon - An alterntive to the Grooveshark Script - kiwi - 2014-02-26

hi, I installed the plugin on openelec but how does it work? I see it enabled in my add ons list but how do I launch it? thanks

edit:

nevermind I figured it out! but I have two issues:

1. I've inserted username and password (free account) but when launching the add on an error appear: "unable login, anywhere account required". Does this mean that I can't login with a free account?
2. When trying to search anything I get a plugin.audio.groove error. In the xbmc.log I got this

http://pastebin.com/5zhEjzVT

Any suggestion? Thanks

xbmc version 12.2, addon version 2.0.6


Music Addon - An alterntive to the Grooveshark Script - kiwi - 2014-03-03

anyone?Confused