Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread cpd73


mherger wrote: 
> > @Michael - as you can see in the above screenshot, the Material
> supplied
> > artist image is mixed with the others. Ideally this image would only
> be
> > used as the MAI fallback, and the existing image/icon used for lists
> > such as the above. Can this be rectified?
> 
> What would you need? What are you looking for to do the mapping?

First issue: Material ships
'MaterialSkin/HTML/material/html/images/artists.png' - which is a more
Material-like image for artists. This is picked up by MAI and used as an
artist image when it cannot find an image online. This is great. However
its also used as the artist icon (e.g. when listing 'Artists' in 'My
Music') in the default skin, and on my SB Radio - and this is not good,
as its not the same style as the other icons. Perhaps this file should
be named 'artists-fallback.png' MAI could then use this image, and UI
icons would use 'artists.png' ?? However, MAI would need to handle the
case where 'artists-fallback.png' does not exist, so then fallback to
'artists.png'

Second issue: Material attempts to remap the 'icons' used in lists to
more Material like monochrome icons. To do this I currently look at the
'icon', 'icon-id', and (for 1.5.3) the 'image' field of an item. I check
whether this field 'endsWith' a certain string, and if so map it to the
configured icon. e.g. '/radiosearch.png' gets mapped to 'search'. The
mapping only works on the icon filenames, not what they are being used
for. You can see in the Qobuz listing the 'list' icon is used twice -
but (I think) one of the entries is for tracks, the other playlists. If
each entry as given a more appropriate filename (e.g. '/tracks.png')
then the mapping would be better. Now 'tracks.png' could still be the
same image as the playlists, but by using a different name it allows for
a better mapping. Likewise when spotty is using 'inbox.png' - a more
approriate name for the image would be better. Could still be a the same
image, so nothing changes in defaoult UI, etc. Or, even better, if a new
field was added to the JSONRPC response which detailed what an item was,
then that could be used instead. e.g. "lms-icon":"playlist",
"lms-icon":"genres-moods"



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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

2020-04-05 Thread cpd73


mherger wrote: 
> > Well I could use the current, slow, method for 7.9.x and the newer
> API
> > for 8.0?
> 
> That would certainly be one way to do it, if you think it was worth the
> 
> effort.

Code is already in 1.5.2 for the 7.9.x slow version, adding an 'if
LMS>=8' is easy enough todo.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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: Local Player plugin and Squeezelite for Linux/Windows/OSX

2020-04-05 Thread carsten_h

the_bat wrote: 
> but when I try to run it I get the "“Squeezelite” cannot be opened
> because the developer cannot be verified" message.

If you have such program, you can normally start it with right mousekey
and chosing "Open" and in the following dialog I think "Ok".
You always have to do it with most programs not from the Mac Appstore.



carsten_h's Profile: http://forums.slimdevices.com/member.php?userid=69113
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread Michael Herger

@Michael - as you can see in the above screenshot, the Material supplied
artist image is mixed with the others. Ideally this image would only be
used as the MAI fallback, and the existing image/icon used for lists
such as the above. Can this be rectified?


What would you need? What are you looking for to do the mapping?


--

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2020-04-05 Thread Michael Herger

Here is another funny use of the plugin:


Is this in some plugi of yours? You should probably share a little 
information about what you're trying to do.



 sub getAlbumMenu {
my ($client, $cb, $params, $args) = @_;

if ($params->{album}->{client}) { $client = $params->{album}->{client}; 
delete $params->{album}->{client}; } #Sven 2020-03-31


Why don't you send the $client reference as the first parameter (as 
expected here), instead of putting it into $params? Problem solved, no 
patching required, right?



This changes the $client value.


It doesn't change it. It defines it. Which is required because you send 
the "undef" value as $client.


--

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


Re: [SlimDevices: Plugins] Announce: Music & Artist Information plugin

2020-04-05 Thread Michael Herger

If I look at the songlist for Pearl Jam at ChartLyrics it seems they
don't have those songs (yet). I saw that the one that worked came from
AZLyrics because the ChartLyrics lookup failed.


Yeah, that's likely with all new albums.


So maybe the only option for MAI would be to check more strictly that
the results match the request?


Some want the checks more losely, some more strictly :-). It always 
depends on the way it fails for the user... If it was stricter, we'd 
fail more often than we fail with false positives, I believe.


--

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread Michael Herger

@mherger - isn't there a way to add a "Add to QFavs" item into the
respective browse menues?


There should be a way. Please send me some time.

--

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread Michael Herger

Well I could use the current, slow, method for 7.9.x and the newer API
for 8.0?


That would certainly be one way to do it, if you think it was worth the 
effort.


--

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2020-04-05 Thread Michael Herger

Spotty works well but i have an issue in connect mode: in Spotify i see
the player but if connect to It nothing happens. Spotify start to play
but in lms any Song Is in in queue. Any log. The strange Is that Spotify
app connect too fast, in 0,5 seconds start to play but nothing happens
in lms. What i'm wrong?


Does Spotty work in LMS mode?

--

Michael
___
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

2020-04-05 Thread BoomX2


Release note:


Code:

# 5.9.58 04/05/20   Added Maximum observed temperature since 7AM.
  #   Macro variables are: %!t = MaxTempF
  #%!T = MaxTempC
  #   Added error checking to decode_json calls.
  #



Repository URL:


Code:

http://downloads.sourceforge.net/project/sdt-weather-com/repo.xml




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: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2020-04-05 Thread BoomX2


robho wrote: 
> I found that the windspeed is incorrect if you're using metric units.
> Here's a patch which solves the problem:
> > 
Code:

  >   > --- Plugin.pm.old   2020-03-27 21:41:31.160152756 +0100
  > +++ Plugin.pm   2020-03-27 22:36:15.128817918 +0100
  > @@ -3526,6 +3526,14 @@
  > $wetData{'feelslikeC'} = FtoC($perldata->{'vt1observation'}->{'feelsLike'});
  > $wetData{'dewpointF'} = $perldata->{'vt1observation'}->{'dewPoint'};
  > $wetData{'dewpointC'} = FtoC($perldata->{'vt1observation'}->{'dewPoint'});
  > +
  > +$wetData{'windspeed_mh'} = 
$perldata->{'vt1observation'}->{'windSpeed'};
  > +$wetData{'windspeed_kh'} = 
($perldata->{'vt1observation'}->{'windSpeed'})*1.609344;
  > +$wetData{'windspeed_kh'} = int($wetData{'windspeed_kh'} + .5 * 
($wetData{'windspeed_kh'} <=> 0)); #Funky round
  > +$wetData{'windspeed_kth'} = 
($perldata->{'vt1observation'}->{'windSpeed'})/1.1515;
  > +$wetData{'windspeed_kth'} = int($wetData{'windspeed_kth'} + .5 * 
($wetData{'windspeed_kth'} <=> 0)); #Funky round
  > +$wetData{'windspeed_ms'} = 
$perldata->{'vt1observation'}->{'windSpeed'}*16.09344/36;
  > +$wetData{'windspeed_ms'} = int($wetData{'windspeed_ms'} + .5 * 
($wetData{'windspeed_ms'} <=> 0)); #Funky round
  > }
  > elsif ($units eq 'm') {
  > $wetData{'temperatureF'} = 
CtoF($perldata->{'vt1observation'}->{'temperature'});
  > @@ -3534,6 +3542,14 @@
  > $wetData{'feelslikeC'} = $perldata->{'vt1observation'}->{'feelsLike'};
  > $wetData{'dewpointF'} = CtoF($perldata->{'vt1observation'}->{'dewPoint'});
  > $wetData{'dewpointC'} = $perldata->{'vt1observation'}->{'dewPoint'};
  > +
  > +$wetData{'windspeed_kh'} = 
$perldata->{'vt1observation'}->{'windSpeed'};
  > +$wetData{'windspeed_mh'} = 
($perldata->{'vt1observation'}->{'windSpeed'}) * 0.6213711922;
  > +$wetData{'windspeed_mh'} = int($wetData{'windspeed_mh'} + .5 * 
($wetData{'windspeed_mh'} <=> 0)); #Funky round
  > +$wetData{'windspeed_kth'} = 
($perldata->{'vt1observation'}->{'windSpeed'}) * 0.54;
  > +$wetData{'windspeed_kth'} = int($wetData{'windspeed_kth'} + .5 * 
($wetData{'windspeed_kth'} <=> 0)); #Funky round
  > +$wetData{'windspeed_ms'} = 
$perldata->{'vt1observation'}->{'windSpeed'} / 3.6;
  > +$wetData{'windspeed_ms'} = int($wetData{'windspeed_ms'} + .5 * 
($wetData{'windspeed_ms'} <=> 0)); #Funky round
  > }
  > else {
  > $log->error('$units undefined');
  > @@ -3541,13 +3557,6 @@
  > 
  > $wetData{-1}{'forecastIcon'} = $perldata->{'vt1observation'}->{'icon'};
  > $wetData{-1}{'forecastIconURLSmall'} = 
'/plugins/SuperDateTime/html/images/' . $perldata->{'vt1observation'}->{'icon'} 
. '.png';
  > -$wetData{'windspeed_mh'} = 
$perldata->{'vt1observation'}->{'windSpeed'};
  > -$wetData{'windspeed_kh'} = 
($perldata->{'vt1observation'}->{'windSpeed'})*1.609344;
  > -$wetData{'windspeed_kh'} = int($wetData{'windspeed_kh'} + .5 * 
($wetData{'windspeed_kh'} <=> 0)); #Funky round
  > -$wetData{'windspeed_kth'} = 
($perldata->{'vt1observation'}->{'windSpeed'})/1.1515;
  > -$wetData{'windspeed_kth'} = int($wetData{'windspeed_kth'} + .5 * 
($wetData{'windspeed_kth'} <=> 0)); #Funky round
  > -$wetData{'windspeed_ms'} = 
$perldata->{'vt1observation'}->{'windSpeed'}*16.09344/36;
  > -$wetData{'windspeed_ms'} = int($wetData{'windspeed_ms'} + .5 * 
($wetData{'windspeed_ms'} <=> 0)); #Funky round
  > my $WindDir = $perldata->{'vt1observation'}->{'windDirCompass'};
  > $wetData{'windspeed_mh'} = $WindDir . $wetData{'windspeed_mh'};
  > 

> > 
> 
> (I think it would be easier to start using this plugin if a new thread
> or wiki page was added for the current plugin. I just started using
> the plugin and it took me some time to figure out that there are at
> least three versions, but only one is maintained (I think) and which
> repo to use to use it)

Nice catch.  I'll roll your patch into a future release.  I'll also look
into starting new thread for that release.



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] Mixcloud plugin?

2020-04-05 Thread Jeff07971


burbie wrote: 
> Could someone please confirm success on a Boom or a Classic? 
> I can't get it to work with either 7.9.1 stable or 8.0.0 nightly LMS. 
> TIA, burbie.

Had a few errors trying different ambient mixes


Code:


  [20-04-05 23:17:23.0562] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:17:26.8761] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:17:44.6676] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:17:50.1569] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:17:57.1446] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:18:01.2001] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:18:35.4626] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:18:37.8784] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:18:37.8792] Slim::Player::Song::open (409) Error: Couldn't 
create command line for unk playback for 
[mixcloud://spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/]
  [20-04-05 23:18:44.2792] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:18:48.4481] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:18:57.3532] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(111) Error: Cannot get play URL for 
spacemusicpodcast/spacemusic-123-the-hum-nonstopedition/ from 
https://www.dlmixcloud.com/ajax.php
  [20-04-05 23:18:57.4017] Plugins::MixCloud::Plugin::__ANON__ (291) error: 
Timed out waiting for data
  [20-04-05 23:18:57.4026] Plugins::MixCloud::Plugin::__ANON__ (291) error: 
Timed out waiting for data
  



But finally played "Isolated97" mix on SB3

jeff



*Players:* SliMP3,Squeezebox3 x3,Receiver,SqueezeLite-X,PiCorePlayer x3
*Server:* LMS Version:  Latest Nightly on Centos 8.0 VM on ESXi 6.5.0U3
on Dell T320
*Plugins:*
AutoRescan/BBCiPlayer/PowerSave/PowerSwitchIII/Squeezecloud/Spotty/Player
Groups
*Remotes:* iPeng9/Orangesqueeze/PC/Jivelite/SqueezeLite-X
*Music:* 522GB,1.5K albums with 25K songs by 5K artists mostly FLACs

*Want a webapp ?* See
http://forums.slimdevices.com/showthread.php?104305-Webapp-for-LMS

Jeff07971's Profile: http://forums.slimdevices.com/member.php?userid=49290
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

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


Re: [SlimDevices: Plugins] Mixcloud plugin?

2020-04-05 Thread punnet


burbie wrote: 
> Could someone please confirm success on a Boom or a Classic? 
> I can't get it to work with either 7.9.1 stable or 8.0.0 nightly LMS. 
> TIA, burbie. 

I only have SB Radios so can't help I'm afraid.



punnet's Profile: http://forums.slimdevices.com/member.php?userid=67562
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

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


Re: [SlimDevices: Plugins] Mixcloud plugin?

2020-04-05 Thread burbie


punnet wrote: 
> Working perfectly for me as well. 
> 
> Thanks very much!

Could someone please confirm success on a Boom or a Classic? 
I can't get it to work with either 7.9.1 stable or 8.0.0 nightly LMS. 
TIA, burbie.



burbie's Profile: http://forums.slimdevices.com/member.php?userid=69996
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread cpd73


sveninndh wrote: 
> 29951

@Michael - as you can see in the above screenshot, the Material supplied
artist image is mixed with the others. Ideally this image would only be
used as the MAI fallback, and the existing image/icon used for lists
such as the above. Can this be rectified?



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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

2020-04-05 Thread cpd73


sveninndh wrote: 
> 29950

If only unique names were used for these icons (tracks, playlists, etc)
(even if they were the same image) then Material could map to more
appropriate icons. Spoty also suffers from this - where 'inbox' is used!



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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

2020-04-05 Thread alechasseur


cpd73 wrote: 
> I have thought about this, but there is no trivial javascript library to
> do this. So, not for the moment.
Thanks.



alechasseur's Profile: http://forums.slimdevices.com/member.php?userid=70026
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

2020-04-05 Thread cpd73


sveninndh wrote: 
> If you go into the artist menu of the Qobuz plugin through 'Music -
> Artists - Albums' than the icons are not mapped.

Please try version from git.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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: New versions of erlands plugins

2020-04-05 Thread PasTim


MillmoorRon wrote: 
> It's a standard Artists menu generated through Custom Browse settings
> "create new menu".
> 
> In my Settings > Interface I have
> 
> Web Interface: Default
> Show Artist with Albums: Disabled
> Show Year with Albums: Disabled
> Title Format: TITLE
> 
> If I change the title format it appends "by" (with no artist name) if
> ARTIST is not present in the format, and "from" if ALBUM is not there!
I've always created my own menus, and always have Artists and Albums, so
can't help with that I'm afraid.  I also have a long and complicated
Title format, which never seems to have the 'by' in it.  I do get the
'from' in the title listing in the left hand pane, but not in the
playlist.



LMS 7.9.3 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=49483

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread sveninndh

Today I tried 1.5.2

If you go into the artist menu of the Qobuz plugin through 'Music -
Artists - Albums' than the icons are not mapped.

29951


Code:

[18:54:42] JSON REQ: 
["2c:fd:a1:bb:03:db",["browseonlineartist","items",0,25000,"service_id:qobuz","artist_id:3802"]]
  utils.js?r=11.5.2:17 [18:54:42] JSON RESP: 
{"params":["2c:fd:a1:bb:03:db",["browseonlineartist","items","0",25000,"service_id:qobuz","artist_id:3802"]],"result":{"loop_loop":[{"id":"0","name":"Biographie","image":"/imageproxy/https%3A%2F%2Fstatic.qobuz.com%2Fimages%2Fartists%2Fcovers%2Flarge%2F4f440f52fa7ee9902c02110e0a30027f.jpg/image.jpg","isaudio":0,"hasitems":1},{"id":"1","name":"Alben","image":"html/images/albums.png","isaudio":0,"hasitems":1},{"id":"2","name":"Titel","image":"html/images/playlists.png","isaudio":0,"hasitems":1},{"id":"3","name":"Wiedergabelisten","image":"html/images/playlists.png","isaudio":0,"hasitems":1},{"id":"4","name":"Ähnliche
 
Interpreten","image":"html/images/artists.png","isaudio":0,"hasitems":1},{"id":"5","name":"Interpreten-Information","type":"link","image":"html/images/artists.png","isaudio":0,"hasitems":1},{"id":"6","name":"Favoriten
 
verwalten","type":"link","image":"html/images/favorites.png","isaudio":0,"hasitems":1}],"count":7},"metho
 d":"slim.request","id":42}



If you call the same artist menu from Qobuz plugin it works.

29950


Code:

[19:01:00] JSON REQ: 
["2c:fd:a1:bb:03:db",["qobuz","items",0,25000,"menu:qobuz","item_id:1.0.0.3"]]
  utils.js?r=11.5.2:17 [19:01:00] JSON RESP: 
{"result":{"offset":0,"title":"Agnes 
Obel","base":{"actions":{"add":{"cmd":["qobuz","playlist","add"],"player":0,"params":{"menu":"qobuz"},"itemsParams":"params"},"add-hold":{"itemsParams":"params","player":0,"params":{"menu":"qobuz"},"cmd":["qobuz","playlist","insert"]},"go":{"params":{"menu":"qobuz"},"itemsParams":"params","cmd":["qobuz","items"]},"play":{"nextWindow":"nowPlaying","cmd":["qobuz","playlist","play"],"itemsParams":"params","player":0,"params":{"menu":"qobuz"}},"playControl":{"player":0,"params":{"_index":"0","_quantity":"25000","menu":"qobuz","item_id":"1.0.0.3"},"window":{"isContextMenu":1},"itemsParams":"playControlParams","cmd":["qobuz","items"]},"more":{"player":0,"params":{"menu":"qobuz"},"window":{"isContextMenu":1},"itemsParams":"params","cmd":["qobuz","items"]}}},"item_loop":[{"text":"Biographie","icon":"/imageproxy/https%3A%2F%2Fstatic.qobuz.com%2Fimages%2Fartists%2Fcovers%2Flarge%2F4f440f52fa7ee9902c02110e
 
0a30027f.jpg/image.jpg","actions":{"go":{"params":{"item_id":"1.0.0.3.0","menu":"qobuz"},"cmd":["qobuz","items"]}},"addAction":"go"},{"text":"Alben","icon":"html/images/albums.png","actions":{"go":{"cmd":["qobuz","items"],"params":{"item_id":"1.0.0.3.1","menu":"qobuz"}}},"addAction":"go"},{"icon":"html/images/playlists.png","text":"Titel","addAction":"go","actions":{"go":{"cmd":["qobuz","items"],"params":{"menu":"qobuz","item_id":"1.0.0.3.2",{"text":"Wiedergabelisten","icon":"html/images/playlists.png","actions":{"go":{"cmd":["qobuz","items"],"params":{"item_id":"1.0.0.3.3","menu":"qobuz"}}},"addAction":"go"},{"actions":{"go":{"params":{"item_id":"1.0.0.3.4","menu":"qobuz"},"cmd":["qobuz","items"]}},"addAction":"go","text":"Ähnliche
 
Interpreten","icon":"html/images/artists.png"},{"actions":{"go":{"params":{"menu":"qobuz","item_id":"1.0.0.3.5"},"cmd":["qobuz","items"]}},"type":"link","addAction":"go","text":"Interpreten-Information","icon":"html/images/artists.png"},{"typ
 e":"link","actions":{"go":{"params":{"menu":"qobuz","item_id!
 ":"1.0.0.3.6"},"cmd":["qobuz","items"]}},"addAction":"go","text":"Favoriten 
verwalten","icon":"html/images/favorites.png"}],"count":7,"window":{"windowStyle":"home_menu"}},"id":50,"method":"slim.request","params":["2c:fd:a1:bb:03:db",["qobuz","items","0",25000,"menu:qobuz","item_id:1.0.0.3"]]}



+---+
|Filename: Artist Menu 1.JPG|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29951|
+---+


sveninndh's Profile: http://forums.slimdevices.com/member.php?userid=69030
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 4.0 - integrate local library with your Spotify collection (LMS 8+)

2020-04-05 Thread corrobor


Hi. I moved lms to another Raspberry with raspbian.
Spotty works well but i have an issue in connect mode: in Spotify i see
the player but if connect to It nothing happens. Spotify start to play
but in lms any Song Is in in queue. Any log. The strange Is that Spotify
app connect too fast, in 0,5 seconds start to play but nothing happens
in lms. What i'm wrong?



corrobor's Profile: http://forums.slimdevices.com/member.php?userid=69872
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread cpd73


slartibartfast wrote: 
> I get the impression that once the volume has begun to decrease that
> sleep cannot be cancelled. The volume continues to decrease. Even if
> sleep is cancelled on the device menu the same thing happens. So this is
> definitely not an issue with Material. I am also trying very hard to
> think of a realistic situation when someone would want to cancel sleep
> within that time frame.

Thanks for confirming that its not (for once) a Material issue.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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

2020-04-05 Thread slartibartfast


cpd73 wrote: 
> Volume is dimmed to 0? You mean the volume -level- drops to 0???
> Material does not alter volume when a song start/stops. And for sleep,
> all material does update the LMS sleep setting for a player - it does
> not handle sleep itself.I get the impression that once the volume has begun 
> to decrease that
sleep cannot be cancelled. The volume continues to decrease. Even if
sleep is cancelled on the device menu the same thing happens. So this is
definitely not an issue with Material. I am also trying very hard to
think of a realistic situation when someone would want to cancel sleep
within that time frame.

Sent from my Pixel 3a 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

2020-04-05 Thread Fahzz

mherger wrote: 
> > Thanks.  I don’t see an option for Qobuz on don’t stop the
> music??
> > There isn’t one?
> 
> No, there's none. What would you expect it to do? Qobuz AFAIK doesn't 
> have a mixing API.
> 
> That said you can use the LastMix plugin to create the mixes, pulling in
> 
> tracks from Qobuz if not available locally.
> 
> 
> -- 
> 
> Michael

Ok thanks i'll try that.



Living Room: Pi3 w/Allo Digione Player (Wired), Max2Play w/LMS Server
7.9 and SqueezeLite
Pioneer Elite VSX 80, Parasound 2125 v2
KEF LS50's, Paradigm SE Center, SVS SB12-NSD Subwoofer, Paradigm Atom
v.5 Surrounds
Harmony Smart Control w/Hub and iPeng
Dining Room: KEF Q100's
Bedroom: Logitech Boom
Porch: Boston Acoustics Voyager Metro II
Router: Asus RT-N56U

Fahzz's Profile: http://forums.slimdevices.com/member.php?userid=12585
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

2020-04-05 Thread cpd73


AlexQ wrote: 
> When cancelling sleep at the end of the "last" song the volume is being
> dimmed to zero and remains zero for the next song (v1.5.2)
> Pause > Play will reset the volume. Nothing major just worth noting : )
> Would be nice if volume is ramped up again to normal level after
> cancelling sleep before the song ends - especially if the volume was
> almost zero.

Volume is dimmed to 0? You mean the volume -level- drops to 0???
Material does not alter volume when a song start/stops. And for sleep,
all material does update the LMS sleep setting for a player - it does
not handle sleep itself.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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

2020-04-05 Thread cpd73


AlexQ wrote: 
> Just found that "Play now" will start playing the last title of the
> playlist (v1.5.2)
> "Append to queue" and "Play next" insert all songs (in the right order)
> as expected.

Which playlists? LMS, Spotify, etc? How are you activating 'play now' -
from the context menu when listing playlists? Or from the toolbar when a
playlist's contents are shown? Either way works correctly for me.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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

2020-04-05 Thread cpd73


alechasseur wrote: 
> As a classical music lover, I deal with long (and sometime very long)
> titles of works with movement indications and opus, etc. I primarily use
> LMS via an android phone which does not allow a lot of space for
> display. It would be so great to have the possibility of having the
> three line of texts giving Titles, Albums, Artists and Composers to
> scroll slowly from the right to the left in order to help the complete
> reading of what is currently playing. The best example I know of such a
> capability is available on the PowerAmp android application for local
> playback on my phone. It does scroll right to left and vice versa. I do
> not feel that it is at all necessary to have this information scrolled
> from the left to the right after a first movement from the right to the
> left.

I have thought about this, but there is trivial javascript library to do
this. So, not for the moment.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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] Dynamic Playlists has stopped working for me

2020-04-05 Thread atrocity


atrocity wrote: 
> 
> While trying to track this down yesterday, I also noticed a very strange
> issue where I could see more entries in the log via the web interface
> than showed when I simply went in via SSH and viewed the log on a
> terminal window.

Because I was logged into the wrong box!



atrocity's Profile: http://forums.slimdevices.com/member.php?userid=16009
View this thread: http://forums.slimdevices.com/showthread.php?t=111941

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread AlexQ


slartibartfast wrote: 
> Doesn't do this on mine. Did you clear the browser cache?
> 
> Sent from my Pixel 3a using Tapatalk

no change after clearing cache - consistent effect in Chrome and Opera
(Material Skin v1.5.2)



AlexQ's Profile: http://forums.slimdevices.com/member.php?userid=43764
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

2020-04-05 Thread AlexQ


When cancelling sleep at the end of the "last" song the volume is being
dimmed to zero and remains zero for the next song (v1.5.2)
Pause > Play will reset the volume. Nothing major just worth noting : )
Would be nice if volume is ramped up again to normal level after
cancelling sleep before the song ends - especially if the volume was
almost zero.



AlexQ's Profile: http://forums.slimdevices.com/member.php?userid=43764
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

2020-04-05 Thread slartibartfast


AlexQ wrote: 
> Just found that "Play now" will start playing the last title of the
> playlist (v1.5.2)
> "Append to queue" and "Play next" insert all songs (in the right order)
> as expected.
> Likely an initialization topic?Doesn't do this on mine. Did you clear the 
> browser cache?

Sent from my Pixel 3a 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] Dynamic Playlists has stopped working for me

2020-04-05 Thread atrocity


atrocity wrote: 
> 
> While trying to track this down yesterday, I also noticed a very strange
> issue where I could see more entries in the log via the web interface
> than showed when I simply went in via SSH and viewed the log on a
> terminal window.

Though now this appears to no longer be the case. Weird.



atrocity's Profile: http://forums.slimdevices.com/member.php?userid=16009
View this thread: http://forums.slimdevices.com/showthread.php?t=111941

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


[SlimDevices: Plugins] Dynamic Playlists has stopped working for me

2020-04-05 Thread atrocity


I've used Dynamic Playlists + Custom Skip for years now to give me Never
Played Albums overnight. I have a dedicated Pi in the bedroom just for
that purpose.

Apparently the main library.db got corrupted in a power outage a couple
weeks ago, but deleting it and letting it rebuild fixed the problem. I
had a couple nights of business as usual, but now (despite no further
power issues) it simply refuses to add any new albums to the playlist.
In fact, selecting Never Played Albums now results in the server
becoming unavailable until I restart it. Nothing useful in the log, no
indication that anything has gone bad, it just sits until I restart.

So I've got two questions:

1. At 117,000+ tracks, have I just outgrown the plugins?

2. Is there anything else that provides the same functionality? I want
to be able to cycle through albums that particular instance has never
played while skipping genres I use to identify the material as
non-music.

3. Is it still possible to install the plugins (should I have to rebuild
the whole thing) even though Erland seems to have left the scene? It's
been so long now that I can't even remember what I did. I thought I had
to show an additional repository on the plugins menu, but I don't see
one there.

4. Are Erland's plugins compatible with LMS 8? (Just curious, the server
in question is still on 7.9.2.)

While trying to track this down yesterday, I also noticed a very strange
issue where I could see more entries in the log via the web interface
than showed when I simply went in via SSH and viewed the log on a
terminal window. Makes me wonder if at long last the microSD card has
given up, though I'd expect to see more problems in that case.

Thank you!



atrocity's Profile: http://forums.slimdevices.com/member.php?userid=16009
View this thread: http://forums.slimdevices.com/showthread.php?t=111941

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread AlexQ


Just found that "Play now" will start playing the last title of the
playlist (v1.5.2)
"Append to queue" and "Play next" insert all songs (in the right order)
as expected.
Likely an initialization topic?



AlexQ's Profile: http://forums.slimdevices.com/member.php?userid=43764
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

2020-04-05 Thread alechasseur


Hello,

Congratutlations for the Material Skin plugin for LMS. I came to LMS via
Daphile and found quite hard to navigate and stream my music on my
network with the original display. It is now a charm to do so with the
addition of your Material Skin. Thanks for it and for the quality of the
French translation. Fabulous!

I am new to this forum and I have not read the whole tread. My apology
should the following suggestion be redundant...

As a classical music lover, I deal with long (and sometime very long)
titles of works with movement indications and opus, etc. I primarily use
LMS via an android phone which does not allow a lot of space for
display. It would be so great to have the possibility of having the
three line of texts giving Titles, Albums, Artists and Composers to
scroll slowly from the right to the left in order to help the complete
reading of what is currently playing. The best example I know of such a
capability is available on the PowerAmp android application for local
playback on my phone. It does scroll right to left and vice versa. I do
not feel that it is at all necessary to have this information scrolled
from the left to the right after a first movement from the right to the
left.

Should you find this of interest to work on such a feature, it may nice
to offer this as an optional feature within the parameters of the
plugin. I guess, it may not be of interest for everyone.

Thanks in advance for considering my suggestion and again, my aplogies,
should you have already discussed this with other forum members.

Regards

A.



alechasseur's Profile: http://forums.slimdevices.com/member.php?userid=70026
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] BBCiPlayer V1.6 (and higher) & BBCiPlayerExtra 2.0 (and higher) Support

2020-04-05 Thread Paul Webster


Happens a lot with SourceForge.
You could switch to the alternate repo XML file ... but my guess is that
a subsequent attempt to download the plugin would also fail since it
comes from SourceForge as well.
They seems to go through periods of this.
Try again later if you are trying to install.



Paul Webster
http://dabdig.blogspot.com
Author Radio France (FIP etc) plugin

Paul Webster's Profile: http://forums.slimdevices.com/member.php?userid=105
View this thread: http://forums.slimdevices.com/showthread.php?t=109826

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.6 (and higher) & BBCiPlayerExtra 2.0 (and higher) Support

2020-04-05 Thread coyrls


I am getting the following messages on the LMS Server Plugin tab:

> Bad repository
> http://downloads.sourceforge.net/project/bpaplugins/betarelease-repo.xml
> - Connect timed out: Connection timed out
> 
> Bad repository
> http://downloads.sourceforge.net/project/bpaplugins/repo-short.xml -
> Timed out waiting for data
> 

I am able to get to these addresses using my browser.  I am running LMS
7.9.2 on piCorePlayer v6.0.0.



coyrls's Profile: http://forums.slimdevices.com/member.php?userid=44253
View this thread: http://forums.slimdevices.com/showthread.php?t=109826

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2020-04-05 Thread Mirage


I just went from LMS 7.9.2 to 8, following the instructions here:
https://www.picoreplayer.org/how_to_upgrade_lms.shtml

When I checked plugins "Online Music Library Integration" were already
installed.

It will be great fun to try this out with music from Spotify and Tidal
in my library. 

Thank you for your great work Michael!



Mirage's Profile: http://forums.slimdevices.com/member.php?userid=31912
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2020-04-05 Thread sveninndh


@michael

Here is another funny use of the plugin:

if MusicArtistInfo plugin is installed I want to add 'Ablum Information'
in QobuzGetTracks().


Code:

if ($IsMusicArtistInfo) {
push @$items, {
name  => cstring($client, 
'PLUGIN_MUSICARTISTINFO_ALBUMINFO'),
items => 
Plugins::MusicArtistInfo::AlbumInfo->getAlbumMenu(undef, { album => { album => 
$album->{title}, artist => $artist, client => $client } })
}
}



Also the following code is needed:


Code:

my $IsMusicArtistInfo = 0;
  
  sub postinitPlugin {
  ...
if ( 
Slim::Utils::PluginManager->isEnabled('Plugins::MusicArtistInfo::Plugin') ) {
$IsMusicArtistInfo = 1;
}
  ...
  }
  




If you inspect the code above you will see that it is a trick, because
it works only if you add a code line to AlbumInfo.pm.


Code:

sub getAlbumMenu {
my ($client, $cb, $params, $args) = @_;

if ($params->{album}->{client}) { $client = $params->{album}->{client}; 
delete $params->{album}->{client}; } #Sven 2020-03-31



This changes the $client value.
Without this trick I always run into a runtime error in this line:


Code:

type => ($client && $client->controllerUA || '') =~ /squeezeplay/i ? 'link' 
: 'slideshow',
  
  [20-04-05 13:00:20.1358] Slim::Networking::IO::Select::__ANON__ (130) Error: 
Select task failed calling Slim::Networking::Async::HTTP::_http_read_body: 
Can't locate object method "controllerUA" via package 
"Plugins::MusicArtistInfo::AlbumInfo" at 
/SlimServer/Cache/InstalledPlugins/Plugins/MusicArtistInfo/AlbumInfo.pm line 85.
  ; fh=Slim::Networking::Async::Socket::HTTP=GLOB(0x55a420ccda70)
  
  



This problem also exists in ArtistInfo.pm, if you like to call
getArtistMenu().

The disadvantage of this trick is that every time the MusicArtistInfo
plugin is updated, the trick must be reinstalled in the new version.

So my question to you is:

Do you have a better idea to make this work?

Or can you modify the code line,

Code:

type => ($client && $client->controllerUA || '') =~ /squeezeplay/i ? 'link' 
: 'slideshow',



that the runtime error disappears.



sveninndh's Profile: http://forums.slimdevices.com/member.php?userid=69030
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Announce: Music & Artist Information plugin

2020-04-05 Thread reinholdk


mherger wrote: 
> 
> Enable logging for MAI to see what services it calls with what
> parameters.
> 


Code:


  [20-04-05 11:42:37.9566] Plugins::MusicArtistInfo::Common::call (102) Async 
API call: GET 
http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=Pearl%20Jam=Alright
  [20-04-05 11:42:38.0712] Slim::Utils::Misc::msg (1255) Warning: 
[11:42:38.0708] {
  SearchLyricResult => [
  {
  Artist=> "Pearl Jam",
  ArtistUrl => "http://www.chartlyrics.com/58u5g1eY4kmrjrV7AQOBAw.aspx;,
  LyricChecksum => "32b2277dff6ac00d64c75fbe296ef8c8",
  LyricId   => 40_150,
  Song  => "The Kids Are Alright",
  SongRank  => 9,
  SongUrl   => 
"http://www.chartlyrics.com/58u5g1eY4kmrjrV7AQOBAw/The+Kids+Are+Alright.aspx;,
  TrackId   => 0,
  },
  {
  Artist=> "JAM Project",
  ArtistUrl => "http://www.chartlyrics.com/A79gRyFpz0q9b4dD9TNgCA.aspx;,
  LyricId   => 0,
  Song  => "Alright Now! \x{301C}movie Remix Ver.\x{301C}",
  SongRank  => 1,
  SongUrl   => "http://www.chartlyrics.com/app/add.aspx?a=210535=5924143;,
  TrackChecksum => "11338841b6d3e43058f9d177b6e88e5e",
  TrackId   => 5_924_143,
  },
  {
  Artist=> "Casting Pearls",
  ArtistUrl => "http://www.chartlyrics.com/dnPGaM-HKk-e4_5WyTBQ9g.aspx;,
  LyricId   => 0,
  Song  => "Alright",
  SongRank  => 1,
  SongUrl   => "http://www.chartlyrics.com/app/add.aspx?a=187252=6521053;,
  TrackChecksum => "f697be2641f2b33026050e08d88bd74e",
  TrackId   => 6_521_053,
  },
  { "xsi:nil" => "true" },
  ],
  xmlns => "http://api.chartlyrics.com/;,
  "xmlns:xsd" => "http://www.w3.org/2001/XMLSchema;,
  "xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance;,
  } at 
C:\ProgramData\Squeezebox\Cache\InstalledPlugins/Plugins/MusicArtistInfo/Common.pm
 line 144.
  [20-04-05 11:42:38.0721] Plugins::MusicArtistInfo::Common::call (102) Async 
API call: GET 
http://api.chartlyrics.com/apiv1.asmx/GetLyric?lyricId=40150=32b2277dff6ac00d64c75fbe296ef8c8
  



If I look at the songlist for Pearl Jam at ChartLyrics it seems they
don't have those songs (yet). I saw that the one that worked came from
AZLyrics because the ChartLyrics lookup failed.
So maybe the only option for MAI would be to check more strictly that
the results match the request?

> 
> No, I don't respect the album for lyrics. The services I know likely 
> don't support albums either. And I'm assuming that a song's lyrics 
> doesn't change with albums on which it's being published. I know this 
> assumption is wrong, like any assumption around metadata and music 
> publishing. But anyway.
> 

Fair enough.



reinholdk's Profile: http://forums.slimdevices.com/member.php?userid=36070
View this thread: http://forums.slimdevices.com/showthread.php?t=99537

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


Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2020-04-05 Thread the_bat

Hi

Has anyone managed to get this to work?

I've downloaded the dmg file but when I try to run it I get the
"“Squeezelite” cannot be opened because the developer cannot be
verified" message.

Many thanks

Alan



the_bat's Profile: http://forums.slimdevices.com/member.php?userid=70024
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2020-04-05 Thread Michael Herger

Access Rate limit exceeded for:
tracks?ids=4i6LmGukU7aH3mrDmjPAtE%2C3llxqT4IdBS7i2CCIPImww%2C2oLyUsbt7CasNFN6kw5Quz%2


Did you have players with Spotify tracks in the queue before you updated 
LMS and/or the Spotty plugin?



Greetings from Switzerland,


Cheers from sunny Aargau :-)

--

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2020-04-05 Thread Bberger


Hi Michael, as per your request, here is a Spotty 4 error:

Access Rate limit exceeded for:
tracks?ids=4i6LmGukU7aH3mrDmjPAtE%2C3llxqT4IdBS7i2CCIPImww%2C2oLyUsbt7CasNFN6kw5Quz%2C5baXzOMmD0sf26hayRqfqI%2C4IhAzl3KH8P7KFJ5KfBnvy%2C3BQHpFgAp4l80e1XslIjNI%2C28k5och67vOsFtBRcYFSA6%2C72Z17vmmeQKAg8bptWvpVG%2C7e4Pftu2tzDeY0W0690OKQ%2C6k1I9gABiasGZiWWAosAEb%2C5JZWiZ8ePCWYqoX99fdUbB%2C56BCe0C6fzw4ieXcAUrya6%2C04rMpRstoJt3uvqyNGKczX%2C7jpLx7Y8GCLvXwSQZ6qhQf%2C1phRuf0KNLOFGzDVE2UYIv%2C1QFK0s1UWq08N7B0NuzyOJ%2C22MajnVQCIaHUq0EnI60A5%2C47JVgLUOFUp4iZ60wR5nv2%2C4EEIRy9rPPlsIVQntrVQrv%2C05fHQeRbCSjKVS6z0WbQKJ%2C034pSaP8kixElWnArAQFG1%2C2YdRHgjajslnkmygNxuLVW%2C0R8P9KfGJCDULmlEoBagcO%2C5kmcY3WszmHRbuNwng9ChG%2C0y5CnV2idm2KkQEudDjfDT%2C5sVyefkGgQeYCgnqr4KslQ%2C3KFPdcl0YlsBYsoqdne3cU%2C4omnfKQRBPbu7XuFpjcj2l%2C3PoZoHfvOHrptTZC6YN5cJ%2C5Iy1wdO0tMaHwKnfFYtlel%2C3JvKfv6T31zO0ini8iNItO%2C3tchJ8gDgMdaSxpaLxlr1F%2C6nMxTWYmd73Y1xuZglnlDl%2C6BrMEbPSSj55nQhkgf6DnE%2C0u4rkpmNtgcFxYHepnVF4v%2C0wDNCLHucgriGY8yKB7NR8%2C3z5V7oSggDeCPeEGiCIu83%2C0Wv9Ckm088qsVkMKPH170C%2C5fowoqhNzd6AaoAdi3e2p1%2C2R8O
 
TND6U54QGSev6xE8vj%2C0YywjDvFudcaHG74NuWISy%2C3JOVTQ5h8HGFnDdp4VT3MP%2C4at01lnsvYBraghirWeCjm%2C21HfUACOv1lgBiYocruoW8%2C65ANSaYbBQK6z8fOl0TWVd%2C0fCzdtJ90OOUw2vSTB3Qc2%2C54KFQB6N4pn926IUUYZGzK%2C6e7Eudq88wcygOphhtQnrN%2C0SibJYu5mSjZuawtNAMa2F%2C6hPlYSx7wsnDE48NypYeuT=from_token;
retry after 3 seconds. Please report this issue to me. Thanks!

And I'd like to thank you for all the work and dedication you put in
maintaining and enhancing the Squeezebox ecosystem.

Greetings from Switzerland,
Bernard



Bberger's Profile: http://forums.slimdevices.com/member.php?userid=48291
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-04-05 Thread MillmoorRon


The above seems to be true in the web interface only! 

I have just noticed that Squeeze Commander and Material Skin on my
Tablet both display the title in the correct format. (without the
additional by/from)

Orange Squeeze seems to be doing its own thing, but I'm not too worried
about that.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-04-05 Thread MillmoorRon


It's a standard Artists menu generated through Custom Browse settings
"create new menu".

In my Settings > Interface I have

Web Interface: Default
Show Artist with Albums: Disabled
Show Year with Albums: Disabled
Title Format: TITLE

If I change the title format it appends "by" (with no artist name) if
ARTIST is not present in the format, and "from" if ALBUM is not there!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] LmsUpdate and LmsRepack - Synology 8.0.* packages

2020-04-05 Thread Mr. Floppy


have the update error also at my 2419+



Logitech Media Server Version: 8.0.0-1584980764 on Synology
1x Touch - 2x Boom - 1x Radio + Raspberry PI (piCorePlayer) with TEAC
UD-503
Yamaha RX-A1080 + ANAVIEW AMS1000 + B 803 Diamond + Elac FS247

Mr. Floppy's Profile: http://forums.slimdevices.com/member.php?userid=29772
View this thread: http://forums.slimdevices.com/showthread.php?t=111876

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2020-04-05 Thread cpd73


Bug-fix release, main changes:

  
-  If showing dots for jumplist, only show 10 dots - therefore each
  jump is 10%
-  Fix retrieval of rescan options on LMS 7.x
-  Store album-sorts in defaults.
-  Fix setting window titlebar back to "Logitech Media Server" when no
  song.
-  Fix layout in 'Manage players' dialog.
-  Add monochrome pandora and iheartradio icons.
-  Always set axios/html language to LMS's.
-  Don't just use user-agent to detect mobile device, check if
  window.orientation is defined and window has 'ontouchstart' - should
  (hopefully) help with detecting iPadOS.
-  When clicking on add/play from sub-toolbar, in most app lists, add
  each listed item one by one.
-  If there is sufficient space, show LMS update text in toolbar.
-  Click on title (or subtitle on touch devices) in grid view will now
  show menu.
-  If adding add/play actions to toolbar, only add for app lists when
  first item is a playable track.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
2. Open browser's developer tools 3. Open console tab in developer tools
4. REQ/RESP messages sent to/from LMS will be logged here.

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] Qobuz.com streaming plugin

2020-04-05 Thread sveninndh


mherger wrote: 
> > Plugins::Qobuz::API->getAlbum() returns less information than the
> same
> > function call in version v1.6.0.
> 
> I wonder how you're using the plugin...
> 
> -- 
> 
> Michael

;););)

Thanks for your quick fix.



sveninndh's Profile: http://forums.slimdevices.com/member.php?userid=69030
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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