Kodi Community Forum
[ARCHIVED - WON'T UPDATE] XSqueeze - Squeezebox player for XBMC - 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: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151)
+---- Thread: [ARCHIVED - WON'T UPDATE] XSqueeze - Squeezebox player for XBMC (/showthread.php?tid=122199)



RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - bossanova808 - 2015-01-31

XSqueeze currently powers the player on at startup and off at exit (in NowPlayingWindow when the class is created IIRC, not in a place I can look right now)...so again, you'd add some code in there that checks if there are scripts in settings and calls them at that point if required.

If you need to mod it such that player on/off is separate from startup/exit of xsqueeze, that's slightly more complex....but basically you'd add the event codes etc in like the rest and handlers in OnClick/OnAction


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - jacobo221 - 2015-02-01

Hi,

XSqueeze is great, thanks a lot for this :-)

The only "but" is that I have auto-shutdown enabled in Kodi (so Kodi shuts down when there is no inactivity for a while) and XSqueeze doesn't lock so if i don't touch the remote for a while Kodi will shutdown the machine anyway. Would it be possible to fix this?


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - Snyder - 2015-02-01

(2015-01-19, 01:01)bossanova808 Wrote: Looks like you could hack this in to XSqueeze:
https://github.com/trainman419/python-cec

If you do it in such a way as to not interfere with normal XSqueeze I'd be happy to accept a pull request for it...but I don't use CEC so I am not going to be able to help beyond pointing you to the right places etc.

@bossanova808: Trainman´s python-libcec binding works pretty well on the squeezeplug image. There I am able to import the CEC module into a python script, which means that I can send the hdmi CEC commands directly from python. I´m afraid that I need some help to install the python-cec binding on OpenELEC. I am a sort of stuck, when it comes to installing PIP on OpenELEC. I am always getting this error:

Code:
OpenELEC:~/downloads # python get-pip.py
Collecting pip
  Downloading pip-6.0.7-py2.py3-none-any.whl (1.3MB)
    100% |################################| 1.3MB 11kB/s
Collecting setuptools
  Downloading setuptools-12.0.5-py2.py3-none-any.whl (502kB)
    100% |################################| 503kB 30kB/s
Installing collected packages: setuptools, pip

  Exception:
  Traceback (most recent call last):
    File "/tmp/tmpaaiXNa/pip.zip/pip/basecommand.py", line 232, in main
      status = self.run(options, args)
    File "/tmp/tmpaaiXNa/pip.zip/pip/commands/install.py", line 347, in run
      root=options.root_path,
    File "/tmp/tmpaaiXNa/pip.zip/pip/req/req_set.py", line 549, in install
      **kwargs
    File "/tmp/tmpaaiXNa/pip.zip/pip/req/req_install.py", line 740, in install
      self.move_wheel_files(self.source_dir, root=root)
    File "/tmp/tmpaaiXNa/pip.zip/pip/req/req_install.py", line 949, in move_wheel_files
      isolated=self.isolated,
    File "/tmp/tmpaaiXNa/pip.zip/pip/wheel.py", line 234, in move_wheel_files
      clobber(source, lib_dir, True)
    File "/tmp/tmpaaiXNa/pip.zip/pip/wheel.py", line 212, in clobber
      shutil.copyfile(srcfile, destfile)
    File "/home/stephan/projects/openelec-4.0/build.OpenELEC-RPi.arm-4.0.0/Python-2.7.3/.install_pkg/usr/lib/python2.7/shutil.py", line 83, in copyfile
  IOError: [Errno 30] Read-only file system: '/usr/lib/python2.7/site-packages/easy_install.pyo'

Any ideas how to get this working?


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - ronluna - 2015-02-01

When browsing the "Apps" Menu from XSqueeze Chooser. I keep getting random results. It list a fews apps sometimes, sometimes it won't list any apps at all or sometimes it could list all.

wondering if this is a know issue or if there is a way to fix it.


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - bossanova808 - 2015-02-02

@jacobo221 - xbmc does not auto shutdown by default. What's doing the shutting down - is it an addon? Can you disable it - I'm not aware of an auto shutdown on kodi in general? If there is one, I am not sure how it works or detects activity but I could probably add something to 'ping' kodi every now and again, a keep awake as it were. Can you find any info on how this works?

@Snyder - talk to the openelec boys about that, you'll need their help to get libcec in there I think

@ronluna - not really, although the only app I personally use is Spotify. A full debug log of you trying to broswe that are would be helpful.


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - jacobo221 - 2015-02-02

@bossanova808 Indeed. Here is the info: This setting is in Settings -> System (Expert) -> Power saving -> Shutdown function timer. The fix for XSqueeze is extremely easy to implement: xbmc provides XBMC.InhibitIdleShutdown(true) which will stop the timer and XBMC.InhibitIdleShutdown(false) which will activate the timer again (and reset it to zero). So the way I've implemented the fix at home is by calling XBMC.InhibitIdleShutdown(true) in playInit() and calling XBMC.InhibitIdleShutdown(false) in cleanup() both in script.xsqueeze/default.py. I' think that's how it should be done. Thanks for taking the time to have a look at this!


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - bossanova808 - 2015-02-02

@jacobo221

Sounds easy indeed - have you tested that a bit and it works?

Assuming you've tested it - can you send me the updated default.py via pastebin and I will add then this to official -thanks! Might as well use guaranteed working code Smile


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - bossanova808 - 2015-02-02

@jacobo221 never mind, so simple I added it. Should work!


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - ronluna - 2015-02-02

Here is what the debug log shows while accessing the apps menu from Xsqueeze Chooser. Hope this could give an idea...

Code:
09:33:47 T:140486752851712   DEBUG: CPythonInvoker(70, /home/ronluna/.kodi/addons/plugin.program.xsqueezechooser/default.py): entering source directory /home/ronluna/.kodi/addons/plugin.program.xsqueezechooser
09:33:47 T:140486752851712   DEBUG: CPythonInvoker(70, /home/ronluna/.kodi/addons/plugin.program.xsqueezechooser/default.py): instantiating addon using automatically obtained id of "plugin.program.xsqueezechooser" dependent on version 2.1.0 of the xbmc.python api
09:33:47 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### uname is: ('Linux', 'ronluna-mb', '3.13.0-32-generic', '#57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014', 'x86_64', 'x86_64')
09:33:47 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### System is linux
09:33:47 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### 14.0
09:33:47 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### XBMC Version is Gotham
09:33:47 T:140486752851712  NOTICE: ### XSqueeze Chooser - 0.1.7 ### XSqueeze Chooser (Author: bossanova808) Starting ...
09:33:47 T:140486752851712  NOTICE: ### XSqueeze Chooser - 0.1.7 ### Called as: ['plugin://plugin.program.xsqueezechooser/', '11', '?album&artist&artistID&callerid=13000&cmd&genreID&itemid&mode=10&name=Apps%20(local%20playback%20only%20if%20your%20player%20supports%20this)&playlistURL&url&year']
09:33:47 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Parameters parsed: {'mode': '10', 'callerid': '13000', 'name': 'Apps%20(local%20playback%20only%20if%20your%20player%20supports%20this)'}
09:33:47 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Attempting to connect to LMS named [ronluna-desktop] at IP:  ronluna-desktop on CLI port: 9091
09:33:47 T:140489252190144   DEBUG: ------ Window Init (DialogBusy.xml) ------
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### LMS Logged in: True
09:33:48 T:140486752851712   DEBUG: LMS Version: 7.7.4
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Attempting to connect to player: b8:97:5a:2f:9f:43
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Connected to: b8:97:5a:2f:9f:43
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Power state is: True
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Handling Apps
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Player Request: apps 0 100000
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Result string: b8%3A97%3A5a%3A2f%3A9f%3A43 apps 0 100000 sort%3Aweight count%3A20 weight%3A1 icon%3Aplugins%2FIckStreamPlugin%2Fhtml%2Fimages%2Ficon.png cmd%3Aickstream type%3Axmlbrowser name%3AickStream name%3ASpotify weight%3A2 cmd%3Aspotify icon%3Aplugins%2FSpotify%2Fhtml%2Fimages%2Fspotify.png type%3Axmlbrowser name%3APandora cmd%3Apandora icon%3Aplugins%2FPandora%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A10 weight%3A10 icon%3Aplugins%2FSqueezeCloud%2Ficon.png type%3Axmlbrowser cmd%3Asqueezecloud name%3ASqueezeCloud name%3ASpotify weight%3A20 icon%3Aplugins%2FSpotifyLogi%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Aspotifylogi name%3ARhapsody weight%3A20 cmd%3Arhapsodydirect icon%3Aplugins%2FRhapsodyDirect%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser name%3ASlacker type%3Axmlbrowser icon%3Aplugins%2FSlacker%2Fhtml%2Fimages%2Ficon.png cmd%3Aslacker weight%3A30 name%3AAmazon%20CD%20Store type%3Axmlbrowser icon%3Aplugins%2FAmazon%2Fhtml%2Fimages%2Ficon.png cmd%3Aamazon weight%3A30 cmd%3Aclassical icon%3Aplugins%2FClassical%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A38 name%3AClassical.com icon%3Aplugins%2FMOG%2Fhtml%2Fimages%2Ficon.png cmd%3Amog type%3Axmlbrowser weight%3A40 name%3AMOG name%3ALast.fm%20Radio type%3Axmlbrowser icon%3Aplugins%2FLastFM%2Fhtml%2Fimages%2Ficon.png cmd%3Alfm weight%3A40 weight%3A50 icon%3Aplugins%2FMP3tunes%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Amp3tunes name%3AMP3tunes%20Music%20Locker name%3ALive%20Music%20Archive weight%3A60 icon%3Aplugins%2FLMA%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Alma weight%3A1000 cmd%3Ashoutcast icon%3Ahttp%3A%2F%2Fwww.mysqueezebox.com%2Fstatic%2Fimages%2Ficons%2Fshoutcast.png type%3Axmlbrowser name%3ASHOUTcast name%3ADigitally%20Imported icon%3Ahttp%3A%2F%2Fwww.mysqueezebox.com%2Fstatic%2Fimages%2Ficons%2Fdifm.png cmd%3Adifm type%3Axmlbrowser weight%3A1000 name%3ASounds%20%26%20Effects cmd%3Asounds icon%3Aplugins%2FSounds%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A1000 name%3ASiriusXM%20Internet%20Radio type%3Axmlbrowser icon%3Aplugins%2FSirius%2Fhtml%2Fimages%2Ficon.png cmd%3Asirius weight%3A1000 weight%3A1000 type%3Axmlbrowser icon%3Aplugins%2FLive365%2Fhtml%2Fimages%2Ficon.png cmd%3Alive365 name%3ALive365 name%3AFlickr cmd%3Aflickr icon%3Aplugins%2FFlickr%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A1000 type%3Axmlbrowser icon%3Aplugins%2FPlayHistory%2Fhtml%2Fimages%2Ficon.png cmd%3Aplayhistory weight%3A1000 name%3AWhat%20Was%20That%20Tune%3F
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Split string: icon%3Aplugins%2FIckStreamPlugin%2Fhtml%2Fimages%2Ficon.png cmd%3Aickstream type%3Axmlbrowser name%3AickStream name%3ASpotify weight%3A2 cmd%3Aspotify icon%3Aplugins%2FSpotify%2Fhtml%2Fimages%2Fspotify.png type%3Axmlbrowser name%3APandora cmd%3Apandora icon%3Aplugins%2FPandora%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A10 weight%3A10 icon%3Aplugins%2FSqueezeCloud%2Ficon.png type%3Axmlbrowser cmd%3Asqueezecloud name%3ASqueezeCloud name%3ASpotify weight%3A20 icon%3Aplugins%2FSpotifyLogi%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Aspotifylogi name%3ARhapsody weight%3A20 cmd%3Arhapsodydirect icon%3Aplugins%2FRhapsodyDirect%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser name%3ASlacker type%3Axmlbrowser icon%3Aplugins%2FSlacker%2Fhtml%2Fimages%2Ficon.png cmd%3Aslacker weight%3A30 name%3AAmazon%20CD%20Store type%3Axmlbrowser icon%3Aplugins%2FAmazon%2Fhtml%2Fimages%2Ficon.png cmd%3Aamazon weight%3A30 cmd%3Aclassical icon%3Aplugins%2FClassical%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A38 name%3AClassical.com icon%3Aplugins%2FMOG%2Fhtml%2Fimages%2Ficon.png cmd%3Amog type%3Axmlbrowser weight%3A40 name%3AMOG name%3ALast.fm%20Radio type%3Axmlbrowser icon%3Aplugins%2FLastFM%2Fhtml%2Fimages%2Ficon.png cmd%3Alfm weight%3A40 weight%3A50 icon%3Aplugins%2FMP3tunes%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Amp3tunes name%3AMP3tunes%20Music%20Locker name%3ALive%20Music%20Archive weight%3A60 icon%3Aplugins%2FLMA%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Alma weight%3A1000 cmd%3Ashoutcast icon%3Ahttp%3A%2F%2Fwww.mysqueezebox.com%2Fstatic%2Fimages%2Ficons%2Fshoutcast.png type%3Axmlbrowser name%3ASHOUTcast name%3ADigitally%20Imported icon%3Ahttp%3A%2F%2Fwww.mysqueezebox.com%2Fstatic%2Fimages%2Ficons%2Fdifm.png cmd%3Adifm type%3Axmlbrowser weight%3A1000 name%3ASounds%20%26%20Effects cmd%3Asounds icon%3Aplugins%2FSounds%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A1000 name%3ASiriusXM%20Internet%20Radio type%3Axmlbrowser icon%3Aplugins%2FSirius%2Fhtml%2Fimages%2Ficon.png cmd%3Asirius weight%3A1000 weight%3A1000 type%3Axmlbrowser icon%3Aplugins%2FLive365%2Fhtml%2Fimages%2Ficon.png cmd%3Alive365 name%3ALive365 name%3AFlickr cmd%3Aflickr icon%3Aplugins%2FFlickr%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A1000 type%3Axmlbrowser icon%3Aplugins%2FPlayHistory%2Fhtml%2Fimages%2Ficon.png cmd%3Aplayhistory weight%3A1000 name%3AWhat%20Was%20That%20Tune%3F
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### Processed Chunks: [u'plugins%2FIckStreamPlugin%2Fhtml%2Fimages%2Ficon.png cmd%3Aickstream type%3Axmlbrowser name%3AickStream name%3ASpotify weight%3A2 cmd%3Aspotify ', u'plugins%2FSpotify%2Fhtml%2Fimages%2Fspotify.png type%3Axmlbrowser name%3APandora cmd%3Apandora ', u'plugins%2FPandora%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A10 weight%3A10 ', u'plugins%2FSqueezeCloud%2Ficon.png type%3Axmlbrowser cmd%3Asqueezecloud name%3ASqueezeCloud name%3ASpotify weight%3A20 ', u'plugins%2FSpotifyLogi%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Aspotifylogi name%3ARhapsody weight%3A20 cmd%3Arhapsodydirect ', u'plugins%2FRhapsodyDirect%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser name%3ASlacker type%3Axmlbrowser ', u'plugins%2FSlacker%2Fhtml%2Fimages%2Ficon.png cmd%3Aslacker weight%3A30 name%3AAmazon%20CD%20Store type%3Axmlbrowser ', u'plugins%2FAmazon%2Fhtml%2Fimages%2Ficon.png cmd%3Aamazon weight%3A30 cmd%3Aclassical ', u'plugins%2FClassical%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A38 name%3AClassical.com ', u'plugins%2FMOG%2Fhtml%2Fimages%2Ficon.png cmd%3Amog type%3Axmlbrowser weight%3A40 name%3AMOG name%3ALast.fm%20Radio type%3Axmlbrowser ', u'plugins%2FLastFM%2Fhtml%2Fimages%2Ficon.png cmd%3Alfm weight%3A40 weight%3A50 ', u'plugins%2FMP3tunes%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Amp3tunes name%3AMP3tunes%20Music%20Locker name%3ALive%20Music%20Archive weight%3A60 ', u'plugins%2FLMA%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser cmd%3Alma weight%3A1000 cmd%3Ashoutcast ', u'http%3A%2F%2Fwww.mysqueezebox.com%2Fstatic%2Fimages%2Ficons%2Fshoutcast.png type%3Axmlbrowser name%3ASHOUTcast name%3ADigitally%20Imported ', u'http%3A%2F%2Fwww.mysqueezebox.com%2Fstatic%2Fimages%2Ficons%2Fdifm.png cmd%3Adifm type%3Axmlbrowser weight%3A1000 name%3ASounds%20%26%20Effects cmd%3Asounds ', u'plugins%2FSounds%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A1000 name%3ASiriusXM%20Internet%20Radio type%3Axmlbrowser ', u'plugins%2FSirius%2Fhtml%2Fimages%2Ficon.png cmd%3Asirius weight%3A1000 weight%3A1000 type%3Axmlbrowser ', u'plugins%2FLive365%2Fhtml%2Fimages%2Ficon.png cmd%3Alive365 name%3ALive365 name%3AFlickr cmd%3Aflickr ', u'plugins%2FFlickr%2Fhtml%2Fimages%2Ficon.png type%3Axmlbrowser weight%3A1000 type%3Axmlbrowser ', u'plugins%2FPlayHistory%2Fhtml%2Fimages%2Ficon.png cmd%3Aplayhistory weight%3A1000 name%3AWhat%20Was%20That%20Tune%3F']
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### AddNode: url:[plugin://plugin.program.xsqueezechooser/?url=&mode=2005&name=spotify&album=&artist=&artistID=&genreID=&year=&itemid=&playlistURL=&callerid=13000&cmd=spotify] (isFolder=True), listitem:[<xbmcgui.ListItem object at 0x7fc6043525a8>] totalItems=0
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### AddNode: url:[plugin://plugin.program.xsqueezechooser/?url=&mode=2005&name=pandora&album=&artist=&artistID=&genreID=&year=&itemid=&playlistURL=&callerid=13000&cmd=pandora] (isFolder=True), listitem:[<xbmcgui.ListItem object at 0x7fc6043525a8>] totalItems=0
09:33:48 T:140486752851712   ERROR: Traceback (most recent call last):
09:33:48 T:140486752851712   ERROR:   File "/home/ronluna/.kodi/addons/plugin.program.xsqueezechooser/default.py", line 619, in <module>
09:33:48 T:140486752851712   ERROR:     buildAppsRoot()
09:33:48 T:140486752851712   ERROR:   File "/home/ronluna/.kodi/addons/plugin.program.xsqueezechooser/default.py", line 304, in buildAppsRoot
09:33:48 T:140486752851712   ERROR:     buildAppsList(returnedList)
09:33:48 T:140486752851712   ERROR:   File "/home/ronluna/.kodi/addons/plugin.program.xsqueezechooser/default.py", line 308, in buildAppsList
09:33:48 T:140486752851712   ERROR:     if app['cmd']=="search" : continue
09:33:48 T:140486752851712   ERROR: KeyError: 'cmd'
09:33:48 T:140486752851712   DEBUG: ### XSqueeze Chooser - 0.1.7 ### List Items -> Trying to set list mode...50
09:33:48 T:140486685710080   DEBUG: WaitOnScriptResult- plugin returned successfully
09:33:48 T:140486752851712  NOTICE: ### XSqueeze Chooser - 0.1.7 ### XSqueeze Chooser (Author: bossanova808) Exiting ....
09:33:48 T:140486752851712    INFO: CPythonInvoker(70, /home/ronluna/.kodi/addons/plugin.program.xsqueezechooser/default.py): script successfully run
09:33:48 T:140489252190144   DEBUG: ------ Window Deinit (DialogBusy.xml) ------
09:33:48 T:140489252190144   DEBUG: Saving fileitems [plugin://plugin.program.xsqueezechooser/?album&artist&artistID&callerid=13000&cmd&genreID&itemid&mode=10&name=Apps%20(local%20playback%20only%20if%20your%20player%20supports%20this)&playlistURL&url&year]
09:33:48 T:140489252190144   DEBUG:   -- items: 2, sort method: 0, ascending: false
09:33:48 T:140487465871104  NOTICE: Thread BackgroundLoader start, auto delete: false
09:33:48 T:140487465871104   DEBUG: Thread BackgroundLoader 140487465871104 terminating
09:33:48 T:140489252190144   ERROR: SQL: The database disk image is malformed
                                            Query: insert into view (idView, path, window, viewMode, sortMethod, sortOrder, sortAttributes, skin) values(NULL, 'plugin://plugin.program.xsqueezechooser/?album&artist&artistID&callerid=13000&cmd&genreID&itemid&mode=10&name=Apps%20(local           0x428b250layback                   0nly            14140100f%20your                 0x9layer                H^?upports%20his)&playlistURL&url&year', 10001, 65586, 0, 0, 0, 'skin.eminence')
09:33:48 T:140489252190144   ERROR: SetViewState failed on path 'plugin://plugin.program.xsqueezechooser/?album&artist&artistID&callerid=13000&cmd&genreID&itemid&mode=10&name=Apps%20(local%20playback%20only%20if%20your%20player%20supports%20this)&playlistURL&url&year'
09:33:48 T:140486752851712    INFO: Python script stopped
09:33:48 T:140486752851712   DEBUG: Thread LanguageInvoker 140486752851712 terminating
09:33:50 T:140489252190144   DEBUG: Keyboard: scancode: 0x40, sym: 0x0134, unicode: 0x0000, modifier: 0x100
09:33:50 T:140489252190144   DEBUG: OnKey: alt-leftalt (0x4f0d4) pressed, action is



RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - bossanova808 - 2015-02-03

@ronlona reread what I asked for


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - ronluna - 2015-02-04

Hello,
Here is a full debug log of XSqueeze Chooser displaying random result when accessing apps from the list.

http://pastebin.com/DfdkyQ6j


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - bossanova808 - 2015-02-05

That's not a *full* debug log, is it?


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - nickr - 2015-02-05

(2015-02-05, 00:52)bossanova808 Wrote: That's not a *full* debug log, is it?
Dunno about you mate, but I do get sick of having this conversation every couple of pages, even on long threads.


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - bossanova808 - 2015-02-05

Yeah drives me bananas. Have put it in my sig, not much else I can do! I think half the problem is peiple worry about passwords etc. but FFS how uses a sensitive password on their media centre anyway??


RE: [RELEASE]XSqueeze - Squeezebox player, music chooser and visualiser for XBMC - nickr - 2015-02-05

Yeah we would need to go through their natted router first, and then what are we gonna do? Steal their stolen media? Change their Skin?