Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-06 Thread cpd73


Apesbrain wrote: 
> Would you consider doing the same with YEAR?

Not currently, as I see no need for "Year / Artists" - I can't imagine a
scenario when I'd ever need that. So, that would leave 'Albums' and
'Random Albums' - and I'm not sure about that.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 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

2021-03-06 Thread cpd73

Shozzer wrote: 
> the selection works some of the time but then breaks: an example of what
> has occurred is: ‘4 Selected Items (NaN:NaN)'

Where? Queue? Browse? Were the durations of the individual 4 items
valid? Did they all have a duration?



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 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: Music & Artist Information plugin

2021-03-06 Thread mps

mherger wrote: 
> > However, when checking for the existence of the file, it calls
> > Common::getLocalNameVariants which doesn't have the same
> transformation
> > of the name in the candidate list.
> 
> Hmm... that might be an excellent catch! Will have to look into this. 
> Thanks for the heads up!

Now this is interesting. Even after I made my change, it looks like it
is looking for the right file but doesn't not find it even thought it
exists! 

Here's an example where André Previn.jpg keeps getting added every
time. First, I added a logging statement to the loop in
Common::imageInFolder to print out the file that is being looked for, 

Code:

foreach my $ext ('jpg', 'JPG', 'jpeg', 'JPEG', 'png', 
'PNG', 'gif', 'GIF') {
  my $file = catdir($folder, $name . ".$ext");
  
  if (-f $file) {
  $img = $file;
  last;
  } else {
  main::INFOLOG && $log->info("$file does not exist"); # Added this
  }
  }
  


and it is indeed failing to find André Previn.jpg,

Code:

[21-03-06 21:36:10.2987] Plugins::MusicArtistInfo::Common::imageInFolder 
(76) /share/Public/LMS/ArtistPictures/André Previn.jpg does not exist
  


But it doesn't find it even though it is there and is findable by perl
with -f

Code:

[\w] #  perl -e 'if(-f "/share/Public/LMS/ArtistPictures/André 
Previn.jpg") { print "exists\n"; } else { print "does not exist\n"; }'
  exists
  


This seems completely contradictory. Am I missing anything?



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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] SuperDateTime Screensaver v5.11.0 - Date/Time/Weather/Sports/Stocks

2021-03-06 Thread BoomX2


MichaelPr wrote: 
> Hi together,
> 
> first of all - thanks for the great work on this plugin - I've just a
> small issue that I cannot solve. The "Sun" Icon in the Menu "Extras". It
> appears within Squeezer but using Jive/Jivelite directly on a Radios/
> Raspberry with pCP the is only a black/blanc square. Does anyone know
> what I'm doing wrong.
> 
> Btw, at the risk that it has already been discussed umpteen times here
> in the forum, how do I get "weather radar map" as a full screen when I
> click on it.
> 
> Best Regards
> Michael

You are not doing anything wrong.  SDT has a few bugs and you have
identified a couple of them.  The Sun icon will show up in the Extras
menu for the SDT entry when using Orange Squeeze or Squeezer, but not on
the Radio, Touch, or pCP Jivelite.  The full screen weather radar map
works on Orange Squeeze and Custom Clock screens, but not in the Extras
menu on Squeezer, Radio, Touch, or pCP Jivelite.  Only the icon size
view of the weather map works in these.



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-06 Thread Apesbrain


cpd73 wrote: 
> Bug-fix release, main changes:
> 
> >   > 
  -  Intercept genre list from 'More', and replace with Material's
  > category selection.
  > > > 

Would you consider doing the same with YEAR?

More > Year: 2021 > All Artists / Album Artists / Albums / Random
Albums

Thanks.



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

2021-03-06 Thread Shozzer

Hi Craig

Thanks very much for adding this feature. Sorry to be a pain but
unfortunately there seems to be a bug - the selection works some of the
time but then breaks: an example of what has occurred is: ‘4 Selected
Items (NaN:NaN)’

Regards,

Steve



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

2021-03-06 Thread Shozzer


Hi Craig

I have been having a play around with the CSS with mixed results. There
is an incredible amount of code to Material Skin!

I wonder if you would mind giving a couple of pointers please. The Now
Playing screen shows the Track, the Artists and the Album. What names
are allocated to these fields? I am curious to see whether it is
possible to make the Album in bold, or even maybe switch the order of
the fields around. I guess I would then need to add these to CSS
sub-folder under prefs/material skin or face the threat of changes being
removed when an update is made.

I have tried to add a custom colour but despite triple checking the
folder/file name and structure and clearing the cache the new colour has
failed to appear in settings.

Many thanks.

Steve



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

2021-03-06 Thread slartibartfast


Bukem wrote: 
> unfortunately material skin is borked for me until it automatically
> updates, i guessIf you add the repo to the plugins additional repositories 
> list the
update will appear immediately.
https://raw.githubusercontent.com/CDrummond/lms-material/master/public.xml

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

2021-03-06 Thread Bukem


slartibartfast wrote: 
> Pretty sure it is automatic.
> 
> Sent from my Pixel 3a using Tapatalk

unfortunately material skin is borked for me until it automatically
updates, i guess



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

2021-03-06 Thread slartibartfast


Bukem wrote: 
> How do I go about forcing LMS to check for plugin updates?Pretty sure it is 
> automatic.

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

2021-03-06 Thread Bukem


How do I go about forcing LMS to check for plugin updates?



Bukem's Profile: http://forums.slimdevices.com/member.php?userid=71028
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] Database Optimizer plugin

2021-03-06 Thread SpiderJon


Roland0 wrote: 
> Which perl version are you using?
> 
> Find your current module:
> > 
Code:

  >   > find /usr/share/squeezeboxserver -name SQLite.so
  > 

> > 
> and then run (substituting your path)
> > 
Code:

  >   > file 
/usr/share/squeezeboxserver/CPAN/arch/5.28/armv7l-linux-thread-multi/auto/DBD/SQLite/SQLite.so

> > 
> and post both results

find /usr/share/squeezeboxserver -name SQLite.so  gives


