Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-08-23 Thread Ron F.


PasTim wrote: 
> I'm going to put this project to one side for a few days at least.  It
> now seems that some of my UPnP renderers need this check for random 5
> digits port numbers to be discovered, and some don't.  
> 
> I was trying to see if I could further qualify the devices that respond
> to the multicast to 239.255.255.250 by adding a "-s"  (or possibly a "-m
> iprange") clause, and found that two out of my 3 UPnP renderers were
> found even without the INPUT clause at all.  I am slightly unsure
> whether the -s clause works - the device that seems to need the INPUT
> clause seems to be somewhat temperamental in being discovered.
> 
> As it stands all 3 of my devices work at the moment.  If I recall
> correctly you are using a mobile.  I have an LMS player on my mobile, so
> don't need UPnP for it. However, it might be useful for me to have
> another player to test.  What renderer are you using?

I do not understand how your server can accept responses from your UPnP
renderers unless some INPUT rule is present that allows this to happen,
or the firewall has been disabled altogether? I use *sudo iptables -S*
to get a list of the rules that are currently in force. I found
sometimes my phone was temperamental in being discovered too, and
increasing the timeout parameter when creating the ipset upnp, seemed to
help with that. I will play with the "-s" option that you mentioned, but
it should work. Additionally, although this might not be all that
helpful, I think I found a simple way to limit the number of SSDP
M-Search broadcasts that go out periodically to just 1 each time; I
added this rule at the end of the rest of the setup:
SUDO IPTABLES -I OUTPUT 4 -D 239.255.255.250/32 -P UDP -M SET
--MATCH-SET UPNP SRC,SRC -J DROP
Since it is also #4, it will be placed BEFORE the previous #4 rule, and
it does have to go prior, to drop the packet in time.



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B&W 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite + Material Skin >
ifi USB iSilencer > Audirect Beam DAC > Senn IE 80 earbuds
*Bedroom:* Android Phone + SB Player + Squeeze Ctrl > Bluetooth > Bose
SoundLink Revolve
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 7.9.2
*Music:* Personal FLAC, Radio Paradise FLAC, Qobuz, Spotify

Ron F.'s Profile: http://forums.slimdevices.com/member.php?userid=5616
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-08-23 Thread left channel


Anyone else seeing this? Kind of fun sometimes but still unexpected. 

If I listen to the Radio Paradise app's regular stream, press pause, and
put the PC to sleep, then when I awaken the PC the app starts accessing
the data API even though the music is not playing. I see album covers,
track and artist names, but the timer stays at zero. Those things keep
changing, and they are accurate because if I press play then the music
matches the currently displayed image and info.  

This does not happen if I close and reopen SLX. Then it just displays
the "rp" logo with no activity. 

I'm not sure if this is SLX or the plugin, and I'm not even sure when
this started because I usually close the app whenever I'm not using it,
but my sense is that it began with the last SLX update. I do not select
"Run in background".



LMS: SGC microJukebox running Sonicorbiter OS
Control apps: Squeezelite-X on Win 10; Squeezer or Material web app on
Android
Players: Duet, Touch (two), Mac SqueezePlay, Win Squeezelite-X on laptop
and HTPC

left channel's Profile: http://forums.slimdevices.com/member.php?userid=67918
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-08-23 Thread BoomX2


damdub wrote: 
> Hello.
> I've got exactly the same issue here. Player count = 0 before entering
> extra>sdt screen. My setup is the same: lms running on Synology NAS ans
> several radios and touch running customclockhelper and sdt plugins.
> This is no big deal (I don't reboot server very often) but I have
> another issue. Data on my screen savers do not refresh automatically.
> Data are displayed but stay the same as long as I don't activate the
> radio.
> I can see in the logs that every 10 minutes there is a "stuck monitor"
> (4234) issue. I'm guessing that this explains the data not being
> refreshed on the screen.
> Any clue of what I could do to fix this issue ?
> Thanks a lot for your help and the great job done with these plugins.

The stuck monitor is a timer that is twice as long as your refresh rate
(default 5 minutes). If something hangs up it forces another refresh and
records an entry in the log.  The lines before the stuck monitor line
should give some detail of the problem.  Post several lines from your
server log before the stuck monitor line.  That will help me sort out
what is going on.



BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-08-23 Thread Ron F.


Ron F. wrote: 
> Hi PasTim,
> 
> I have been using the BubbleUPnP app on my Android phone as a
> mediarenderer, purely for testing purposes. I am doing this, because I
> have been considering purchasing a streaming DAC in the future, and
> before I spend any money, I wanted to know what all might be involved in
> getting it to work properly. I have been wondering if the original ipset
> timeout of 3 seconds, is simply too short? I want to do some
> experimentation with this, but since UPnPBridge is sending out an SSDP
> M-Search broadcast every 30 seconds or so, the window on the input port
> will be opening and closing, twice a minute. I imagine that is OK, just
> thinking about it.

Hi PasTim,

I find that the position of the INPUT rule in iptables that refers to
the ipset upnp, does not seem to matter. What does matter however is the
position of the OUTPUT rule - still don't know why. I am also using a
timeout for the set of 6 seconds now which seems to be working better.
The one thing I would like to do however is have the set expire
immediately after an SSDP Notify packet is received; there is no reason
to keep the port open at that point! In other words, cause an immediate
timeout. I don't know how to do that yet.

Note: Using Wireshark to watch the communication between LMS/UPnPBridge
and my mediarenderer, BubbleUPnP, I have noticed a couple of things:
1. Sometimes it takes up to 8 seconds for BubbleUPnP to send the NOTIFY
response back to UPnPBridge after it sends a SSDP M-Search broadcast!
That is not good; it should be done in 1 second, so if we use a timeout
of 3 seconds, set in ipset, we are going to have an issue right there.
2. I see that when BubbleUPnP sends it's NOTIFY response, it might
repeat it as many 100 times! Ouch again.
3. I see that the server sends 4 SSDP M-Search messages approximately
every 20 seconds, maybe BubbleUPnp I trying to generate responses to all
of these broadcasts.

-Ron



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B&W 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite + Material Skin >
ifi USB iSilencer > Audirect Beam DAC > Senn IE 80 earbuds
*Bedroom:* Android Phone + SB Player + Squeeze Ctrl > Bluetooth > Bose
SoundLink Revolve
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 7.9.2
*Music:* Personal FLAC, Radio Paradise FLAC, Qobuz, Spotify

Ron F.'s Profile: http://forums.slimdevices.com/member.php?userid=5616
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-08-23 Thread dolodobendan


I found the "reason" for the playlists not finding the files. As it was
to be suspected, it is a problem with permissions. I say it is because
it is a problem with the clients' playlists ONLY.

I set the permissions for half of the music files (the directories on
the path to these files all still have 0770) that should be in the
playlist to 0775, the other half still has 0770. Now LMS finds the first
half after a restart.

But why do ALL these files play perfectly in any other scenario? I could
select some files (client playlist A is created), then save the playlist
(playlist B is created) and then quit LMS. LMS will fail to load the
files from client playlist A ("file doesn't exist") and the clients'
playlist will be empty. But loading the playlist B (with exactly the
same files) will work just fine.

That should not happen.

Copying files to the NAS share will give them the permissions 0770.
That's why I need it to work with 0770 as it did.



QLMS 7.9.2@2.09.8 x64 (digimaster) with perl 5.28 dedicated to me. :D /
QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: CastBridge = integrate Chromecast players with LMS (squeeze2cast)

2019-08-23 Thread john greenwood


My brother - not a forum member - just installed CastBridge.  To his
initial surprise, his Beoplay speakers showed up as streaming options.
The reason, I assume, is that Beoplay has integrated ChromeCast
streaming.  However, the music stops after every 7th or 8th song.  Any
thoughts as to why?



john greenwood's Profile: http://forums.slimdevices.com/member.php?userid=41039
View this thread: http://forums.slimdevices.com/showthread.php?t=104614

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-08-23 Thread dolodobendan


left channel wrote: 
> 
> Apparently there are times during SLX startup when it occassionally
> can't find the built-in player. Because Squeezelite I guess.

I wouldn't have mentioned it as it rarely happens, but I had this
problem today, too. Squeezelite was not running.



QLMS 7.9.2@2.09.8 x64 (digimaster) with perl 5.28 dedicated to me. :D /
QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread Ron F.


cpd73 wrote: 
> Yeah, there is no (AFAIK) notification sent when a playlist is saved.
> But I guess I could get Material to refresh the list when its saved in
> the same instance. I've added Issue 141 to cover this.
> 
> 
> 
> Was it a large playlist? I've added Issue 142 for this.
> 
> Please, raise issues on github for any other issues. Raising them on
> this thread means they get all mixed up with others, etc. Also, I wont
> have access to edit the code for the next week - so adding issues will
> allow me to see what needs to get fixed, etc.

Yes, it was a large playlist - 121 tracks.

I imagine you are going on vacation for a week? I hope you have a good
time.



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B&W 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite + Material Skin >
ifi USB iSilencer > Audirect Beam DAC > Senn IE 80 earbuds
*Bedroom:* Android Phone + SB Player + Squeeze Ctrl > Bluetooth > Bose
SoundLink Revolve
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 7.9.2
*Music:* Personal FLAC, Radio Paradise FLAC, Qobuz, Spotify

Ron F.'s Profile: http://forums.slimdevices.com/member.php?userid=5616
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread cpd73


Ron F. wrote: 
> While I have the Playlist display open in the browser panel on the left
> and I save the Queue to a new playlist, it does not show up - I have to
> refresh the browser to see the new playlist added in the Playlist
> display.

Yeah, there is no (AFAIK) notification sent when a playlist is saved.
But I guess I could get Material to refresh the list when its saved in
the same instance. I've added Issue 141 to cover this.

Ron F. wrote: 
> 
> Secondly, if I then delete the new playlist, using the option to do that
> in it's overflow menu, it can take a very long time for material/desktop
> to complete this task. In fact, on one occasion earlier today, it seemed
> like the browser, (Opera in my case,) had hanged. Then again, I had to
> refresh the browser tab to see that the playlist had indeed been
> deleted. On one occasion while doing this test, material/desktop gave me
> a "network error."

Was it a large playlist? I've added Issue 142 for this.

Please, raise issues on github for any other issues. Raising them on
this thread means they get all mixed up with others, etc. Also, I wont
have access to edit the code for the next week - so adding issues will
allow me to see what needs to get fixed, etc.



cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-08-23 Thread left channel


rgdawson wrote: 
> * Player defaults to built-in Squeezelite player if enabled, otherwise
> defaults to last selected player (if available).

Thought this was great, but now I have to ask: any way to disable this?
Or any way provide it with a second choice rather than last-used?  

Apparently there are times during SLX startup when it occassionally
can't find the built-in player. Because Squeezelite I guess. And now
instead of the behavior I'd carefully constructed, it defaults to the
last-used player which today was of course, wait for it: the All Players
group. Ouch. 

Previously it defaulted to the top player in the list when it couldn't
find the local player, and I had ensured that the top player and top
group were safe choices by placing a "." in front of the name. Now I'm
back to worrying about blasting everyone in the house again when my
last-used player was All.



LMS: SGC microJukebox running Sonicorbiter OS
Control apps: Squeezelite-X on Win 10; Squeezer or Material web app on
Android
Players: Duet, Touch (two), Mac SqueezePlay, Win Squeezelite-X on laptop
and HTPC

left channel's Profile: http://forums.slimdevices.com/member.php?userid=67918
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread Ron F.


cpd73 wrote: 
> devel is now merged into master, and has been removed.

I am back on the master branch.

I like being able to choose and sort what things I want to display in
the Home page, like Presets, and being able to remove the Apps item
which I don't use anymore, since everything I will use in the future is
already pinned.

I think I found something regarding playlists, while using
material/desktop...
While I have the Playlist display open in the browser panel on the left
and I save the Queue to a new playlist, it does not show up - I have to
refresh the browser to see the new playlist added in the Playlist
display.

Secondly, if I then delete the new playlist, using the option to do that
in it's overflow menu, it can take a very long time for material/desktop
to complete this task. In fact, on one occasion earlier today, it seemed
like the browser, (Opera in my case,) had hanged. Then again, I had to
refresh the browser tab to see that the playlist had indeed been
deleted. On one occasion while doing this test earlier today,
material/desktop gave me a "network error."



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B&W 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite + Material Skin >
ifi USB iSilencer > Audirect Beam DAC > Senn IE 80 earbuds
*Bedroom:* Android Phone + SB Player + Squeeze Ctrl > Bluetooth > Bose
SoundLink Revolve
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 7.9.2
*Music:* Personal FLAC, Radio Paradise FLAC, Qobuz, Spotify

Ron F.'s Profile: http://forums.slimdevices.com/member.php?userid=5616
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-08-23 Thread Ron F.


PasTim wrote: 
> I'm going to put this project to one side for a few days at least.  It
> now seems that some of my UPnP renderers need this check for random 5
> digits port numbers to be discovered, and some don't.  
> 
> I was trying to see if I could further qualify the devices that respond
> to the multicast to 239.255.255.250 by adding a "-s"  (or possibly a "-m
> iprange") clause, and found that two out of my 3 UPnP renderers were
> found even without the INPUT clause at all.  I am slightly unsure
> whether the -s clause works - the device that seems to need the INPUT
> clause seems to be somewhat temperamental in being discovered.
> 
> As it stands all 3 of my devices work at the moment.  If I recall
> correctly you are using a mobile.  I have an LMS player on my mobile, so
> don't need UPnP for it. However, it might be useful for me to have
> another player to test.  What renderer are you using?

Hi PasTim,

I have been using the BubbleUPnP app on my Android phone as a
mediarenderer, purely for testing purposes. I am doing this, because I
have been considering purchasing a streaming DAC in the future, and
before I spend any money, I wanted to know what all might be involved in
getting it to work properly. I have been wondering if the original ipset
timeout of 3 seconds, is simply too short? I want to do some
experimentation with this, but since UPnPBridge is sending out an SSDP
M-Search broadcast every 30 seconds or so, the window on the input port
will be opening and closing, twice a minute. I imagine that is OK, just
thinking about it.



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B&W 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite + Material Skin >
ifi USB iSilencer > Audirect Beam DAC > Senn IE 80 earbuds
*Bedroom:* Android Phone + SB Player + Squeeze Ctrl > Bluetooth > Bose
SoundLink Revolve
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 7.9.2
*Music:* Personal FLAC, Radio Paradise FLAC, Qobuz, Spotify

Ron F.'s Profile: http://forums.slimdevices.com/member.php?userid=5616
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Pandora MP3 Stuttering/Distorted, Local mp3's fine

2019-08-23 Thread bpa


Good that you found the problem.  Although your description of your
setup was good - you missed a vital piece of info - that  the player
were synced.  

Synced players have a different set of problems but sync problems nearly
always show up as stuttering.  

Audio output when syncing relies on feedback from the audio drivers so a
high spec system is not that relevant compared to the audio subsystem
being used and if there is "special" processing.  

The problem player was on same system as LMS - no network delays
compared to networked players - uneven delays can upset a sync group.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=110890

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Parametric EQ Plugins

2019-08-23 Thread edwin2006


Alsa works great on pcp player.



*SqueezeBoxes:* 1x Transporter (Living room) 1x SB2 (shed), 1x Radio
(Kitchen), 1x Boom (Dining room), 1x piCorePlayer (jacuzzi), 1x
piCorePlayer (Garden) 1x OSMC + Squeezelite (Movie room), 1x Touch
(Study 2), few spare unit's
*Server:* LMS on Pi3 7.9.1. on PcP 3.21
*Network:* AVM Fritzbox, Netgear Smart Switch 24p, 3x Ubiquity

edwin2006's Profile: http://forums.slimdevices.com/member.php?userid=66926
View this thread: http://forums.slimdevices.com/showthread.php?t=110898

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Pandora MP3 Stuttering/Distorted, Local mp3's fine

2019-08-23 Thread hokie-bird


Thank you for the further suggestions.  Update is, I believe the problem
is solved.  I started experimenting with syncing different combinations
of players, and isolated the problem to only happening when a particular
player was in the sync group.  Wierd thing, its the player running also
on my LMS server (which is a pretty beefy full-PC (LibreELEC x86-64
connected via Ethernet, not a RPi/WiFi) so I'd never really cast a look
at it, assuming the Pi's had to be the culprit.  That PC has a JBL
speaker/subwoofer combo plugged-in via the headphone port, and it seems
(for a reason I cant remember) I was using the "-o dmix" option on the
Squeezelite command line to drive the headphone audio destination.  When
I switched the the output directly to the hardware device via "-o
default:CARD=PCH" and resumed testing, all stuttering/garbling sound has
completely ceased.  Hopefully this helps someone else later

Thanks again for the collaboration.



hokie-bird's Profile: http://forums.slimdevices.com/member.php?userid=66933
View this thread: http://forums.slimdevices.com/showthread.php?t=110890

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Synology 7.9.2 packages

2019-08-23 Thread Aaron451


pinkdot wrote: 
> You could start a none working stream and see if the server log gives
> you a hint. or post the outcome here.

So here's what I get from the server log 28041.
Not sure how top read it. I started the stream then tried to just
forward. It stops and I have to start it all over.


+---+
|Filename: server.log   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=28041|
+---+


Aaron451's Profile: http://forums.slimdevices.com/member.php?userid=16800
View this thread: http://forums.slimdevices.com/showthread.php?t=108960

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread cpd73


Ron F. wrote: 
> Yes - that is correct. I saw this yesterday, using the devel branch,
> which is all I use now.

devel is now merged into master, and has been removed.



cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-08-23 Thread psychokiller


rgdawson wrote: 
> I don't know.  What happens if you use the Ip address of the server
> (10.0.3.208) instead of jukebox.localhost?
> 
> R Greg Dawson

I guessed the origin of the problem: if I enter the ip address in the
hostname field everything works fine and I get a working window with LMS
Material skin. If I enter the *hostname with no domain* (hence *no "."
in it*, just "jukebox" and not "jukebox.localhost") it works fine.

It hangs with a black windows only if I enter a *fully qualified
hostname*, that indeed *contains a dot character, like
"jukebox.localhost"*.

For me it now works, but maybe you wish to investigate further whether
any parsing code assumes that the presence of a dot implies having an ip
address in the hostname field and hence no DNS lookup is needed, and
then code takes a wrong path.

Thanx for your support, Paolo.



psychokiller's Profile: http://forums.slimdevices.com/member.php?userid=67282
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Parametric EQ Plugins

2019-08-23 Thread Roland0


ShutterShock wrote: 
> Does LMS support 3rd party plugins for parametric EQ? 
> 

Not afaik. 
If you are using squeezelite, you could use something like 'alsaequal '
(https://github.com/bassdr/alsaequal)on the player device
If not, you (probably - not tested) could use sox and a
custom-convert.conf on the server to apply the eq before the music is
streamed to the player



SW: 'Web UI for LMS'
(http://forums.slimdevices.com/showthread.php?98186-Announce-Alternative-Web-Interface-(beta))
| 'Playlist Editor / Generator'
(http://forums.slimdevices.com/showthread.php?108199-Announce-LMS-Playlist-Editor)
| 'Music Classification'
(http://forums.slimdevices.com/showthread.php?108278-Announce-Essentia-Integration-music-classification-(moods-genres-))
| 'Similar Music'
(http://forums.slimdevices.com/showthread.php?108495-Announce-LMSmusly-play-similar-music)
| 'LMSlib2go' (https://www.nexus0.net/pub/sw/lmslib2go/)
HowTos: 'build a self-contained LMS'
(http://forums.slimdevices.com/showthread.php?99648-Howto-build-a-self-contained-LMS)
| 'Ogg Opus'
(http://forums.slimdevices.com/showthread.php?107011-Howto-play-Ogg-Opus-files)
| 'Bluetooth/ALSA'
(http://forums.slimdevices.com/showthread.php?107230-Howto-Bluetooth-streaming-to-from-LMS-(ALSA-only-no-PulseAudio))

Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808
View this thread: http://forums.slimdevices.com/showthread.php?t=110898

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-08-23 Thread PasTim


Ron F. wrote: 
> You can do this if you would like PasTim, but I am still testing as
> well. I want to make darn sure the interaction between the rules created
> to solve this port issue, and the existing  rules originally created
> using ufw, is completely solved using your solution. I do think this
> solution will work on any Linux server, if netfiter's iptables and ipset
> are installed, but I doubt however that it will be of any relevance to
> Windoze. I have not owned one of those machines since 2007, and I don't
> know how it's firewall works. I could be mistaken, but isn't UPnP
> originally a Micro creation in the first place, so maybe their
> firewall handles it correctly to begin with?

I'm going to put this project to one side for a few days at least.  It
now seems that some of my UPnP renderers need this check for random 5
digits port numbers to be discovered, and some don't.  

I was trying to see if I could further qualify the devices that respond
to the multicast to 239.255.255.250 by adding a "-s"  (or possibly a "-m
iprange") clause, and found that two out of my 3 UPnP renderers were
found even without the INPUT clause at all.  I am slightly unsure
whether the -s clause works - the device that seems to need the INPUT
clause seems to be somewhat temperamental in being discovered.

As it stands all 3 of my devices work at the moment.  If I recall
correctly you are using a mobile.  I have an LMS player on my mobile, so
don't need UPnP for it. However, it might be useful for me to have
another player to test.  What renderer are you using?



LMS 7.9.2 on PC, Xubuntu 18.04, FLACs 16->24 bit, 44.1->192kbps.  2
Touchs & EDO.
LMS plugin UPnP/DLNA Bridge to MF M1 CLiC (A308CR amp & ESLs) & Marantz
CR603 UPnP renderers.  
Also Minimserver & Upplay to same & to upmpdcli/mpd PC renderers.  
Squeezelite to Meridian USB Explorer DAC to PC speakers/headphones.  
Wireless Xubuntu 18.04 laptop firefox/upplay or Android 'phone with
Squeeze-Commander/BubbleUPnP controls LMS/Minimserver.

PasTim's Profile: http://forums.slimdevices.com/member.php?userid=41642
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-08-23 Thread dolodobendan


rgdawson wrote: 
> 
> Thanks for your dogged persistence, help, and patience!

Thanks for giving me credit for persistently bugging you. :)



QLMS 7.9.2@2.09.8 x64 (digimaster) with perl 5.28 dedicated to me. :D /
QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-08-23 Thread Ron F.


PasTim wrote: 
> Thanks.  It's really down to Ron F. for finding this in the first
> place.
> 
> I'll have a think.  I have a couple of details I want to look at
> further. I also don't know how applicable this solution is to other
> linux platforms, let alone Windoze.

You can do this if you would like PasTim, but I am still testing as
well. I want to make darn sure the interaction between the rules created
to solve this port issue, and the existing  rules originally created
using ufw, is completely solved using your solution. I do think this
solution will work on any Linux server, if netfiter's iptables and ipset
are installed, but I doubt however that it will be of any relevance to
Windoze. I have not owned one of those machines since 2007, and I don't
know how it's firewall works. I could be mistaken, but isn't UPnP
originally a Micro creation in the first place, so maybe their
firewall handles it correctly to begin with?



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B&W 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite + Material Skin >
ifi USB iSilencer > Audirect Beam DAC > Senn IE 80 earbuds
*Bedroom:* Android Phone + SB Player + Squeeze Ctrl > Bluetooth > Bose
SoundLink Revolve
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 7.9.2
*Music:* Personal FLAC, Radio Paradise FLAC, Qobuz, Spotify

Ron F.'s Profile: http://forums.slimdevices.com/member.php?userid=5616
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread Ron F.


cpd73 wrote: 
> Just to confirm. The player is in the manage players dialog, you close
> this, the player is no longer listed in the toolbar's drop down list,
> but if you go *back* itno the manage players dialog it is still there.
> Correct?

Yes - that is correct. I saw this yesterday, using the devel branch,
which is all I use now. I am trying to duplicate the behavior this
morning, but so far I have failed to do so.



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B&W 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite + Material Skin >
ifi USB iSilencer > Audirect Beam DAC > Senn IE 80 earbuds
*Bedroom:* Android Phone + SB Player + Squeeze Ctrl > Bluetooth > Bose
SoundLink Revolve
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 7.9.2
*Music:* Personal FLAC, Radio Paradise FLAC, Qobuz, Spotify

Ron F.'s Profile: http://forums.slimdevices.com/member.php?userid=5616
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-08-23 Thread rgdawson


psychokiller wrote: 
> Hi All,
> 
> I am trying to have Squeezelite-X working on Windows 10 but after
> installing from the Microsoft Store all I get after a few seconds
> startup animation is a black window. 
> 
> Here is a capture of the settings window https://imgur.com/VR3VBdE
> 
> Here is the log https://pastebin.com/H0XwiHmh
> 
> In the log I noticed the following messages:
> 
> > 
Code:

  >   > 
  > 08:24:45.463   Registry-->LocalStorage 08:24:46.501   Error executing 
JavaScript: Did not return a result.
  > |  var Result = localStorage.getItem('lms-material::player');
  > |  if (Result==null) {
  > |Result = "";
  > |  }
  > |  SlxExtension.ReturnResult(Result, "JsResult");
  > 
  > 
  > 08:24:46.501   Setting BrowserPlayerId = d4:3d:7e:a0:1c:80 
  > 08:24:47.528   Error executing JavaScript: Did not return a result.
  > |  var Result = "d4:3d:7e:a0:1c:80";
  > |  localStorage.setItem('lms-material::player', Result);
  > |  SlxExtension.ReturnResult(Result, "JsResult");
  > 
  > 
  > 

> > 
> 
> but have little idea of what is happening: anyone can help?
> 
> Thanx in advance, Paolo.

I don't know.  What happens if you use the Ip address of the server
(10.0.3.208) instead of jukebox.localhost?

R Greg Dawson



Squeezelite-X

rgdawson's Profile: http://forums.slimdevices.com/member.php?userid=65236
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-08-23 Thread rgdawson


psychokiller wrote: 
> Hi All,
> 
> I am trying to have Squeezelite-X working on Windows 10 but after
> installing from the Microsoft Store all I get after a few seconds
> startup animation is a black window. 
> 
> Here is a capture of the settings window https://imgur.com/VR3VBdE
> 
> Here is the log https://pastebin.com/H0XwiHmh
> 
> In the log I noticed the following messages:
> 
> > 
Code:

  >   > 
  > 08:24:45.463   Registry-->LocalStorage 08:24:46.501   Error executing 
JavaScript: Did not return a result.
  > |  var Result = localStorage.getItem('lms-material::player');
  > |  if (Result==null) {
  > |Result = "";
  > |  }
  > |  SlxExtension.ReturnResult(Result, "JsResult");
  > 
  > 
  > 08:24:46.501   Setting BrowserPlayerId = d4:3d:7e:a0:1c:80 
  > 08:24:47.528   Error executing JavaScript: Did not return a result.
  > |  var Result = "d4:3d:7e:a0:1c:80";
  > |  localStorage.setItem('lms-material::player', Result);
  > |  SlxExtension.ReturnResult(Result, "JsResult");
  > 
  > 
  > 

> > 
> 
> but have little idea of what is happening: anyone can help?
> 
> Thanx in advance, Paolo.

Can you show entire log?

R Greg Dawson



Squeezelite-X

rgdawson's Profile: http://forums.slimdevices.com/member.php?userid=65236
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread frankd


cpd73 wrote: 
> Thanks, that was the correct plugin. I know how to fix, so will for the
> next release.

Thanks a million - your skin and efforts are so much appreciated :)



frankd's Profile: http://forums.slimdevices.com/member.php?userid=52885
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread cpd73


Ron F. wrote: 
> I had been streaming to my phone: LMS -> SB Player, but not doing that
> now. SP Player is no longer shown in the player selection menu in the
> material desktop or mobile displays, nor is SB Player shown in the
> "Manage players" list on my phone. However, it is still appearing in the
> "Manage players" list on my laptop using material/desktop! It cannot be
> selected successfully, but it is still appearing in the list. So, there
> is an inconsistency.

Should be fixed in 'devel' branch now.



cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-08-23 Thread PasTim


philippe_44 wrote: 
> I'm trying up to 32 ports from 49152
> 
> With all these efforts you've made, maybe it would be worth an entry in
> the user guide + a note on the 1st post of this thread?
Thanks.  It's really down to Ron F. for finding this in the first
place.

I'll have a think.  I have a couple of details I want to look at
further. I also don't know how applicable this solution is to other
linux platforms, let alone Windoze.



LMS 7.9.2 on PC, Xubuntu 18.04, FLACs 16->24 bit, 44.1->192kbps.  2
Touchs & EDO.
LMS plugin UPnP/DLNA Bridge to MF M1 CLiC (A308CR amp & ESLs) & Marantz
CR603 UPnP renderers.  
Also Minimserver & Upplay to same & to upmpdcli/mpd PC renderers.  
Squeezelite to Meridian USB Explorer DAC to PC speakers/headphones.  
Wireless Xubuntu 18.04 laptop firefox/upplay or Android 'phone with
Squeeze-Commander/BubbleUPnP controls LMS/Minimserver.

PasTim's Profile: http://forums.slimdevices.com/member.php?userid=41642
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread steve-g


cpd73 wrote: 
> 
>   Add 'hasAlbums:1' to years query.
> 

That's fixed the problem with the years - thanks for that.

Steve



steve-g's Profile: http://forums.slimdevices.com/member.php?userid=52057
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Spotty 2.8.x - Spotify Connect for your Squeezebox

2019-08-23 Thread Michael Herger

I need your help on the installation of SSL on my QNAP TS-212. I


I'm sorry, I can't give you that help.


But I'm stuck on the SSL installation. I tried the commands I found
(forums.slimdevices.com/showthread.php?107615-Announce-Spotty-v1-1-0&p=890362&viewfull=1#post890362)
but without success as IPKG is not recognized and cannot be installed
anymore from App Center.


You'd better head over to some QNAP forum. This is far out of scope of 
this thread, I'm sorry.


Another advice many have followed is to use a Raspberry Pi to run LMS, 
and connect it to the music stored on your NAS. I've gone that way for 
the same reason (but a different brand of NAS).


--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Pandora MP3 Stuttering/Distorted, Local mp3's fine

2019-08-23 Thread bpa


hokie-bird wrote: 
> Thanks for the assist, and yea, shortly after posting I had the same
> thought, so I upgraded to 7.9.2 - 1565967976 later yesterday, but
> problem not solved and stuttering/garbled sound persists.  Looking
> forward to any further ideas or suggestions.

A better description of the audio out would help identify the problem
for example - gaps in audio but no loss - indicates supply (e.g network,
server) problem,  gaps with audio loss - indicate a player problem, 
garbled audio but no gaps loss/silence (I.e. track length is correct) 
indicates a decoder/ output device player problem.

If the problem is gaps in audio with no loss and specific only to
Spotify - it is probably a server side problem.

Can you play Spotify on a  player (e.g squeezelite)  running on the
server  (i.e. to exclude network and other players as the problem) ?



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=110890

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Spotty 2.8.x - Spotify Connect for your Squeezebox

2019-08-23 Thread MuadDibCH


Hi,

I need your help on the installation of SSL on my QNAP TS-212. I
recently install the Spotty plugin on LMS as I'm trying the Spotify
subscribtion and wanted to get it on my Squeezebox Touch.

But I'm stuck on the SSL installation. I tried the commands I found
(forums.slimdevices.com/showthread.php?107615-Announce-Spotty-v1-1-0&p=890362&viewfull=1#post890362)
but without success as IPKG is not recognized and cannot be installed
anymore from App Center.

Please, could you give me some help ?

Thanks



MuadDibCH's Profile: http://forums.slimdevices.com/member.php?userid=69371
View this thread: http://forums.slimdevices.com/showthread.php?t=110455

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread castalla


slartibartfast wrote: 
> You have to download it from Github and install manually.
> 
> Sent from my SM-G900F using Tapatalk

I'll just wait, then!



LMS server: Pi Zero

Amp: Denon PMA-50

Players/Speakers:  Touch, Logitech Radios, Sonos Play 1s & Beam,
Libratone Zipp, GGMM E2 & E3, Yamaha WXAD-010, Loewe Airspeaker, Google
Home Mini, Pioneer WX-SMA1, Roberts S1, O2 Joggler, Cisco Joggler

Brexit =  ∞ stupidity




castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-08-23 Thread castalla


I've run into a strange problem.

I've set up a Yamaha WX-010 to use the bridge.  The Yamaha can be set to
forward the output via bluetooth.  I'm streaming SWR 1 - a 128 kbs mp3
stream.  This works fine using a Creative WP-350 headset.  However if I
use a Sennheiser headset the mp3 stream stops audio, but counter shows
as playing.

So, I tried the transcode options - these work and the stream audio
plays okay except for a microsecond blip every few minutes which I can
detect on the Sennheiser.   

As far as I can tell this only happens with SWR and NDR streams.

Very strange.  I'll try another headset brand (B&O) and report back.



LMS server: Pi Zero

Amp: Denon PMA-50

Players/Speakers:  Touch, Logitech Radios, Sonos Play 1s & Beam,
Libratone Zipp, GGMM E2 & E3, Yamaha WXAD-010, Loewe Airspeaker, Google
Home Mini, Pioneer WX-SMA1, Roberts S1, O2 Joggler, Cisco Joggler

Brexit =  ∞ stupidity




castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Spotty 2.8.x - Spotify Connect for your Squeezebox

2019-08-23 Thread Michael Herger

Does DSTM kick in when a Spotify playlist ends?


Any playlist which is managed by LMS. Thus not in Connect mode.

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-08-23 Thread philippe_44


PasTim wrote: 
> Thanks.  I don't know why the OUTPUT rule at position 1 stops ufw
> logging - somehow the other ufw rules don't get fully processed. 
> Anyhow, it's working for me now, and I am still seeing unwanted input
> getting blocked, so the other input rules still work. I think the need
> for other 4915n ports is due to have a couple of other servers on my
> music server (minimserver and minidlna), so 49152 isn't enough for me.

I'm trying up to 32 ports from 49152

With all these efforts you've made, maybe it would be worth an entry in
the user guide + a note on the 1st post of this thread?



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

philippe_44's Profile: http://forums.slimdevices.com/member.php?userid=17261
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread cpd73


frankd wrote: 
> I think it is from the addon Spicefly Sugarcube
> (https://www.spicefly.com/article.php?page=sugarcube-features)

Thanks, that was the correct plugin. I know how to fix, so will for the
next release.



cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread slartibartfast


castalla wrote: 
> Where is the dev branch - repo?You have to download it from Github and 
> install manually.

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-08-23 Thread castalla


Where is the dev branch - repo?



LMS server: Pi Zero

Amp: Denon PMA-50

Players/Speakers:  Touch, Logitech Radios, Sonos Play 1s & Beam,
Libratone Zipp, GGMM E2 & E3, Yamaha WXAD-010, Loewe Airspeaker, Google
Home Mini, Pioneer WX-SMA1, Roberts S1, O2 Joggler, Cisco Joggler

Brexit =  ∞ stupidity




castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Spotty 2.8.x - Spotify Connect for your Squeezebox

2019-08-23 Thread slartibartfast


mherger wrote: 
> 
> 
> My workaround is to use the Don't Stop The Music (DSTM) feature, which 
> can be configured to use Spotty to continue whatever you were listening
> to.
> 
> 
> -- 
> 
> Michael

Does DSTM kick in when a Spotify playlist ends?

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=110455

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Spotty 2.8.x - Spotify Connect for your Squeezebox

2019-08-23 Thread slartibartfast


lordvader wrote: 
> Does anyone know if Spotty supports the "autoplay" function?
> Since Pandora in Australia is a no go, been using spotify. I've been
> creating playlists to "bootstrap" my music, and then let the autoplay
> serve up decent (or not great) follow up tunes.
> The desktop app supports this, but noticed when playing via Spotty, it
> stops at the end, rather than play on.
> 
> For reference, LMS is running on a RPi (7.9.2 - 1562753347), Spotty
> 2.8.4, and my main player is piCorePlayer (so Squeezelite). 
> I'm also on a premium account.

I just tried autoplay using Spotify Connect playing to an Echo Dot and
it acts exactly the same way as playing to a Squeezebox. Songs get added
to the queue but playback stops. If I use my phone as the player
autoplay works but the queue is greyed out. So it seems that autoplay
doesn't work with Connect.

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=110455

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Spotty 2.8.x - Spotify Connect for your Squeezebox

2019-08-23 Thread lordvader


mherger wrote: 
> > Does anyone know if Spotty supports the "autoplay" function?
> What OS are you using? And what spotty binary (see 
> Settings/Advanced/Spotty)?
> 


Code:


  Operating System: Raspbian GNU/Linux 10 (buster)
  Kernel: Linux 4.19.57-v7+
  Architecture: arm



/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/Spotty/Bin/arm-linux/spotty-hf
(v0.20.0)



lordvader's Profile: http://forums.slimdevices.com/member.php?userid=68712
View this thread: http://forums.slimdevices.com/showthread.php?t=110455

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins