2019-03-15, 15:50
Hi extremeaudio. Can you please explain it a bit. You mean xsqueeze or squeezebox? And which mac adress where?
Thank you Elluminatus
Thank you Elluminatus
(2018-12-06, 23:44)just Learning Wrote: [ -> ]thanks to op/marcelveldt, kodi team, and others posting to this thread.update from my previous post.
to give hope to others I have this kodi/addon working with the following :
odroid c2 w/32g micro-sd and usb sound dongle w/3.5mm out
libreElec 8.2.5 w/ kodi 17.6
multimedia tools - 8.2.105; main menu,addons,install from repository,libreelec add-ons,program addons.
squeezebox 1.0.19; main menu,addons,install from repository,marcelveldt's beta repository,music add-ons.
... one needs to add marcelveldt's repo via post #1 before adding 'squeezebox' addon.
configure via, main menu,addons,my add-ons,music add-ons.
I selected my usb device.
rebooted kodi.
notes: I need to stop squeezelite via squeezebox before playing a movie/video I suspect as tolot noted in #133.
restart squeezebox once movie stops.
extra codos that lyrics works.
'picture slideshow screensaver' works while on the main kodi menu screen, even showing 'current playing' album cover and song name even via 'radio paradise' flac stream.
kodi/squeezebox syncs well with my other 3 rpi-squeezelites for whole house music and control ! nice.
nice I can have the 4k tv on, listening to music with artwork being displayed.
(2018-02-24, 23:40)junkmarsh Wrote: [ -> ]Item 4 works! Was driving me mad not being to navigate folders. And although I had the spacing correct in Notepad++, it showed up differently in the native WinSCP editor. Once the lines were added per above and the indent was corrected folder listings work as expected.(2018-01-07, 14:25)junkmarsh Wrote: [ -> ]1. That they can see songs in track number order when browsing an album
2. That they can browse a list of artists when browsing a genre
3. That they can browse a list of albums when selecting a composer
4. That they can see files when browsing by music folder
In case anyone else is interested in these issues, I have been able to resolve most of them by making minor changes to the python script.
1) To get album tracks appearing in track order rather than alphabetical, you need to add "sort:tracknum" to line 109 of plugin_content.py so that it becomes
request_str = "tracks 0 100000 tags:%s sort:tracknum" % TAGS_BASIC
2) to browse artists rather than albums when selecting a genre, change the word "tracks" to "artists" in line 167 of plugin_content.py, so that it becomes
cmd = "artists¶ms=genre_id:%s" % item["id"]
4) to see files when browsing the music folder (rather than all folders seeming empty) is a little more complicated. The problem is that there is an error (at least I think it's an error) in the create_track_listitem definition. To correct it, copy line 557 from the create_artist_listitem definition (the one beginning 'thumb =') and paste it as an additional line into the create_track_listitem definition (so it wil become line 640 - make sure the indenting stays correct. I don't really understand Python and it caused me some trouble). Then copy lines 568/569/570 and replace the equivalent lines in the create_track_listitem definition (which, with the additional line, should be 657/658/659).
Showing albums under the composer heading is more related to how Squeezeserver presents the database, so that's more difficult. I'm still working on that.
Hope someone finds this useful.
junkmarsh
(2018-09-20, 23:56)NewTomorrow Wrote: [ -> ]Just for future reference -Thank you so much for this! RPi3, Libreelec 9.0.1
I do not know what is actually causing the issue nor have I really looked or tracked Kodi's messaging, but commenting out:
code:def onPlayBackStopped(self):
'''Kodi event fired when playback is stopped'''
if self.is_playing:
self.lmsserver.stop()
log_msg("playback stopped")
self.is_playing = False
from the plugin's player_monitor.py corrected my afore mentioned issue of the playback being forced stopped.
Kodi 18 Milhouse #0910, RPi3
(2019-03-15, 15:50)Elluminatus Wrote: [ -> ]Hi extremeaudio. Can you please explain it a bit. You mean xsqueeze or squeezebox? And which mac adress where?
Thank you Elluminatus
Quote:WARNING: plugin.audio.squeezebox --> Exception in lmsserver ! --> Server is offline or connection error...I tried to enter the server IP manually but it didn't help.
(2019-06-06, 15:25)Pommmes Wrote: [ -> ]Hi,Ok i found mediatools in LibreElec repo, installed it, but still have problems .
i am trying to get this running, but i can not find squeezelite nor media tools add-on anywhere, can anybody help, please?
Thanks
(2019-06-23, 21:41)jakermx Wrote: [ -> ]add this repothanks, i had that installed, but it doesnt work here, it doesnt see my lms. i put in manually the ip of lms and the port...
https://github.com/kodi-community-addons...-1.0.1.zip
then add from repository, under Music Addon Category, you will find Squeezebox
(2019-06-23, 22:21)Pommmes Wrote: [ -> ]I dont know if multimedia tools does install , when i install it, it says the following addons are installed: and the list is empty.(2019-06-23, 21:41)jakermx Wrote: [ -> ]add this repothanks, i had that installed, but it doesnt work here, it doesnt see my lms. i put in manually the ip of lms and the port...
https://github.com/kodi-community-addons...-1.0.1.zip
then add from repository, under Music Addon Category, you will find Squeezebox
(2019-04-15, 16:07)Subaquatic Wrote: [ -> ](2018-09-20, 23:56)NewTomorrow Wrote: [ -> ]Just for future reference -Thank you so much for this! RPi3, Libreelec 9.0.1
I do not know what is actually causing the issue nor have I really looked or tracked Kodi's messaging, but commenting out:
code:def onPlayBackStopped(self):
'''Kodi event fired when playback is stopped'''
if self.is_playing:
self.lmsserver.stop()
log_msg("playback stopped")
self.is_playing = False
from the plugin's player_monitor.py corrected my afore mentioned issue of the playback being forced stopped.
Kodi 18 Milhouse #0910, RPi3