/usr/share/squeezeboxserver/CPAN/arch/5.20/arm-linux-gnueabi-thread-multi-64int/auto/DBD/SQLite/SQLite.so
/usr/share/squeezeboxserver/CPAN/arch/5.20/arm-linux-gnueabihf-thread-multi-64int/auto/DBD/SQLite/SQLite.so
/usr/share/squeezeboxserver/CPAN/arch/5.26/aarch64-linux-thread-multi/auto/DBD/SQLite/SQLite.so
/usr/share/squeezeboxserver/CPAN/arch/5.26/arm-linux-gnueabihf-thread-multi-64int/auto/DBD/SQLite/SQLite.so
/usr/share/squeezeboxserver/CPAN/arch/5.22/arm-linux-gnueabihf-thread-multi-64int/auto/DBD/SQLite/SQLite.so
/usr/share/squeezeboxserver/CPAN/arch/5.28/aarch64-linux-thread-multi/auto/DBD/SQLite/SQLite.so
/usr/share/squeezeboxserver/CPAN/arch/5.28/arm-linux-gnueabihf-thread-multi-64int/auto/DBD/SQLite/SQLite.so
/usr/share/squeezeboxserver/CPAN/arch/5.24/aarch64-linux-thread-multi/auto/DBD/SQLite/SQLite.so
/usr/share/squeezeboxserver/CPAN/arch/5.24/arm-linux-gnueabihf-thread-multi-64int/auto/DBD/SQLite/SQLite.so

Not sure why so many are listed (?), but according to my LMS info page:


Perl Version: 5.28.1 -
arm-linux-gnueabihf-thread-multi-64int

So I ran

file
/usr/share/squeezeboxserver/CPAN/arch/5.28/arm-linux-gnueabihf-thread-multi-64int/auto/DBD/SQLite/SQLite.so

which gives


/usr/share/squeezeboxserver/CPAN/arch/5.28/arm-linux-gnueabihf-thread-multi-64int/auto/DBD/SQLite/SQLite.so:
ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically
linked, stripped

Hope that's what you need.



Duet x 3, via various hi-fi. LMS on Raspberry Pi OS (Debian 10) on a
Pi4.

SpiderJon's Profile: http://forums.slimdevices.com/member.php?userid=21798
View this thread: http://forums.slimdevices.com/showthread.php?t=114067

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


Re: [SlimDevices: Plugins] playing lms on google home players

2021-03-06 Thread rfunk


kl78 wrote: 
> I'm using GH mini in my bathroom to play radio evertytime someone
> enters. It works flawlessly.

How is it detecting that someone enters the room and auto-triggering the
play? This thread tells how to play from LMS to the GH, but how did you
do the rest?



*library:* 22600 MP3, 6500 FLAC
*active hardware:* Transporter SE, Squeezebox Touch, 2 x Squeezebox
Radio, Squeezebox Boom
*sometimes casting to:* 3 x ChromeCast Audio, Nest Mini
*spares:* Squeezebox Radio, 3 x Squeezebox 3/Classic, SliMP3

rfunk's Profile: http://forums.slimdevices.com/member.php?userid=64212
View this thread: http://forums.slimdevices.com/showthread.php?t=113578

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


Re: [SlimDevices: Plugins] [Announce] SuperDateTime Screensaver v5.11.0 - Date/Time/Weather/Sports/Stocks

2021-03-06 Thread MichaelPr


Hi together,

first of all - thanks for the great work on this plugin - I've just a
small issue that I cannot solve. The "Sun" Icon in the Menu "Extras". It
appears within Squeezer but using Jive/Jivelite directly on a Radios/
Raspberry with pCP the is only a black/blanc square. Does anyone know
what I'm doing wrong.

Btw, at the risk that it has already been discussed umpteen times here
in the forum, how do I get "weather radar map" as a full screen when I
click on it.

Best Regards
Michael



:: LMS:
Logitech Media Server Version: 8.2.0 - 1614990095 @ Sat Mar 6 01:45:13
CET 2021

Squeeze-Players:
Duet - Controller Firmware: 8.0.1-r16835 Receiver Firmware: 77
2x Radio - Firmware: 8.0.1-r16835
RaspberryPi 2B - pCP 7.0.0/ SqueezeLite v1.9.8-1287-pCP
Transporter - Firmware: 87
Softsqueeze 3.9.2 on Win 10 / Squeezeplay 8.0.1r1337 on Win 10
Squeeze Player on S7/Android 8.0.0 

Controller:
Android Phone - Squeezer 2.2.3/ Material Skin 2.3.1::

MichaelPr's Profile: http://forums.slimdevices.com/member.php?userid=68465
View this thread: http://forums.slimdevices.com/showthread.php?t=112122

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


Re: [SlimDevices: Plugins] Announce: CDplayer plugin

2021-03-06 Thread MichaelPr


bpa wrote: 
> It's a well known bug and I've tried a few ways to fix it but they
> didn't work.  IIRC It's some sort of anomaly in LMS.  I think to fix it
> means rewriting a section of code but I'm not familiar with the
> necessary comet stuff so it would take time. Unfortunately, other things
> have always taken priority. Any time spent on it recently has been
> necessary just to kept plugin going as it is based on now very old tech.

Hi bpa, thanks a lot for this fast reply - and thank you so much to keep
this plugin with "old technologies" alive :-)



:: LMS:
Logitech Media Server Version: 8.2.0 - 1614990095 @ Sat Mar 6 01:45:13
CET 2021

Squeeze-Players:
Duet - Controller Firmware: 8.0.1-r16835 Receiver Firmware: 77
2x Radio - Firmware: 8.0.1-r16835
RaspberryPi 2B - pCP 7.0.0/ SqueezeLite v1.9.8-1287-pCP
Transporter - Firmware: 87
Softsqueeze 3.9.2 on Win 10 / Squeezeplay 8.0.1r1337 on Win 10
Squeeze Player on S7/Android 8.0.0 

Controller:
Android Phone - Squeezer 2.2.3/ Material Skin 2.3.1::

MichaelPr's Profile: http://forums.slimdevices.com/member.php?userid=68465
View this thread: http://forums.slimdevices.com/showthread.php?t=47288

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


Re: [SlimDevices: Plugins] [Announce] Database Optimizer plugin

2021-03-06 Thread Roland0


I've just published a new version. There are quite a number of changes,
so if you notice something, feel free to provide feedback.



'Various SW' (https://www.nexus0.net/pub/sw/): Web Interface | TUI |
Playlist Editor / Generator | Music Classification | Similar Music |
Announce | EventTrigger | DB Optimizer | Chiptunes | LMSlib2go | ...
'Various HowTos' (https://www.nexus0.net/pub/documents/LMS/): build a
self-contained LMS | Bluetooth/ALSA | Control LMS with any device | ...

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

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


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

2021-03-06 Thread Roland0


mherger wrote: 
> > - If "Find artwork online during library scan" is enabled, is this
> also
> > expired?
> 
> It's using 90 days. Assuming that you most likely would run a scan more
> 
> often.
> 
> But you haven't even enabled that option.
I'm just asking this because I'd like to understand how MAI uses the
imgproxy DB (same reason for the question about covers / artists pics in
the context of steaming services).



'Various SW' (https://www.nexus0.net/pub/sw/): Web Interface | TUI |
Playlist Editor / Generator | Music Classification | Similar Music |
Announce | EventTrigger | DB Optimizer | Chiptunes | LMSlib2go | ...
'Various HowTos' (https://www.nexus0.net/pub/documents/LMS/): build a
self-contained LMS | Bluetooth/ALSA | Control LMS with any device | ...

Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808
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: CDplayer plugin

2021-03-06 Thread bpa


MichaelPr wrote: 
> Does anyone see this behaviour too? 
It's a well known bug and I've tried a few ways to fix it but they
didn't work.  IIRC It's some sort of anomaly in LMS.  I think to fix it
means rewriting a section of code but I'm not familiar with the
necessary comet stuff so it would take time. Unfortunately, other things
have always taken priority.



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-06 Thread hsmeets


After update no issues anymore. Thanks!!



does the all-black SB sound better than the white SB?

hsmeets's Profile: http://forums.slimdevices.com/member.php?userid=9716
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: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2021-03-06 Thread MichaelPr


Hi together,

first of all - thanks for the great work on this plugin - I've just a
small issue that I cannot solve. The "Sun" Icon i the Menu "Extras". It
appears within Squeezer but using Jive/Jivelite directly on a Radios/
Raspberry with pCP the is only a black/blanc square. Does anyone know
what I'm doing wrong.

Btw, at the risk that it has already been discussed umpteen times here
in the forum, how do I get "weather radar map" as a full screen when I
click on it.

Best Regards
Michael



:: LMS:
Logitech Media Server Version: 8.2.0 - 1614990095 @ Sat Mar 6 01:45:13
CET 2021

Squeeze-Players:
Duet - Controller Firmware: 8.0.1-r16835 Receiver Firmware: 77
2x Radio - Firmware: 8.0.1-r16835
RaspberryPi 2B - pCP 7.0.0/ SqueezeLite v1.9.8-1287-pCP
Transporter - Firmware: 87
Softsqueeze 3.9.2 on Win 10 / Squeezeplay 8.0.1r1337 on Win 10
Squeeze Player on S7/Android 8.0.0 

Controller:
Android Phone - Squeezer 2.2.3/ Material Skin 2.3.1::

MichaelPr's Profile: http://forums.slimdevices.com/member.php?userid=68465
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: CDplayer plugin

2021-03-06 Thread MichaelPr


Hi Guys,

I just figured out a behaviour that I could not solve. To play a whole
CD with the CDPlayer plugin is possible by using LMS WebInterface
(Material/ default), but not from Squeezeplay/OS. So e.g. Squeezer does
not work. On Jive/ Jivelite the context menu (e.g. long press) shows an
empty result instead of play, ... with Squeezer pressing the 3dots
nothing happens and the debuglog says nothing :-( To play title by title
is still fine.

[21-03-06 21:50:24.0985] Plugins::CDplayer::CDhandler::renderAsOPML
(651) 
No. 17 This Cowboy Song BY Sting
[21-03-06 21:50:24.1444]
Plugins::CDplayer::Plugin::ReadCDTOCSuccessCLICallback (310) CDplayer -
executing XMLbrowser cliQuery with MB results

Does anyone see this behaviour too? 

Regards
Michael



:: LMS:
Logitech Media Server Version: 8.2.0 - 1614990095 @ Sat Mar 6 01:45:13
CET 2021

Squeeze-Players:
Duet - Controller Firmware: 8.0.1-r16835 Receiver Firmware: 77
2x Radio - Firmware: 8.0.1-r16835
RaspberryPi 2B - pCP 7.0.0/ SqueezeLite v1.9.8-1287-pCP
Transporter - Firmware: 87
Softsqueeze 3.9.2 on Win 10 / Squeezeplay 8.0.1r1337 on Win 10
Squeeze Player on S7/Android 8.0.0 

Controller:
Android Phone - Squeezer 2.2.3/ Material Skin 2.3.1::

MichaelPr's Profile: http://forums.slimdevices.com/member.php?userid=68465
View this thread: http://forums.slimdevices.com/showthread.php?t=47288

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


Re: [SlimDevices: Plugins] Is musicip still working?

2021-03-06 Thread Matt Drown


mamema wrote: 
> i'm now finished with my fingerprinting task and want to use musicip
> 
> - headless server running
> - musicip plugin enabled
> - LMS imported musicip information
> - dynamic mix plugin enabled
> - Sugarcube spicefly plugin enabled (requested evaluation license
> several days ago, rebooted etc. Author contacted, nothing, no license,
> is this still working?)
> 
> As i'm using mainly the UPNP bridge and the webinterface, where is the
> musicip mix menu?


Can you get to the headless server webserver on your network, and does
it have values listed in "Mixable Songs"?  Default port is 10002
Can LMS access the headless server over the network (or localhost)?  On
the same port.
Dynamic Mix plugin isn't used with Sugarcube, and I think it's
effectively deprecated.  I don't think I ever got that working
satisfactorily, it's not installed on my server.
Does Sugarcube show up in advanced settings->license manager?  Does
sugarcube show up in My Music?  And does it show up in a per-player
configuration?

The sugarcube method doesn't import any of the muscip info into LMS, it
uses the headless server to make queries against the independent
database.  You need to ensure that the directory structure is the same
(or use the Sugarcube file renaming to fix).



Matt Drown's Profile: http://forums.slimdevices.com/member.php?userid=69476
View this thread: http://forums.slimdevices.com/showthread.php?t=113991

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


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

2021-03-06 Thread d6jg


jcmpgp wrote: 
> I'm almost There. 
> I see the files downloading and I can edit them.
> On the other hand ,I have created a folder for an album and a .txt for
> the song it doesn't seem to be recognized.

File name has to be an exact match and the file must be readable by the
user that creates the auto generated files. The MAI lookup occurs when
you attempt to view lyrics for the track and iirc works in the following
order 

Embedded lyrics
Local Lyrics store
Internet lookup



VB2.4[/B] STORAGE *QNAP TS419P (NFS)
[B]Living Room* Joggler & Pi4/Khadas  -> Onkyo TXNR686 -> Celestion F20s

*Office* Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s 
*Dining Room* SB Boom 
*Kitchen* UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
*Bedroom (TV) & Bathroom* SB Touch ->Denon AVR ->Mordaunt Short M10s +
Kef ceiling speakers
*Guest Room* Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS

d6jg's Profile: http://forums.slimdevices.com/member.php?userid=44051
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: Music & Artist Information plugin

2021-03-06 Thread jcmpgp

d6jg wrote: 
> Again yes.
> Look at the MAI settings. There is an option to set a local lyrics store
> (must be a writable location). If you set it up you will find it gets
> populated with lyrics as you play tracks and view the lyrics. It is then
> possible to add your own lyrics for a given track or correct what’s
> there from the download.
I'm almost There. 
I see the files downloading and I can edit them.
On the other hand ,I have created a folder for an album and a .txt for
the song it doesn't seem to be recognized.



jcmpgp's Profile: http://forums.slimdevices.com/member.php?userid=68895
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: Material Skin

2021-03-06 Thread slartibartfast


billtsig wrote: 
> Hello 
> After the last update 
> Play pouse button and volume does not respond when using tunein ,
> everything is ok on local files 
> 
> Thank youSeems OK for me, have you cleared the 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] Announce: Material Skin

2021-03-06 Thread billtsig


Hello 
After the last update 
Play pouse button and volume does not respond when using tunein ,
everything is ok on local files 

Thank you



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

2021-03-06 Thread cpd73


Bug-fix release, changes:

  
-  Fix blank queue, etc.
-  Remove longpress to open advanced search, breaks back button?



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 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: Music & Artist Information plugin

2021-03-06 Thread d6jg


jcmpgp wrote: 
> Thanks you. Where is the MAI Settings ?

Settings / Advanced / Music & Artist Info



VB2.4[/B] STORAGE *QNAP TS419P (NFS)
[B]Living Room* Joggler & Pi4/Khadas  -> Onkyo TXNR686 -> Celestion F20s

*Office* Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s 
*Dining Room* SB Boom 
*Kitchen* UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
*Bedroom (TV) & Bathroom* SB Touch ->Denon AVR ->Mordaunt Short M10s +
Kef ceiling speakers
*Guest Room* Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS

d6jg's Profile: http://forums.slimdevices.com/member.php?userid=44051
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: Music & Artist Information plugin

2021-03-06 Thread jcmpgp

d6jg wrote: 
> Again yes.
> Look at the MAI settings. There is an option to set a local lyrics store
> (must be a writable location). If you set it up you will find it gets
> populated with lyrics as you play tracks and view the lyrics. It is then
> possible to add your own lyrics for a given track or correct what’s
> there from the download.

Thanks you. Where is the MAI Settings ?



jcmpgp's Profile: http://forums.slimdevices.com/member.php?userid=68895
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: Music & Artist Information plugin

2021-03-06 Thread d6jg

jcmpgp wrote: 
> Thanks you. It's OK pour Reviews and Artist.:)
> Is it possible for Lyrics (one lyrics for one file)
> 
> Cheers

Again yes.
Look at the MAI settings. There is an option to set a local lyrics store
(must be a writable location). If you set it up you will find it gets
populated with lyrics as you play tracks and view the lyrics. It is then
possible to add your own lyrics for a given track or correct what’s
there from the download.



VB2.4[/B] STORAGE *QNAP TS419P (NFS)
[B]Living Room* Joggler & Pi4/Khadas  -> Onkyo TXNR686 -> Celestion F20s

*Office* Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s 
*Dining Room* SB Boom 
*Kitchen* UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
*Bedroom (TV) & Bathroom* SB Touch ->Denon AVR ->Mordaunt Short M10s +
Kef ceiling speakers
*Guest Room* Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS

d6jg's Profile: http://forums.slimdevices.com/member.php?userid=44051
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: Material Skin

2021-03-06 Thread d6jg


cpd73 wrote: 
> Not your fault, but mine. Silly mistake really.

I expect you know but everything is working fine when used on a iPhone
but I do see the issues mentioned when I open on an iPad



VB2.4[/B] STORAGE *QNAP TS419P (NFS)
[B]Living Room* Joggler & Pi4/Khadas  -> Onkyo TXNR686 -> Celestion F20s

*Office* Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s 
*Dining Room* SB Boom 
*Kitchen* UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
*Bedroom (TV) & Bathroom* SB Touch ->Denon AVR ->Mordaunt Short M10s +
Kef ceiling speakers
*Guest Room* Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS

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

2021-03-06 Thread slartibartfast


cpd73 wrote: 
> This will be the same issue reported above. I made a change to fix
> missing bios with Qobuz, but this change resulted in an error parsing
> status responses under certain scenarios.Yes I realised that after reading 
> the other posts. Something else I just
noticed is that the back button doesn't work. 

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

2021-03-06 Thread cpd73


d6jg wrote: 
> Sorry all

Not your fault, but mine. Silly mistake really.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 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

2021-03-06 Thread cpd73


d6jg wrote: 
> Looks like my Qobuz / MAI issue is fixed.

At least something is working! :)

d6jg wrote: 
> What do you mean by More replace Genre with Categories? Have I missed
> Categories whatever you mean by that?

When browsing 'My Music / Genres / ' Material will show a
list of categories to show in the genre; Artists, Albums, Random Albums,
Composers, etc. The change is the when you click a track in (e.g.) the
Queue, select 'More', then select 'Genre: ' in the browse
view, you will now see the same categories as if you had browsed into
the genre.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 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

2021-03-06 Thread d6jg


cpd73 wrote: 
> Aarg!!! A late fix for d6jg's Qovoz MAI issue caused this! Will fix,
> sorry :(
> .

Sorry all



VB2.4[/B] STORAGE *QNAP TS419P (NFS)
[B]Living Room* Joggler & Pi4/Khadas  -> Onkyo TXNR686 -> Celestion F20s

*Office* Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s 
*Dining Room* SB Boom 
*Kitchen* UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
*Bedroom (TV) & Bathroom* SB Touch ->Denon AVR ->Mordaunt Short M10s +
Kef ceiling speakers
*Guest Room* Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS

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

2021-03-06 Thread slartibartfast


The Groundsman wrote: 
> Since upgrade to 2.3.2 I can only use Spotty with the default skin. in
> Material it shows as nothing playing on all players. I can not add
> spotty songs or playlist to the queue via material either. Default view
> is not impacted. Have tried restarting Server but issue persists.
> 
> Server
> 
> Version: 8.2.0 - 1614990095 @ Sat Mar 6 01:33:04 WEST 2021
> Operating system: Windows 10 - EN - cp1252
> Platform Architecture: 586
> Perl Version: 5.14.1 - MSWin32-x86-multi-thread
> Audio::Scan: 1.02
> IO::Socket::SSL: 2.068
> Database Version: DBD::SQLite 1.58 (sqlite 3.22.0)That is strange. If you 
> play from Spotty the track plays but is not
shown in the now playing screen.

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

2021-03-06 Thread The Groundsman


Since upgrade to 2.3.2 I can only use Spotty with the default skin. in
Material it shows as nothing playing on all players. I can not add
spotty songs or playlist to the queue via material either. Default view
is not impacted. Have tried restarting Server but issue persists.

Server

Version: 8.2.0 - 1614990095 @ Sat Mar 6 01:33:04 WEST 2021
Operating system: Windows 10 - EN - cp1252
Platform Architecture: 586
Perl Version: 5.14.1 - MSWin32-x86-multi-thread
Audio::Scan: 1.02
IO::Socket::SSL: 2.068
Database Version: DBD::SQLite 1.58 (sqlite 3.22.0)



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

2021-03-06 Thread cpd73


reinholdk wrote: 
> Same here with v2.3.2, but only for the first player in the list. Works
> for the other players.

Aarg!!! A late fix for d6jg's Qovoz MAI issue caused this! Will fix,
sorry :(

reinholdk wrote: 
> In addition, when browsing e.g. in the new music list and trying to go
> back using the back arrow in the upper left corner, the search prompt is
> opened instead and you cannot go back.
> 
> Edit: it seems only the 'New Music' list affected when it's pinned to
> the home screen.

I can see this too! Will fix.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 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

2021-03-06 Thread reinholdk


hsmeets wrote: 
> Same here, now playing empty and the playlist too.
> 

Same here with v2.3.2, but only for the first player in the list. Works
for the other players.

In addition, when browsing e.g. in the new music list and trying to go
back using the back arrow in the upper left corner, the search prompt is
opened instead and you cannot go back.



reinholdk's Profile: http://forums.slimdevices.com/member.php?userid=36070
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: Music & Artist Information plugin

2021-03-06 Thread jcmpgp


jcmpgp wrote: 
> Hello,
> 
> Is it possible to add information to a file if it is missing from
> Last.fm  Music and Music Artist Information is reading the file ?
> 
> Cheers

Thanks you. It's OK pour Reviews and Artist.:)
Is it possible for Lyrics (one lyrics for one file)

Cheers



jcmpgp's Profile: http://forums.slimdevices.com/member.php?userid=68895
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: Material Skin

2021-03-06 Thread staresy


Hi Craig,
Material has become so advanced it has virtually all the functionality
of the default web UI now (and in many cases much more). So much so that
I use it as go to interface for LMS music control from PC or mobile. 

I also use for near enough all management/housekeeping tasks as well
now, the only thing that it seems to struggle with (for me at least,
unless I'm mossing something), is informing me of plugin updates. For
this I have to return to the default web UI.

The green update icon appears on the material info tab, but this more
often than not is referring to an LMS update and not a plugin update.
Sometimes plugin updates seem to be missed. Is it possible to improve
this area slightly, possibly colour coding the update badge to
distinguish between LMS or plugin updates? (or perhaps have the option
to supress the LMS update badge, as this appears quite often and I
suspect most people don't want/need to update LMS that often). Just my
thoughts.

Keep up the good work.



location 1: lms 8.0 on win 10 brix server, x2 sb radios, x1 touch, x1
controller : location 2: lms 8.0 on win 10 brix server, x2 sb radios, x1
duet receiver, x1 controller : alexa mediaserver smart skill, material
android, squeezelitex control

staresy's Profile: http://forums.slimdevices.com/member.php?userid=807
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] SuperDateTime Screensaver v5.11.0 - Date/Time/Weather/Sports/Stocks

2021-03-06 Thread BoomX2


hestbank wrote: 
> No I am afraid not, whether I use %!w or the %j that is also offered in
> the drop down list. No value is returned. If I use %w it just returns
> the current wind speed value irrespective of the period.
> 
> Thanks.

Thanks for the feedback.  I'll finish implementing the forecasted wind
speeds in the next few days and will test it before releasing.



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-06 Thread kidstypike


anadigi wrote: 
> After upgrade to this version, the players queue disappear and cannot
> control any song!  However, if run from http://lms address:9000 works!

Maybe?

33668


+---+
|Filename: queue.jpg|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=33668|
+---+


*Server - LMS 8.2.0 *Pi4B 4GB/Argon one case/pCP v7.0.1 - 75K library,
playlists & LMS cache on SSD (ntfs)
*Study -* Pi3B/pCP 7.0.1/pi screen/Hifiberry DAC HAT Ruark MR1 Mk2
*Lounge* - Pi2/pCP 6.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Garage* - Squeezebox Boom + Fostex sub
*Dining Room* - Pi3B/Bluetooth/Echo Show 8

*Spares* - 2xTouch, 1xSB Radio. 1xSB3, 6xRPi

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

2021-03-06 Thread hsmeets


Same here, now playing empty and the playlist too.

This is on iPad iOS 14.

Screen recording
https://share.icloud.com/photos/0lQ1IS9XFN_KA3gUj1alzJn2A



does the all-black SB sound better than the white SB?

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

2021-03-06 Thread anadigi


cpd73 wrote: 
> Bug-fix release, main changes:
> 
> >   > 
  -  Allow certain shortcuts (e.g. inc/dec volume) to repeat every
  > 300ms when pressed.
  -  Show buttons for application, player, and server settings in
  > 'Settings' dialog toolbar if there is space.
  -  Add mouse-wheel support to volume sliders in 'Manage players'
  > dialog and volume popup for synced players.
  -  Fix clipping of some icons in menus.
  -  Show total duration of selected items, if items have duration.
  -  Intercept genre list from 'More', and replace with Material's
  > category selection.
  -  Long-press on power buttons in players menu to show sleep
  > settings for player.
  -  Fix closing zoomed now-playing image causing browse to navigate
  > back.
  -  Only look for local files if track URLs starts with file://
  -  Long-press on search button to go straight to advanced search.
  -  Need to split (e.g.) trackartist_ids if present, even if
  > trackartist is not present.
  > > > 

After upgrade to this version, the players queue disappear and cannot
control any song!  However, if run from http://lms address:9000 works!



anadigi's Profile: http://forums.slimdevices.com/member.php?userid=65102
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: Music & Artist Information plugin

2021-03-06 Thread mps

carsten_h wrote: 
> The filename in the filesystem is still:
> "José Carreras.jpg"
> and at the second scan, this file ist still overwritten, so this change
> does not work for me. :-(
> 

That name is what is expected, but I wonder why it overwrite it. That
isn’t happening for me.  I’ll try to test with that particular artist
name.



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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: Music & Artist Information plugin

2021-03-06 Thread mps

mherger wrote: 
> > My scans are spending over 80% of their time redownloading pictures
> in
> > Artist Picture Lookup. I suspect the problem is that all of the files
> > that get redownloaded have non-ASCII characters in them as shown
> below:
> 
> Where are you running your LMS? Where are your files stored? You're 
> accessing a network share from Windows, aren't you? There also might be
> 
> a Samba configuration issue.

My QNAP NAS is both storing the files and running LMS. Windows isn’t
involved at all (except to creat a screenshot of the directory)



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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: Material Skin

2021-03-06 Thread d6jg


cpd73 wrote: 
> Bug-fix release, main changes:
> 
> >   > 
  -  Allow certain shortcuts (e.g. inc/dec volume) to repeat every
  > 300ms when pressed.
  -  Show buttons for application, player, and server settings in
  > 'Settings' dialog toolbar if there is space.
  -  Add mouse-wheel support to volume sliders in 'Manage players'
  > dialog and volume popup for synced players.
  -  Fix clipping of some icons in menus.
  -  Show total duration of selected items, if items have duration.
  -  Intercept genre list from 'More', and replace with Material's
  > category selection.
  -  Long-press on power buttons in players menu to show sleep
  > settings for player.
  -  Fix closing zoomed now-playing image causing browse to navigate
  > back.
  -  Only look for local files if track URLs starts with file://
  -  Long-press on search button to go straight to advanced search.
  -  Need to split (e.g.) trackartist_ids if present, even if
  > trackartist is not present.
  > > > 

Looks like my Qobuz / MAI issue is fixed. What do you mean by More
replace Genre with Categories? Have I missed Categories whatever you
mean by that?



VB2.4[/B] STORAGE *QNAP TS419P (NFS)
[B]Living Room* Joggler & Pi4/Khadas  -> Onkyo TXNR686 -> Celestion F20s

*Office* Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s 
*Dining Room* SB Boom 
*Kitchen* UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
*Bedroom (TV) & Bathroom* SB Touch ->Denon AVR ->Mordaunt Short M10s +
Kef ceiling speakers
*Guest Room* Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS

d6jg's Profile: http://forums.slimdevices.com/member.php?userid=44051
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] Ratings Light

2021-03-06 Thread afriend


mvn2009 wrote: 
> I'm using Ratings Light as a replacement for Trackstat as this plugin is
> a to heavy for my purpose and is also no longer supported. I was
> wondering if there is a possibility to set a pre-defined rating for
> songs which haven't been rating yet and get this pre-defined rating once
> they have been played. This way I can use the manual rating only for
> songs I don't like or like very much. Further all my songs get rated
> once they have been played once so I can get to the songs which haven't
> been played yet. Maybe this is not the purpose for this plugin or there
> are better ways to do this.
You're right, this is not really the purpose of this plugin and also
maybe a bit too complicated a solution for what you're trying to
achieve.
I think -play count- and -(smart) playlists- is the way to go here.

To keep track of which songs you have or haven't played yet you're
better off using the *play count* value. It's stored in the LMS
persistent database and survives rescans unless the file path is
changed.
You can create smart playlists with the *SQLplaylist* plugin that
contain only tracks that haven't been played yet or maybe a mix of X%
played songs and Y% songs not played yet. You have a lot of options
there.
I use the *Dynamic Playlist* plugin to handle my smart playlists.



afriend's Profile: http://forums.slimdevices.com/member.php?userid=39306
View this thread: http://forums.slimdevices.com/showthread.php?t=113344

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-06 Thread cpd73


Bug-fix release, main changes:

  
-  Allow certain shortcuts (e.g. inc/dec volume) to repeat every 300ms
  when pressed.
-  Show buttons for application, player, and server settings in
  'Settings' dialog toolbar if there is space.
-  Add mouse-wheel support to volume sliders in 'Manage players'
  dialog and volume popup for synced players.
-  Fix clipping of some icons in menus.
-  Show total duration of selected items, if items have duration.
-  Intercept genre list from 'More', and replace with Material's
  category selection.
-  Long-press on power buttons in players menu to show sleep settings
  for player.
-  Fix closing zoomed now-playing image causing browse to navigate
  back.
-  Only look for local files if track URLs starts with file://
-  Long-press on search button to go straight to advanced search.
-  Need to split (e.g.) trackartist_ids if present, even if
  trackartist is not present.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 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

2021-03-06 Thread d6jg


@craig
Email sent



VB2.4[/B] STORAGE *QNAP TS419P (NFS)
[B]Living Room* Joggler & Pi4/Khadas  -> Onkyo TXNR686 -> Celestion F20s

*Office* Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s 
*Dining Room* SB Boom 
*Kitchen* UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
*Bedroom (TV) & Bathroom* SB Touch ->Denon AVR ->Mordaunt Short M10s +
Kef ceiling speakers
*Guest Room* Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS

d6jg's Profile: http://forums.slimdevices.com/member.php?userid=44051
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: Music & Artist Information plugin

2021-03-06 Thread carsten_h

mps wrote: 
> and it seems to work!

The filename in the filesystem is still:
"José Carreras.jpg"
and at the second scan, this file ist still overwritten, so this change
does not work for me. :-(

But interesting is the explicit search for Peter Gabriel and The Beatles
White Album in this file at the beginning. :-)



pi4 4gb picoreplayer with lms and squeezelite for usb inside an argon
one case
pi3b+ (7\" display, hifiberry dac+ pro) picoreplayer with
squeezlite/jivelite for hifiberry and bluetooth headphone inside a
smartipi touch case
two airport express
ikea symfonisk

carsten_h's Profile: http://forums.slimdevices.com/member.php?userid=69113
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] Ratings Light

2021-03-06 Thread mvn2009


I'm using Ratings Light as a replacement for Trackstat as this plugin is
a to heavy for my purpose and is also no longer supported. I was
wondering if there is a possibility to set a pre-defined rating for
songs which haven't been rating yet and get this pre-defined rating once
they have been played. This way I can use the manual rating only for
songs I don't like or like very much. Further all my songs get rated
once they have been played once so I can get to the songs which haven't
been played yet. Maybe this is not the purpose for this plugin or there
are better ways to do this.



mvn2009's Profile: http://forums.slimdevices.com/member.php?userid=33172
View this thread: http://forums.slimdevices.com/showthread.php?t=113344

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.4 - more personalised content

2021-03-06 Thread billtsig


hi everyone 

Today i found another small bug, when i am using spottify connect and
the song ends some times LMS repeat it from the begining (on the spotify
app the song is stopped) 

thank you 
Vasilios



billtsig's Profile: http://forums.slimdevices.com/member.php?userid=71096
View this thread: http://forums.slimdevices.com/showthread.php?t=112962

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


Re: [SlimDevices: Plugins] ANNOUNCE: RadioNet plugin to enable playing stream from the radio.net service

2021-03-06 Thread bpa


Finger trouble - put the updated repo xml file into wrong SF directory
so LMS repository update process didn't see the update.

Hopefully this time update will appear within a few hours.



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

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


Re: [SlimDevices: Plugins] [Announce] Database Optimizer plugin

2021-03-06 Thread mamema


mherger wrote: 
> > 
> Ah, no, not with the docker image. You'd have to build your own (based 
> on ours), or run LMS without docker or whatever.

No hat was not the intention of this test, so we're staying with sqlite
then.



mamema's Profile: http://forums.slimdevices.com/member.php?userid=44662
View this thread: http://forums.slimdevices.com/showthread.php?t=114067

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


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

2021-03-06 Thread d6jg


jcmpgp wrote: 
> Hello,
> 
> Is it possible to add information to a file if it is missing from
> Last.fm  Music and Music Artist Information is reading the file ?
> 
> Cheers

Yes. Create a review.html file and put it in the folder with your album
tracks. Next scan should pick it up.
Same thing for bio - artist.html (from memory) but in the artist folder
if you have more than one album by said artist.



VB2.4[/B] STORAGE *QNAP TS419P (NFS)
[B]Living Room* Joggler & Pi4/Khadas  -> Onkyo TXNR686 -> Celestion F20s

*Office* Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s 
*Dining Room* SB Boom 
*Kitchen* UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
*Bedroom (TV) & Bathroom* SB Touch ->Denon AVR ->Mordaunt Short M10s +
Kef ceiling speakers
*Guest Room* Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS

d6jg's Profile: http://forums.slimdevices.com/member.php?userid=44051
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: RadioNet plugin to enable playing stream from the radio.net service

2021-03-06 Thread bpa


staresy wrote: 
> This hasn't appeared in the repo yet.

I'll check up.
It's been a while since I updated the plugin and the "new" automated
system started arouns the same time so I may have forgotten something.



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-06 Thread hisdudity


cpd73 wrote: 
> AFAICS, LMS does not provide the required info when listing albums - so,
> no.

could this be done when generating thumbnails ?



hisdudity's Profile: http://forums.slimdevices.com/member.php?userid=62951
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: Music & Artist Information plugin

2021-03-06 Thread jcmpgp


Hello,

Is it possible to add information to a file if it is missing from
Last.fm  Music and Music Artist Information is reading the file ?

Cheers



jcmpgp's Profile: http://forums.slimdevices.com/member.php?userid=68895
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: Material Skin

2021-03-06 Thread Paul Webster


Maybe it needs to explicitly check for keycode 179 (play/pause toggle).

https://developer.amazon.com/docs/fire-tv/supporting-controllers-in-web-apps.html



Paul Webster
http://dabdig.blogspot.com
author of \"now playing\" plugins covering radio france (fip etc), kcrw,
supla finland, abc australia, cbc/radio-canada and rte ireland

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

2021-03-06 Thread Huey11


Huey11 wrote: 
> Wow, glad I read this: the skin is super anyway, and now with the APK I
> can even use it on my Fire Stick 4K to control my player on TV screen! 
> Unfortunately the player controls seem not to function. When I select
> play/pause, return or next, nothing happens. Strang e (..?) enough, I
> like to add the stop button as well, and that one does work. 
> 
> Can it be that this is a Fire Stick (4K) thingy and it does work on
> general Android TV? Can someone also using it on Firestick or Android TV
> maybe advice on this?
> 
> Regards

Ok, no-one seems to experience this like I do or simply do not use Fire
Sticks for this... 

Tried to debug the APK running on the firestick. Can navigate to the
controls but in the developer console I do not see any signals coming
in. Guess I am doing it wrong.  
The controls do work with the webapp running in silk browser, but then I
am having trouble scrolling.

Guess the Fire Stick Android TV version works differently. 
Will need to return to how the debugging works and maybe revisit some
time late.



Huey11's Profile: http://forums.slimdevices.com/member.php?userid=67632
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] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-03-06 Thread Shozzer


Shozzer wrote: 
> What size library do you have? Just curious as mine takes about 30
> minutes on Windows.

Sorry, I take that back. The last nightly full rescan took 12 minutes.



Shozzer's Profile: http://forums.slimdevices.com/member.php?userid=58726
View this thread: http://forums.slimdevices.com/showthread.php?t=113479

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


Re: [SlimDevices: Plugins] [Announce] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-03-06 Thread Shozzer


AlecSp wrote: 
> If you're asking which to use (it wasn't clear), while the 3B is
> perfectly serviceable, just get a 4.  I moved from a 3B to a 4 last year
> and full library scans went down from 20 mins to under 1 min, and the
> interface was noticeably faster - much improved processor, 2 USB 3
> ports, faster networking.  And all this for no noticeable increase in
> power consumption.  The only reason I'd use an older Pi is if I had one
> knocking around doing nothing and was a real tightwad!

What size library do you have? Just curious as mine takes about 30
minutes on Windows.



Shozzer's Profile: http://forums.slimdevices.com/member.php?userid=58726
View this thread: http://forums.slimdevices.com/showthread.php?t=113479

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


Re: [SlimDevices: Plugins] [Announce] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-03-06 Thread AlecSp


stop-spinning wrote: 
> Oh and Pi 3 or Pi 4 by the way - I will only be using coax out?
If you're asking which to use (it wasn't clear), while the 3B is
perfectly serviceable, just get a 4.  I moved from a 3B to a 4 last year
and full library scans went down from 20 mins to under 1 min, and the
interface was noticeably faster - much improved processor, 2 USB 3
ports, faster networking.  And all this for no noticeable increase in
power consumption.  The only reason I'd use an older Pi is if I had one
knocking around doing nothing and was a real tightwad!



Server: LMS 8.1.1 on piCorePlayer 7.0.0 on Pi 4B 2GB with library on
512GB USB drive
Listening on: 2 x Squeezebox Radios 8.0.1 , and direct from the Pi using
a Behringer UCA202 USB audio interface

AlecSp's Profile: http://forums.slimdevices.com/member.php?userid=42763
View this thread: http://forums.slimdevices.com/showthread.php?t=113479

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


Re: [SlimDevices: Plugins] [Announce] Database Optimizer plugin

2021-03-06 Thread Michael Herger

there is no MySQL driver around.installing it? Hmm, its docker...
you are maintaining the docker image, sure for fun to test, but you
still sure it should work?


Ah, no, not with the docker image. You'd have to build your own (based 
on ours), or run LMS without docker or whatever.

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-06 Thread cpd73


hisdudity wrote: 
> hi, does anyone know if this is ( or would be ) possible to display an
> overlay on album cover showing files quality (mp3, cd, hi-res)

AFAICS, LMS does not provide the required info when listing albums - so,
no.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 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] Database Optimizer plugin

2021-03-06 Thread mamema


mherger wrote: 
> > this doesn't seem to be the case with 8.2.
> [/color]
> 
> Double/triple check the connection string. Setting LMS up to use MySQL 
> might be fiddly. But it should definitely work to a certain degree. 
> Meaning there might be bugs around the SQL dialect being used or 
> whatever. But it should start up and scan. I know there are user doing
> this.

i found something:
setting dbtype to MySQL in server.prefs prevented LMS to revert back to
sqlite, but :

Perhaps the DBD::mysql perl module hasn't been fully installed,
or perhaps the capitalisation of 'mysql' isn't right.
Available drivers: DBM, ExampleP, File, Gofer, Proxy, SQLite, Sponge.
at /lms/CPAN/DBIx/Class/Storage/DBI.pm line 999.
[21-03-06 10:47:56.1810] Slim::Schema::Storage::throw_exception (121)
Backtrace

there is no MySQL driver around.installing it? Hmm, its docker...
you are maintaining the docker image, sure for fun to test, but you
still sure it should work?



mamema's Profile: http://forums.slimdevices.com/member.php?userid=44662
View this thread: http://forums.slimdevices.com/showthread.php?t=114067

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


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

2021-03-06 Thread Michael Herger

However, when checking for the existence of the file, it calls
Common::getLocalNameVariants which doesn't have the same transformation
of the name in the candidate list.


Hmm... that might be an excellent catch! Will have to look into this. 
Thanks for the heads up!

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


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

2021-03-06 Thread Michael Herger

- If "Find artwork online during library scan" is enabled, is this also
expired?


It's using 90 days. Assuming that you most likely would run a scan more 
often.


But you haven't even enabled that option.
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


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

2021-03-06 Thread Michael Herger

My scans are spending over 80% of their time redownloading pictures in
Artist Picture Lookup. I suspect the problem is that all of the files
that get redownloaded have non-ASCII characters in them as shown below:


Where are you running your LMS? Where are your files stored? You're 
accessing a network share from Windows, aren't you? There also might be 
a Samba configuration issue.

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


Re: [SlimDevices: Plugins] [Announce] Database Optimizer plugin

2021-03-06 Thread Michael Herger

this doesn't seem to be the case with 8.2.


It certainly still should be possible.


I've created the database in mysql, created the suitable user (according
to server.prefs), granted rights to the database, changed dbsource entry
to mysql according to perl notation, i even flushed the cache dir.
LMS starts and a few secs later, the dbsource entry in server.prefs
reverts back to dbsource sqlite


Double/triple check the connection string. Setting LMS up to use MySQL 
might be fiddly. But it should definitely work to a certain degree. 
Meaning there might be bugs around the SQL dialect being used or 
whatever. But it should start up and scan. I know there are user doing this.

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


Re: [SlimDevices: Plugins] [Announce] SuperDateTime Screensaver v5.11.0 - Date/Time/Weather/Sports/Stocks

2021-03-06 Thread hestbank


BoomX2 wrote: 
> Let me know if periods C, 1, 2, 3 work for you. 

No I am afraid not, whether I use %!w or the %j that is also offered in
the drop down list. No value is returned. If I use %w it just returns
the current wind speed value irrespective of the period.

Thanks.



hestbank's Profile: http://forums.slimdevices.com/member.php?userid=63499
View this thread: http://forums.slimdevices.com/showthread.php?t=112122

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-06 Thread hisdudity


hi, does anyone know if this is ( or would be ) possible to display an
overlay on album cover showing files quality (mp3, cd, hi-res).
i did a little mock-up :)
thank you !!

33665


+---+
|Filename: Snap1.jpg|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=33665|
+---+


hisdudity's Profile: http://forums.slimdevices.com/member.php?userid=62951
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] Database Optimizer plugin

2021-03-06 Thread mamema


mherger wrote: 
> > 
> But you should be able to use MySQL, if you wanted to give it a try. 
> Would be interesting if that would turn out to be faster. One advantage
> 
> certainly would be that it would use another core on today's multi-core
> 
> systems, whereas SQLite is running inside the single LMS thread.

this doesn't seem to be the case with 8.2.
I've created the database in mysql, created the suitable user (according
to server.prefs), granted rights to the database, changed dbsource entry
to mysql according to perl notation, i even flushed the cache dir.
LMS starts and a few secs later, the dbsource entry in server.prefs
reverts back to dbsource sqlite

So not test successful with mysql



mamema's Profile: http://forums.slimdevices.com/member.php?userid=44662
View this thread: http://forums.slimdevices.com/showthread.php?t=114067

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


Re: [SlimDevices: Plugins] ANNOUNCE: RadioNet plugin to enable playing stream from the radio.net service

2021-03-06 Thread staresy


bpa wrote: 
> I've posted an V1.4 update - it should work itself through LMS repo in a
> few hours.
> 
> Small change in RadioNet broke the plugin so easy to fix.

This hasn't appeared in the repo yet.



location 1: lms 8.0 on win 10 brix server, x2 sb radios, x1 touch, x1
controller : location 2: lms 8.0 on win 10 brix server, x2 sb radios, x1
duet receiver, x1 controller : alexa mediaserver smart skill, material
android, squeezelitex control

staresy's Profile: http://forums.slimdevices.com/member.php?userid=807
View this thread: http://forums.slimdevices.com/showthread.php?t=111951

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