Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread cpd73


Bug-fix release, changes:

  
-  Always check if an items duration is valid before using to
  calculate selection duration.
-  Fix check for all items having same icon/image.
-  Fix colour of player status icons for light themes with coloured
  toolbars.
-  Fix colour of SVG icons in toolbars of fullscreen dialogs when
  using light themes with coloured toolbars.
-  If rating is 1 or 0.5 and click to set same value then reset rating
  to 0.
-  Add 'Remove' to ratings dialog, setting rating to 0.
-  Fix showing link menu in now-playing whilst existing already open.
-  Add semi-transparent background when showing rating in portrait
  now-playing.



*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-13 Thread mps


mherger wrote: 
> > 
> Yep, something I've wanted to address for a while...
> 
> https://github.com/Logitech/slimserver/issues/397
> 
:)
> 
> 
> > To measure the performance effect, I modified the MAI ImageProxy
> cache
> > to use the utf8-escaped artist names instead of the Artist IDs, and
> the
> > ArtistPictureLookup time for 1287 artists dropped from 40 seconds on
> the
> > first scan down to 3 seconds on subsequent scans! After making some
> 
> Yeah, that should work - except in the rare case of two different 
> artists of the same name, which got different Musicbrainz IDs.
> 
Do you get the IDs from MusicBrainz? If so, why do they change on each
scan (and why are mine so much shorter than MusicBrainz IDs)?
> 
> 
> > small changes to CustomBrowse and TrackStat to use the new cache
> keys,
> > things seem to work alright, at least in a quick ride around the
> block.
> 
> How would these plugins interact with the MAI cache?
> 
CustomBrowse artist menus use MAI's artist image.
https://github.com/erland/lms-custombrowse/blob/1c61b27e75b29c8541d06665fff4cbf895c3a182/src/MenuHandler/BaseMenuHandler.pm#L1092
Likewise, TrackStat most-played (and least played) artist menus get the
artist image.
https://github.com/erland/lms-trackstat/blob/fe583776eafce682086a0cc2731a8676b67652f6/src/Plugin.pm#L3505

> 
> 
> > Does my analysis seem correct? Is there anything wrong with my
> solution?
> > I'm happy to share the code changes. Does anything in addition to
> 
> Yes, please share with me.
> 
How should I share them? Although based on your mention of MusicBrainz
IDs above, I'm not sure my change is the right approach. What if we
could put a stable ID in the database (e.g., MusicBrainz if found, and a
hash of the artist name if not)? That seems like it could maintain the
performance improvement while still addressing the problem of
identically-named artists and without the need to change Erland plugins
(which is problematic to say the least...).



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-13 Thread Michael Herger

I recently noticed that Importer2::_precacheArtistImage -always-
recaches the artist images during a scan. Further investigation showed
that this was because the key in the imgproxy.db cache includes the
Artist ID, which was changing on every full rescan. This leads to two
problems.


Yep, something I've wanted to address for a while...

https://github.com/Logitech/slimserver/issues/397


- imgproxy.db grows on each scan because all the old items are left in
   (I confirmed this with the DatabaseQuery plugin).


They should expire eventually. But they'd sit there for weeks indeed.


To measure the performance effect, I modified the MAI ImageProxy cache
to use the utf8-escaped artist names instead of the Artist IDs, and the
ArtistPictureLookup time for 1287 artists dropped from 40 seconds on the
first scan down to 3 seconds on subsequent scans! After making some


Yeah, that should work - except in the rare case of two different 
artists of the same name, which got different Musicbrainz IDs.



small changes to CustomBrowse and TrackStat to use the new cache keys,
things seem to work alright, at least in a quick ride around the block.


How would these plugins interact with the MAI cache?


Does my analysis seem correct? Is there anything wrong with my solution?
I'm happy to share the code changes. Does anything in addition to


Yes, please share with me.


artists in MAI use similarly unstable ids? In either case, I'm assuming


I'd have to double check. Certainly nothing which has such a big impact 
on the cache size.

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


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

2021-03-13 Thread mps


I just cut my Artist Picture Lookup time on a rescan by 90% (but I'm not
sure if it is the right thing to do)!

I recently noticed that Importer2::_precacheArtistImage -always-
recaches the artist images during a scan. Further investigation showed
that this was because the key in the imgproxy.db cache includes the
Artist ID, which was changing on every full rescan. This leads to two
problems.

  
- imgproxy.db grows on each scan because all the old items are left in
  (I confirmed this with the DatabaseQuery plugin).
- The scan is much slower because it can't find any of the cached
  artist images -even though they are already in the cache-
  

To measure the performance effect, I modified the MAI ImageProxy cache
to use the utf8-escaped artist names instead of the Artist IDs, and the
ArtistPictureLookup time for 1287 artists dropped from 40 seconds on the
first scan down to 3 seconds on subsequent scans! After making some
small changes to CustomBrowse and TrackStat to use the new cache keys,
things seem to work alright, at least in a quick ride around the block.

Does my analysis seem correct? Is there anything wrong with my solution?
I'm happy to share the code changes. Does anything in addition to
artists in MAI use similarly unstable ids? In either case, I'm assuming
the indefinitely growing Image Proxy cache should be fixed.

Any thoughts greatly appreciated,
Mike



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] iPeng support thread

2021-03-13 Thread pippin


benh wrote: 
> Your explanation makes perfect sense, thanks.
> 
> It seems to me like iPeng is sometimes a control app, and sometimes
> (generally only if playback is in use) a music app.  I wonder if there
> is a way to have iOS not treat it like a music app if playback isn't
> enabled?

Unfortunately that would make iPeng lose the capability to also use
things like lock screen controls, remote control (e.g. from a dock) and
use of the buttons.
You can also not select the App type at runtime.



---
learn more about iPeng, the iPhone and iPad remote for the Squeezebox
and
Logitech UE Smart Radio as well as iPeng Party, the free Party-App, 
at penguinlovesmusic.com
*New: iPeng 9, the Universal App for iPhone, iPad and Apple Watch*

pippin's Profile: http://forums.slimdevices.com/member.php?userid=13777
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] squeezelite on raspberrypi=>zero mac address for multiple players=>server screws up

2021-03-13 Thread w3wilkes


Man in a van wrote: 
> Where In LMS do you mean ? :confused:
> 
> pCP allready waits for 25 secs (I think), look in the boot log, Main
> Page > Diagnostics > Logs > Boot log and check how long it takes;
> 
> This is mine, it took 29.5 secs
> 
> 
> 
> If you want to adjust the wait time, go to Main Page > Wifi Settings >
> Network wait and adjust the figure to 100, save and reboot. 
> 
> This is what I have done :)
> 
> ronnie
Where in LMS -> Material Skin -> Information - scroll down to Players.
MAC address showed zero's. I restarted Squeezelite and the MAC became
correct, but then LMS showed 2 piCore players, one with MAC zero and the
other was correct MAC address. Restart LMS fixed that. I was just
wondering if the setting in Squeezelite to tell it to wait for network
connect is in the PcorePlayer configuration.



Main system - Rock Solid with LMS 8.1.2 on WHS 2011 - 2 Duets and
Squeeseslave
Cabin system - Rock solid with LMS 8.1.2 on Win10 Pro - 1 RPi 3 Model
B/Hifiberry DAC+ Pro/PiCorePlayer and Squeezeslave
Squeezebox Boom - "At Large" player around both home and cabin
Headphones and car - Android phone/Bluetooth w/full library on MicroSD
card - PowerAmp music player app (similar to Material Skin)

w3wilkes's Profile: http://forums.slimdevices.com/member.php?userid=22973
View this thread: http://forums.slimdevices.com/showthread.php?t=106591

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


Re: [SlimDevices: Plugins] iPeng support thread

2021-03-13 Thread pippin


philippe_44 wrote: 
> 
> Any chance to change that? Or something we could change in XMLBrowser to
> ease both parties?

Can you somehow give me a way to test this?
This is horribly complicated. iPeng needs to be compatible with a
plethora of LMS versions so I can't just change the behavior for new
setups or something and the behavior of XMLBrowser is pretty messy.
It's all a consequence of the very bad design decision to have LMS
controllers not content aware (they are just views, not real controllers
in LMS' design).

I need to test this to check what's happening.

Could you mail me about it?



---
learn more about iPeng, the iPhone and iPad remote for the Squeezebox
and
Logitech UE Smart Radio as well as iPeng Party, the free Party-App, 
at penguinlovesmusic.com
*New: iPeng 9, the Universal App for iPhone, iPad and Apple Watch*

pippin's Profile: http://forums.slimdevices.com/member.php?userid=13777
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] iPeng support thread

2021-03-13 Thread benh


pippin wrote: 
> That's a very messy behavior of some car audio systems.
> Essentially, what the car's system is doing is triggering a play command
> to be sent to the last active audio App.
> In your case, that's iPeng. iOS wakes up iPeng and tells it to play,
> it's like using the lock screen control. If iPeng is still connected to
> your WiFi it does just that.
> 
> The correct workaround would be to keep the car audio system from
> automatically playing music whenever your phone gets connected. Or to
> make sure iPeng is no longer on WiFi.
> A workaround would be to use a different audio App after iPeng, that
> would then play automatically in your car.

Your explanation makes perfect sense, thanks.

It seems to me like iPeng is sometimes a control app, and sometimes
(generally only if playback is in use) a music app.  I wonder if there
is a way to have iOS not treat it like a music app if playback isn't
enabled?



benh's Profile: http://forums.slimdevices.com/member.php?userid=6732
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] iPeng support thread

2021-03-13 Thread pippin


benh wrote: 
> 
> I don't have playback enabled on iPeng, but it seems like iPeng is
> showing up as a music source in my car, and I wonder if/how I can change
> that behavior.

That's a very messy behavior of some car audio systems.
Essentially, what the car's system is doing is triggering a play command
to be sent to the last active audio App.
In your case, that's iPeng. iOS wakes up iPeng and tells it to play,
it's like using the lock screen control. If iPeng is still connected to
your WiFi it does just that.

The correct workaround would be to keep the car audio system from
automatically playing music whenever your phone gets connected. Or to
make sure iPeng is no longer on WiFi.
A workaround would be to use a different audio App after iPeng, that
would then play automatically in your car.



---
learn more about iPeng, the iPhone and iPad remote for the Squeezebox
and
Logitech UE Smart Radio as well as iPeng Party, the free Party-App, 
at penguinlovesmusic.com
*New: iPeng 9, the Universal App for iPhone, iPad and Apple Watch*

pippin's Profile: http://forums.slimdevices.com/member.php?userid=13777
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] iPeng support thread

2021-03-13 Thread pippin


FatPete wrote: 
> 
> Doesn't seem to cause any problems, but just wondering why it happens!

iPeng looks for playable URLs (audio files, streams etc.) in the
clipboard. If it finds any, it presents a menu to allow you to play it
on the current player or add to favorites.
If it doesn't find any, it does nothing.

It's away to play links people share through email or social media.



---
learn more about iPeng, the iPhone and iPad remote for the Squeezebox
and
Logitech UE Smart Radio as well as iPeng Party, the free Party-App, 
at penguinlovesmusic.com
*New: iPeng 9, the Universal App for iPhone, iPad and Apple Watch*

pippin's Profile: http://forums.slimdevices.com/member.php?userid=13777
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

___
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-13 Thread BoomX2


MichaelPr wrote: 
> Another question - I just tried the SuperDateTime Screensaver with my
> Transporter (settings are done at both the server and individual player
> levels)
> 
> 33759
> 
> In addition to the wanted information in screen 1 it always mixes up
> stock/game information with VU Meter in the visualizer screen. I don't
> find a possibility to flush the screen before or avoid to use the
> visualizer screen at all. My plan was to use "Screensaver when stopped"
> with SuperDateTime Screensaver w/o touching the visualizer screen (just
> blank it)
> 
> 33758
> 
> Best Regards
> Michael

I am not sure what to tell you.  I have a few Booms and a Classic.  They
correctly switch between the screensavers with VU Meter set to show
while playing and SDT set to show while stopped.  I do not have a
Transporter to test.  Do both screensavers show on top of each other
every time you stop the Transporter?



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] iPeng support thread

2021-03-13 Thread philippe_44


Hi @pippin - I'm posting here to have more chance to catch your
attention. I'm trying to change the behavior of the "start from last
position" so that we can have our cake and eat it, i.e. have a link when
there is a "last position" *and* have a play entry as well so that when
that track is part of a playlist, it plays as well (otherwise it's not
pushed to the playlist). In other words, here is the example of my code
from YT

Code:


if (my $lastpos = $cache->get("yt:lastpos-$id")) {
my $position = 
Slim::Utils::DateTime::timeFormat($lastpos);
$position =~ s/^0+[:\.]//;
$item->{type} = "link";
$item->{items} = [ {
title => cstring(undef, 
'PLUGIN_YOUTUBE_PLAY_FROM_BEGINNING'),
type   => 'audio',
url=> STREAM_BASE_URL . $id,
#duration => 'N/A',
}, {
title => cstring(undef, 
'PLUGIN_YOUTUBE_PLAY_FROM_POSITION_X', $position),
type   => 'audio',
url=> STREAM_BASE_URL . $id 
. "=$lastpos",
#duration => 'N/A',
} ];
} #else {
{   
$item->{on_select}  = 'play';
$item->{play}   = STREAM_BASE_URL . $id;
$item->{playall}= 1;
$item->{duration}   = 'N/A',
}
  


You can see that normally (when "else" applies), I would have either a
type 'link' or a 'playlist' (set before in the code) and default UI
offers a play icon at the right of the item or if there is a last pos,
you can click it to access the "stream from beginning" and "stream from
last pos". Now, if I set both options, the default LMS UI offers both a
play and the click on the link and Material offers that as well, the
link is accessible through the "more" option. And when clicking on 'play
all', all tracks are included =>that's great. 

But with iPeng and this configuration, a short-press on a track that has
both options means the whole list is played or long-press brings a menu
where I can play only that track, but the option to read from "last
position" is gone. When I don't have bot options set, a short-press
bring a menu with "from beg" and "from last pos".

Any chance to change that? Or something we could change in XMLBrowser to
ease both parties?



LMS 8.1.x on Odroid-C4 - *SqueezeAMP!*, 5xRadio, 5xBoom, 2xDuet,
1xTouch, 1xSB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000,
ShairPortW, 2xChromecast Audio, Chromecast v1 and v2, Squeezelite on Pi,
Yamaha WX-010, AppleTV 4, Airport Express, GGMM E5, RivaArena 1 & 3

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

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


Re: [SlimDevices: Plugins] ANNOUNCE: YouTube Plugin (API v3)

2021-03-13 Thread philippe_44


philippe_44 wrote: 
> I just realized that you might have your cake and eat it. It seems that
> there is a way to have the "play" icon to play from beginning *and* a
> link to go one level down to have choice. I'll verify it works with
> controllers as well.

argh ... LMS default skin works as well as Material and offer a "play"
and a sub-menu but iPeng fails



LMS 8.1.x on Odroid-C4 - *SqueezeAMP!*, 5xRadio, 5xBoom, 2xDuet,
1xTouch, 1xSB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000,
ShairPortW, 2xChromecast Audio, Chromecast v1 and v2, Squeezelite on Pi,
Yamaha WX-010, AppleTV 4, Airport Express, GGMM E5, RivaArena 1 & 3

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

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


Re: [SlimDevices: Plugins] ANNOUNCE: YouTube Plugin (API v3)

2021-03-13 Thread philippe_44


Jaca wrote: 
> Hi Philippe ,
> 
> Just wondering if it would be possible to add option to force always
> playing from beginning if file was previously started. 
> I have mapped subscribed channel to SB Radio Preset buttons and if
> podcast episode was previously started YT plugin skips it . I assume
> because Youtube asks if I want to play from previous position or
> beginning. As YT plugin is not able to answer, it just skips/tries
> another file. That's my guess anyway. 
> Don't know if there is a way to overcome that behaviors, but perhaps an
> option to "always force from beginning" would work for some people? What
> do you think? 
> Many thanks!

I just realized that you can your cake and eat it. It seems that there
is a way to have the "play" icon to play from beginning *and* a link to
go one level down to have choice. I'll verify it works with controllers
as well.



LMS 8.1.x on Odroid-C4 - *SqueezeAMP!*, 5xRadio, 5xBoom, 2xDuet,
1xTouch, 1xSB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000,
ShairPortW, 2xChromecast Audio, Chromecast v1 and v2, Squeezelite on Pi,
Yamaha WX-010, AppleTV 4, Airport Express, GGMM E5, RivaArena 1 & 3

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

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


Re: [SlimDevices: Plugins] squeezelite on raspberrypi=>zero mac address for multiple players=>server screws up

2021-03-13 Thread Man in a van


w3wilkes wrote: 
> Sorry to dredge up this old thread... Is this a setting that's available
> in PiCore Player 7, and if so where is it? My RPi MAC address shows
> correct in my router, but in LMS it shows as zero.

Where In LMS do you mean ? :confused:

pCP allready waits for 25 secs (I think), look in the boot log, Main
Page > Diagnostics > Logs > Boot log and check how long it takes;

This is mine, it took 29.5 secs

> Loading configuration file... Done.
> Loading pcp-lms-functions... Done.
> Waiting for soundcard Headphones to populate. Done (1).
> Waiting for
> network... Done
> (59).
> Done.

If you want to adjust the wait time, go to Main Page > Wifi Settings >
Network wait and adjust the figure to 100, save and reboot. 

This is what I have done :)

ronnie



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=106591

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


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

2021-03-13 Thread bobertuk


rgdawson wrote: 
> (1) This is strange, obviously. Is it a left-click or right-click on the
> tray icon?  Launching a web-browser first, and then things work, is
> really weird, since SLX is independent of anything a browser might do. 
> I've looked through the code and I find nothing obvious and I'm not
> aware of anyone else having this issue and I have never seen it and
> can't reproduce it.  What OS version are you running?
> 
> (2) Are you saying the tray icon goes to the hidden tray icon area after
> a reboot?  SLX does nothing to drive where that appears as it is a
> Windows function.  After an install/uninstall, it may get reset to
> appear in hidden area, but once you move it to the visible tray it
> should stay there (until a new install resets it).
> 
> R Greg Dawson

Thank you for looking at the code. Problems I had in the past stopped me
from using the MS Store version and I went over to the manual install
version to delay start-up of SqueezeLite-X on reboot. I used a piece of
software called 'Configure Startup Delayer by r2 Studios'. If I remember
correctly that was back around v1.8 of SqueezeLite-X, maybe before, but
I can't remember the exact reason for doing so; I think it was something
to do with SqueezeLite-X not picking up host name and output device if
LMS Server was not fully started - LMS needed just over a minute after
reboot to start properly. If a delay was introduced before SqueezeLite-X
started everything worked correctly so I've retained that delay ever
since. Your reply above got me thinking and made me investigate more
fully - it appears the start-up delay or the delay software itself was
causing both problems.

I've taken SqueezeLite-X out of the delay software, have it set to 'Auto
Start On Log in' and I'll monitor its behaviour and get back to you if
there are any more problems. So far after, 5 reboots, the system tray
icon remains visible on the taskbar and clicking the icon before running
it in a browser doesn't cause it to quit. If the problems return I'll
get back to you and if it remains stable I'll have a go with the MS
Store version again.



2 x Touch
2 x Radio
2 x Boom
1 x Intel-NUC server/squeezelite running LMS 8.20 (from nightlies) on
Windows 10
1 X Odroid-XU4 server/squeezelite running LMS 7.91 on Ubuntu 16.04
1 x iMac server running macOS Big Sur
WaveIO USB into Lavry DA-10 DAC
Starfish Pre-amp : Based on NAIM NAC 72
Heavily modified NAIM NAP 250 Power-amp
Focal Electra 1027 Be II Speakers

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

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


Re: [SlimDevices: Plugins] [Announce] Ratings Light

2021-03-13 Thread afriend


Fixed the settings URL. :-)

There was a problem with 1.8.3. Seems that for some reason the sha1
digest of the package delivered by github was not correct.

Please wait until 1.8.4 shows up on the LMS plugins page and give that a
try. Installing 1.8.4 from github works for me.



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: Group Players

2021-03-13 Thread philippe_44


markiii wrote: 
> never been a fan of the way LMS does synchronisation as its too fiddly
> to setup and tear down. I assume that's whats drove Phillippe to write
> this in the first place..
> 
> Just discovered this and its amazing how much better it makes day to day
> use. When coupled with material, it makes jivelite seem archaic.
> 
> 
> One question though, Phillippe can you confirm what should happen if
> players in a group don;t support the same sample rates? will it default
> to the lowest common denomination like traditional LMS sync or can it
> cope with different sample rates per player?

Yes, it will default to common denominator. It's mainly a traditional
Group created on-the-fly, with some parameters that can be specific to
the "virtual" group player (for example limit bitrate for large groups
that do not apply when individual players are used) or possibility to
set stereo pairs upon assembly.



LMS 8.1.x on Odroid-C4 - *SqueezeAMP!*, 5xRadio, 5xBoom, 2xDuet,
1xTouch, 1xSB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000,
ShairPortW, 2xChromecast Audio, Chromecast v1 and v2, Squeezelite on Pi,
Yamaha WX-010, AppleTV 4, Airport Express, GGMM E5, RivaArena 1 & 3

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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread PasTim


bz31 wrote: 
> I would have put
> Albumartist: Isabelle Faust
> Artist: Isabelle Faust, Freiburg Baroque Orchestra, Pablo Heras-Casado
> Composer: Felix Mendelssohn
And I would put:
Albumartist: Isabelle Faust
Artist: Isabelle Faust
Band: Freiburg Baroque Orchestra
Conductor: Pablo Heras-Casado
Composer: Felix Mendelssohn

I don't need AlbumArtist separate from Artist on the Queue or Now
Playing.  For me it's a search and Album term, and is always included in
the (list of) Artists.

I would also have 2 Genre tags:
Classical, Violin Concerto

The Classical tag allows me to have separate menus for Classical music
including items not needed for most other music forms, and is used by
Erland's multi-library plugin.

And then, key to finding and playing a Classical piece: Work, and
Movement 

Erland's (old) wiki on that explains how these are used, as said
previously
(https://wiki.slimdevices.com/index.php/Beginners_Guide_To_Classical.html)

And all because the folk who designed tags for mp3 never even thought
about sets of tracks making up one 'piece'.There are many other ways
of doing all this.  Some people use Group instead of Work.  People can
very steamed up about the best solution.  I also use another
artist-related tag, but I won't mention it here because I got into
serious trouble for even thinking about it :-)



LMS 8.1 on PC, Xubuntu 20.04, FLACs 16->24 bit, 44.1->192kbps.  2
Touches & 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 20.04 laptop firefox/upplay or Android mobile with
Squeeze-Ctrl/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=109624

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


Re: [SlimDevices: Plugins] [Announce] Ratings Light

2021-03-13 Thread mvn2009


It looks to me that there's a problem with the latest update. The
plugins tab keeps telling me to restart (auto update on). After removing
Ratings light plugin and reactivating I'm not able to install it
anymore. The plugin only shows under "updated plugins available".
Selecting it and restarting won't do anything.



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] squeezelite on raspberrypi=>zero mac address for multiple players=>server screws up

2021-03-13 Thread w3wilkes


david.udin wrote: 
> raspi-config gives you the option to wait for the network when booting
> up. This results in the correct mac address being passed to the server,
> and obviates the need for using the -m command line parameter in the
> squeezelite configuration file.

Sorry to dredge up this old thread... Is this a setting that's available
in PiCore Player 7, and if so where is it? My RPi MAC address shows
correct in my router, but in LMS it shows as zero.



Main system - Rock Solid with LMS 8.1.2 on WHS 2011 - 2 Duets and
Squeeseslave
Cabin system - Rock solid with LMS 8.1.2 on Win10 Pro - 1 RPi 3 Model
B/Hifiberry DAC+ Pro/PiCorePlayer and Squeezeslave
Squeezebox Boom - "At Large" player around both home and cabin
Headphones and car - Android phone/Bluetooth w/full library on MicroSD
card - PowerAmp music player app (similar to Material Skin)

w3wilkes's Profile: http://forums.slimdevices.com/member.php?userid=22973
View this thread: http://forums.slimdevices.com/showthread.php?t=106591

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


Re: [SlimDevices: Plugins] Announce: PlayHLS Plugin - plugin to play Apple HLS m3u8 stream

2021-03-13 Thread bpa


olivaar wrote: 
> is it possible to play mixcloud live streams?
> it seems that this streams are also HLS
> 
> the links are only valid during the live sessions.
> to try one, please go to the following site
> 
> https://www.mixcloud.com/live/
> 
> and select one of the streams.
> 
> to get the m3u8 file, play the stream, open the developer tools of your
> browser and look into the network tab.
> the m3u8-file is requested every few seconds.
> copy the link and open it with vlc/play network stream
> 
> LMS didnt play the stream.

Where are the URLs - I'm going to spend time hunting them down.



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

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


Re: [SlimDevices: Plugins] Announce: PlayHLS Plugin - plugin to play Apple HLS m3u8 stream

2021-03-13 Thread olivaar


is it possible to play mixcloud live streams?
it seems that this streams are also HLS

the links are only valid during the live sessions.
to try one, please go to the following site

https://www.mixcloud.com/live/

and select one of the streams.

to get the m3u8 file, open the developer tools of your browser and loook
into the network tab.
the m3u8 is requested every few seconds.
copy the link and open it with vlc/play network stream

LMS didnt play the stream.



olivaar's Profile: http://forums.slimdevices.com/member.php?userid=64848
View this thread: http://forums.slimdevices.com/showthread.php?t=103158

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread bz31


Blackfiction wrote: 
> maybe it is just me but I have followed the
> https://wiki.slimdevices.com/index.php/Beginners_Guide_To_Classical.html.
> I have put the composer name in the composer field and in the artist
> field. Albumartist is used for the main artist of the album. For
> example;
> Albumartist: Isabelle Faust
> Artist: Felix Mendelssohn
> Composer: Felix Mendelssohn
> Band: Freiburg Baroque Orchestra
> Conductor: Pablo Heras-Casado
> 
> Don't know if I am the only one doing this. With regard to classical
> music; how do other people tag artist and albumartist? Because of the
> differences I had hoped that a yes/no option in backend will help for
> some people.
I would have put
Albumartist: Isabelle Faust
Artist: Isabelle Faust, Freiburg Baroque Orchestra, Pablo Heras-Casado
Composer: Felix Mendelssohn



bz31's Profile: http://forums.slimdevices.com/member.php?userid=58523
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-13 Thread pgf


cpd73 wrote: 
> Material does not send the hostname/IP - thats the browser/Javascript.
> To get to the 'Extra settings' (i.e. LMS's player settings) Material
> just loads '/material/settings/player/basic.html?player=' No
> hostname there. If you mean the piCorePlayer/SqueezeAMP specific
> settings (accessed via 'Configuation') these are on the player's
> themselves - so that IP address of the player is required, and is used
> in the request.

Yes, it's definitely "Configuration" I'm referring to.  "Extra settings"
works fine.   I guess I didn't realize that some player config is stored
on the player.  I just noticed now that the only players that offer
"Configuration" are the ones running pCP.  Other players that are on
home-brew systems running a bare squeezelite don't offer that menu
entry.  Since I only just deployed the pCP players, at about the same
time I switched to Material, I guess these are probably configuration
options I've never seen before.

As it happens, all of my players (pCP and others) also use ssh tunnels
to connect to the server, so from the server's point of view, they all
exist at the server's own IP address.  That explains why the address I
get when "Configuration" fails appears to be the server's address --
it's actually the player's address, as seen from the server.

Where would I access the equivalent of "Configuration" if I were using
the default or classic LMS interfaces?



pgf's Profile: http://forums.slimdevices.com/member.php?userid=58510
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: Group Players

2021-03-13 Thread markiii


never been a fan of the way LMS does synchronisation as its too fiddly
to setup and tear down. I assume that's whats drove Phillippe to write
this in the first place..

Just discovered this and its amazing how much better it makes day to day
use. When coupled with material, it makes jivelite seem archaic.


One question though, Phillippe can you confirm what should happen if
players in a group don;t support the same sample rates? will it default
to the lowest common denomination like traditional LMS sync or can it
cope with different sample rates per player?



PiCorePlayer 6..1on Allo Digi One Signaturewith (Lounge)
PiCorePlayer 7 with pi official touchscreen and hifiberry Dig+ (Office)
PiCorePlayer 6.1 with pi official touchscreen and hifiberry
DAC+(Kitchen)
Radio  (Bedroom)
PiCorePlayer 6.1 with pi official touchscreen and USB DAC (Bedroom)
Squeezelite=x (Garage)
PiCorePlayer 6.1 with hifiberry AMP+(Patio 2)
PiCorePlayer 6.1 with hifiberry AMP+(Patio 2)

LMS 8.1 on DIY Unraid 6 Server (i5)

Squeeze user since the SB1

markiii's Profile: http://forums.slimdevices.com/member.php?userid=63801
View this thread: http://forums.slimdevices.com/showthread.php?t=108558

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread cpd73


pgf wrote: 
> Because of the way my network is configured (the wifi is partially
> firewalled from the home wired lan) I access the LMS web page from my
> laptop via a forwarded port on an ssh tunnel.  This means that instead
> of connecting to http://slimserver:9000, I connect to
> http://localhost:9000.
> 
> This works fine except for just one thing in the Material UI.  If I try
> to access "Configuration" from the context-sensitive menu on the "Player
> settings" page, the attempt to connect fails, because a connection is
> attempted to the IP address of "slimserver" on the lan, which is
> inaccessible from wifi.
> 
> I'm not sure how that IP address is leaking back to the browser app, nor
> do I know why the "Configuration" mechanism works differently than
> everything else in Material, but it would be nice if it used the
> "localhost" address instead.
> 
> paul

Material does not send the hostname/IP - thats the browser/Javascript.
To get to the 'Extra settings' (i.e. LMS's player settings) Material
just loads '/material/settings/player/basic.html?player=' No
hostname there. If you mean the piCorePlayer/SqueezeAMP specific
settings (accessed via 'Configuation') these are on the player's
themselves - so that IP address of the player is required, and is used
in the request.



*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-13 Thread cpd73


Blackfiction wrote: 
> maybe it is just me but I have followed the
> https://wiki.slimdevices.com/index.php/Beginners_Guide_To_Classical.html.
> I have put the composer name in the composer field and in the artist
> field. Albumartist is used for the main artist of the album. For
> example;
> Albumartist: Isabelle Faust
> Artist: Felix Mendelssohn
> Composer: Felix Mendelssohn
> Band: Freiburg Baroque Orchestra
> Conductor: Pablo Heras-Casado.

So, you're basically abusing the tags, I assume due to LMS limitations?
Either way, I'm not sure ifs something that warrants supporting. My main
point stands, that in the -general- case ther eis no need to show the
AlbumArtist in queue and now-playing.



*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] SuperDateTime Screensaver v5.11.0 - Date/Time/Weather/Sports/Stocks

2021-03-13 Thread MichaelPr


Another question - I just tried the SuperDateTime Screensaver with my
Transporter (settings are done at both the server and individual player
levels)

33759

In addition to the wantend information in Scrren 1 it always mixes up
Stock/Games information with VU Meter in the visualizer screen. I don't
find a possible to flush the screen before or avoid to use the
visualizer screen at all. My plan was to use "Screensaver when stopped"
with SuperDateTime Screensaver w/o touching the visualizer screen (just
blank it)

33758

Best Regards
Michael


+---+
|Filename: Capture2.PNG |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=33759|
+---+


:: 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: Material Skin

2021-03-13 Thread pgf


Because of the way my network is configured (the wifi is partially
firewalled from the home wired lan) I access the LMS web page from my
laptop via a forwarded port on an ssh tunnel.  This means that instead
of connecting to http://slimserver:9000, I connect to
http://localhost:9000.

This works fine except for just one thing in the Material UI.  If I try
to access "Configuration" from the context-sensitive menu on the "Player
settings" page, the attempt to connect fails, because a connection is
attempted to the IP address of "slimserver" on the lan, which is
inaccessible from wifi.

I'm not sure how that IP address is leaking back to the browser app, nor
do I know why the "Configuration" mechanism works differently than
everything else in Material, but it would be nice if it used the
"localhost" address instead.

paul



pgf's Profile: http://forums.slimdevices.com/member.php?userid=58510
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-13 Thread Blackfiction


cpd73 wrote: 
> Why? What is the use case? The only places I can see album artist being
> different from artists are; a) tracks with artist A ft Artist B, here A
> would also be album artist, and b) Various Artitist compilation albums -
> not sur eI see the point of showing  'Various Artists' in the queue or
> now-playing.
> 
> Show all artists will show all values for a tag - e.g. all album
> artists, all composers, all track artists, etc.

maybe it is just me but I have followed the
https://wiki.slimdevices.com/index.php/Beginners_Guide_To_Classical.html.
I have put the composer name in the composer field and in the artist
field. Albumartist is used for the main artist of the album. For
example;
Albumartist: Isabelle Faust
Artist: Felix Mendelssohn
Composer: Felix Mendelssohn
Band: Freiburg Baroque Orchestra
Conductor: Pablo Heras-Casado

Don't know if I am the only one doing this. With regard to classical
music; how do other people tag artist and albumartist? Because of the
differences I had hoped that a yes/no option in backend will help for
some people.



Living: EtherRegen -> Ultrarendu -> Benchmark DAC2 HGC -> Benchmark AHB2
-> ATC SCM19 v2 & Sennheiser HD650
Kitchen: SB Touch -> Audio Pro Addon T10 gen2
Kids rooms: SB Booms
Bedroom: SB Boom & SB Radio
Controls: iPeng, Material Skin & LMS via internet
Server: Windows 10 Pro with LMS 7.9.3
Spare: 2 SB Touch, 1 SB3, 2 SB Radio

Blackfiction's Profile: http://forums.slimdevices.com/member.php?userid=20587
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] Annouce: SB Player, a software Squeezebox player app for Android.

2021-03-13 Thread Murdock


bpa wrote: 
> WMA transcoding would be done by LMS. The solution depends on the LMS
> system and the host OS.

I thought SB Player could play WMA natively.
My LMS works on Linux. I'll see what I can do for the transcoding.

Thank you for your answer.



Murdock's Profile: http://forums.slimdevices.com/member.php?userid=71498
View this thread: http://forums.slimdevices.com/showthread.php?t=98049

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


Re: [SlimDevices: Plugins] Success: MusicIP and Spicefly Sugarcube running on Raspberry Pi

2021-03-13 Thread frankd


mvn2009 wrote: 
> Finally got it working, made a mistake with the mmserver registration.
> Thanks for advising me and for this tutorial!
> And MysicIP is doing an amazing job again!
> 
> Verstuurd vanaf mijn HD1903 met Tapatalk

:) Perfect. Good to hear that the first post seems to work.



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

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


Re: [SlimDevices: Plugins] [Announce] Ratings Light

2021-03-13 Thread radish112


afriend,

Hi.

This morning the Material Skin alerted me to the the availability of
Ratings Light v1.8.2. I then installed it without a hitch, and
everything appears to be working just fine.

There is one anomaly that doesn't prevent me from using Ratings Light
but that is puzzling.

When I attempt to access the Settings for Ratings Light from the Plugin
tab on the LMS default user interface, I get this message: 
"404 Not Found:
plugins/Extensions/settings/plugins/RatingsLight/settings/settings.html"

But when using the Material skin, I can access the Ratings Light
settings with no problem.

I'm running LMS Version: 8.1.2 (1614990085 @ Sat Mar 6 02:41:13 CET
2021) on a Raspberry Pi 4 (server only, not a player) with PiCorePlayer
v 7.0.0

Many thanks for the fix in 8.1.2!



radish112's Profile: http://forums.slimdevices.com/member.php?userid=11591
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: YouTube Plugin (API v3)

2021-03-13 Thread Jaca


Hi Philippe ,

Just wondering if it would be possible to add option to force always
playing from beginning if file was previously started. 
I have mapped subscribed channel to SB Radio Preset buttons and if
podcast episode was previously started YT plugin skips it . I assume
because Youtube asks if I want to play from previous position or
beginning. As YT plugin is not able to answer, it just skips/tries
another file. That's my guess anyway. 
Don't know if there is a way to overcome that behaviors, but perhaps an
option to "always force from beginning" would work for some people? What
do you think? 
Many thanks!



3x Squeezebox Touch, 4x Squeezebox Radio, Squeezelite (RPi 3B with
HiFiBerry DAC+Pro on OSMC), Material Skin Apk, Squeeze Commander,
Logitech Media Server Version: 8.2.0 with Material Skin (Docker in
DS218+)

Jaca's Profile: http://forums.slimdevices.com/member.php?userid=58187
View this thread: http://forums.slimdevices.com/showthread.php?t=105840

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


Re: [SlimDevices: Plugins] Annouce: SB Player, a software Squeezebox player app for Android.

2021-03-13 Thread bpa


Murdock wrote: 
> Hi all,
> 
> I am using SB Player on android TV and am very satisfied with it. I just
> have a problem playing WMA files. I realize that they read well on my
> raspberry (piCorePlayer) but not at all through SB Player.
> Does anyone have a solution?


WMA transcoding would be done by LMS. The solution depends on the LMS
system and the host OS.



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

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


Re: [SlimDevices: Plugins] Annouce: SB Player, a software Squeezebox player app for Android.

2021-03-13 Thread Murdock


Hi all,

I am using SB Player on android TV and am very satisfied with it. I just
have a problem playing WMA files. I realize that they read well on my
raspberry (piCorePlayer) but not at all through SB Player.
Does anyone have a solution?

Thank you.



Murdock's Profile: http://forums.slimdevices.com/member.php?userid=71498
View this thread: http://forums.slimdevices.com/showthread.php?t=98049

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


Re: [SlimDevices: Plugins] Announce : BBC Sounds Plugin

2021-03-13 Thread coyrls


expectingtofly wrote: 
> Well, not quite like that, but it would be possible to duplicate all the
> menus per account within BBC sounds.  That would kind of work!   That
> gets over the problem of the controller not knowing what account, albeit
> by using a bit of a sledgehammer.
> 
> But that doesn't get over the controller not know what account the
> current playing item is, or account each item in the  the playlist is
> associated with.

An even bigger sledgehammer would be to have multiple plugins, "BBC
Sounds Account 1", "BBC Sounds Account 2" etc. I can't think that more
than 6 would be required.  If you did that, would each plugin be able to
maintain its own context?  Although it is a sledgehammer, I wouldn't
expect it would add hugely to your maintenance burden, as each plugin
would be a duplicate.  In settings for each plugin you could set an
account name that would be displayed.



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread d6jg

Shozzer wrote: 
> The following might show why there are multiple approaches to classical
> tagging:
> 
> https://www.google.com/url?sa=t=web=j=https://wiki.slimdevices.com/index.php/Beginners_Guide_To_Classical.html=2ahUKEwjO8ouska3vAhWXilwKHbuxBlgQFjAAegQIBBAC=AOvVaw2rtgvU7f4r2OXgQkbB3Tb7
> 
> https://www.google.com/url?sa=t=web=j=https://www.dailyrindblog.com/classical-music-metadata-101/=2ahUKEwjO8ouska3vAhWXilwKHbuxBlgQFjABegQIARAC=AOvVaw3Sybw6PB14BXmjy1On5vIe
> 
> I think the problem mainly stems from the lack of consistency between
> different software and the tags that are recognized. I can add a host of
> tags to my files but LMS won't display them as it stands currently, much
> the same as other software.

Thanks. 
Will take this to Tagging after reading that lot if it’s still not
clear.



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-13 Thread Shozzer

d6jg wrote: 
> I do have some classical music shozzer and yes I want to understand a
> bit about why the Classical brigade seem to have tagging issues and
> often come up with their own schemas which makes life difficult for the
> developers.
> I don’t want to get into a discussion about the database structure or
> anything just to understand a bit more.

The following might show why there are multiple approaches to classical
tagging:

https://www.google.com/url?sa=t=web=j=https://wiki.slimdevices.com/index.php/Beginners_Guide_To_Classical.html=2ahUKEwjO8ouska3vAhWXilwKHbuxBlgQFjAAegQIBBAC=AOvVaw2rtgvU7f4r2OXgQkbB3Tb7

https://www.google.com/url?sa=t=web=j=https://www.dailyrindblog.com/classical-music-metadata-101/=2ahUKEwjO8ouska3vAhWXilwKHbuxBlgQFjABegQIARAC=AOvVaw3Sybw6PB14BXmjy1On5vIe

I think the problem mainly stems from the lack of consistency between
different software and the tags that are recognized. I can add a host of
tags to my files but LMS won't display them as it stands currently, much
the same as other software.



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] iPeng support thread

2021-03-13 Thread michel


I just upgraded from iPhone 6s to 12 mini.
Unfortunately I am missing ipeng working in horizontal mode on this
phone. Am I doing something wrong or has this function been omitted with
newer devices?



michel's Profile: http://forums.slimdevices.com/member.php?userid=4393
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread d6jg

Shozzer wrote: 
> I would encourage you to try some - you might be pleasantly surprised!
> Given some of your recent posts on the forum I presume you are thinking
> about tagging classical music - or is there another thought in mind?
> 
> Steve

I do have some classical music shozzer and yes I want to understand a
bit about why the Classical brigade seem to have tagging issues and
often come up with their own schemas which makes life difficult for the
developers.
I don’t want to get into a discussion about the database structure or
anything just to understand a bit more.



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-13 Thread Shozzer

d6jg wrote: 
> Slightly off topic but if any of the Classical brigade could point me at
> an idiots guide to Classical music I’d be grateful. I don’t want to
> listen to any but I’d like to understand the convoluted terminology.

I would encourage you to try some - you might be pleasantly surprised!
Given some of your recent posts on the forum I presume you are thinking
about tagging classical music - or is there another thought in mind?

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] Squeezelite-X

2021-03-13 Thread Paul Webster


Easy test to make then ... rename the .cue to be same as .flac and then
do a new & changed rescan.



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=108550

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread d6jg

cpd73 wrote: 
> Why? What is the use case? The only places I can see album artist being
> different from artists are; a) tracks with artist A ft Artist B, here A
> would also be album artist, and b) Various Artitist compilation albums -
> not sur eI see the point of showing  'Various Artists' in the queue or
> now-playing.
> 
> Show all artists will show all values for a tag - e.g. all album
> artists, all composers, all track artists, etc.

Slightly off topic but if any of the Classical brigade could point me at
an idiots guide to Classical music I’d be grateful. I don’t want to
listen to any but I’d like to understand the convoluted terminology.



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] LMS-lite certified Smart Home skill for Alexa

2021-03-13 Thread philchillbill

A user asked if it would be possible to add a slider for player volume
for use in *Alexa Routines*. It's now live and is called 

Player Volume
Volume du lecteur
Player-Lautstärke

Enjoy !



philchillbill's Profile: http://forums.slimdevices.com/member.php?userid=68920
View this thread: http://forums.slimdevices.com/showthread.php?t=111443

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread cpd73


Blackfiction wrote: 
> Now one can adjust the settings to see the composer, conductor and band,
> which is great! But I can not figure out how to show the albumartist? I
> thought it was in the setting 'show all artists' but I think that one
> does not show the albumartist, right? Is it possible to also add a
> toggle yes/no button to show the albumartist?

Why? What is the use case? The only places I can see album artist being
different from artists are; a) tracks with artist A ft Artist B, here A
would also be album artist, and b) Various Artitist compilation albums -
not sur eI see the point of showing  'Various Artists' in the queue or
now-playing.

Show all artists will show all values for a tag - e.g. all album
artists, all composers, all track artists, etc.



*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] Squeezelite-X

2021-03-13 Thread dragosmanea


No, see the screenshot attached33757


+---+
|Filename: Screenshot 2021-03-13 112503.jpg |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=33757|
+---+


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

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


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

2021-03-13 Thread Paul Webster


Is the .cue file in the same directory as the .flac ?
Is the file name of the .cue the same as the .flac (just the extension
different)?



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=108550

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-13 Thread Blackfiction


Hi Craig,

I have a question about all the options of Material Skin for showing
classical performers. Now one can adjust the settings to see the
composer, conductor and band, which is great! But I can not figure out
how to show the albumartist? I thought it was in the setting 'show all
artists' but I think that one does not show the albumartist, right? Is
it possible to also add a toggle yes/no button to show the albumartist?



Living: EtherRegen -> Ultrarendu -> Benchmark DAC2 HGC -> Benchmark AHB2
-> ATC SCM19 v2 & Sennheiser HD650
Kitchen: SB Touch -> Audio Pro Addon T10 gen2
Kids rooms: SB Booms
Bedroom: SB Boom & SB Radio
Controls: iPeng, Material Skin & LMS via internet
Server: Windows 10 Pro with LMS 7.9.3
Spare: 2 SB Touch, 1 SB3, 2 SB Radio

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

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


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

2021-03-13 Thread dragosmanea


Hello, Paul,

REM DATE 1988
REM COMMENT 60 479-3
TITLE "Metal Ballads Vol.1"
FILE "Vol.1 Side A.flac" WAVE
TRACK 01 AUDIO
TITLE "Is This Love"
PERFORMER "Whitesnake"
INDEX 01 00:00:00
TRACK 02 AUDIO
TITLE "Time"
PERFORMER "MSG"
INDEX 01 04:41:60
TRACK 03 AUDIO
TITLE "Keep On Loving You"
PERFORMER "Reo Speedwagon"
INDEX 01 08:41:31

This is just one exemple. I can write more if you want.

Thank you!



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

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


Re: [SlimDevices: Plugins] Announce : BBC Sounds Plugin

2021-03-13 Thread expectingtofly


Ok, I've come to conclusion, as Paul alluded to, the solution is
probably not to make it too flexible.  
So I'm going to support multiple accounts.   If more than one account is
added, then in settings, which player is associated with which account
can be selected.
But a user has to go into settings to change it.  There is not going to
be a menu item to easily switch.

That way, users know a particular player is (usually) always associated
with a particular account.

They will just have to live with the odd behaviour that if they browse
on one player into "My sounds" with their controller, then switch
player, then play the item, then :  The item played will be recorded
against a different account from the "My sounds" that the browsed to get
their, if you get what I mean. 

Someone is going to have to write a "LMS User Account plugin" that
streaming services plugins can supply context to (and get context from) 
and controllers can utilise in a generic way to give a better
experience. That way an individual playable item can be associated with
an account rather than a whole player.Anyone want to volunteer to
write it ?? :):D:)



EXPECTINGTOFLY PLUGINS :

- *BBC Sounds* : 
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin 
- *BBC Sounds Wiki* :
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki
- *Virgin Radio (UK)* : 
  https://github.com/expectingtofly/LMS_Virgin_Radio_Plugin 
- *Times Radio* : 
  https://github.com/expectingtofly/LMS_TIMES_RADIO_PLUGIN

expectingtofly's Profile: http://forums.slimdevices.com/member.php?userid=63263
View this thread: http://forums.slimdevices.com/showthread.php?t=113045

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


Re: [SlimDevices: Plugins] Success: MusicIP and Spicefly Sugarcube running on Raspberry Pi

2021-03-13 Thread mvn2009


frankd wrote: 
> Can you create mixes via the webinterface on port 10002 or start other
> commands there? I guess your server is working, other users reported
> this failure message before, see page 3, while the server was working
> for them.  
> The server is not sent to the background, therefore your terminal is
> blocked, that is normal as well and you have to kill the server or close
> the terminal to stop it. 
> You should create a start-script and register the server as system
> service described in the tutorial or in more details on page 3
> (antoniop)Finally got it working, made a mistake with the mmserver 
> registration.
Thanks for advising me and for this tutorial!

Verstuurd vanaf mijn HD1903 met Tapatalk





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

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


Re: [SlimDevices: Plugins] Announce : BBC Sounds Plugin

2021-03-13 Thread expectingtofly


Paul Webster wrote: 
> Another thought  Scrobbling to last.fm is another place that has
> support for multiple accounts.
> 
> It is simpler than this situation but rarely, if ever, see requests to
> make it more controllable.
> 
> It has accounts set at system level and then is assignable to individual
> players.

Yes,  that's the only way I think multiple accounts can work on LMS. 
But as  @humax99 and @cpd73 have pointed out, users naturally want them
to be associated with their controller on their mobile device as most
playing devices will be shared.

I still would be interested in anyone's experience of multiple accounts
on spotty?



EXPECTINGTOFLY PLUGINS :

- *BBC Sounds* : 
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin 
- *BBC Sounds Wiki* :
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki
- *Virgin Radio (UK)* : 
  https://github.com/expectingtofly/LMS_Virgin_Radio_Plugin 
- *Times Radio* : 
  https://github.com/expectingtofly/LMS_TIMES_RADIO_PLUGIN

expectingtofly's Profile: http://forums.slimdevices.com/member.php?userid=63263
View this thread: http://forums.slimdevices.com/showthread.php?t=113045

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


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

2021-03-13 Thread Paul Webster


dragosmanea wrote: 
> 
> 
> ... and a lot in a big flac file and a CUE file (PCM) in an album. Is
> there a way to play the tracks independently? Jriver, Foobar, etc are
> showing and playing each track, but not Squeezelite-X. 
> 

This is a function of LMS rather than Squeezelite ... at least in the
first instance.

When LMS did the scanning did it list the individual tracks from the
.cue file?
If not then that is where you need to look first.

Please post the header and first track info from the .cue file



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=108550

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


Re: [SlimDevices: Plugins] Announce : BBC Sounds Plugin

2021-03-13 Thread expectingtofly


coyrls wrote: 
> Wouldn't it be possible to create a separate menu item under Apps for
> each account, e.g "Account Name's BBC Sounds"?  That way you break any
> association with a device and each account can use any device.
Well, not quite like that, but it would be possible to duplicate all the
menus per account within BBC sounds.  That would kind of work!   That
gets over the problem of the controller not knowing what account, albeit
by using a bit of a sledgehammer.

But that doesn't get over the controller not know what account the
current playing item is, or account each item in the  the playlist is
assocated with.



EXPECTINGTOFLY PLUGINS :

- *BBC Sounds* : 
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin 
- *BBC Sounds Wiki* :
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki
- *Virgin Radio (UK)* : 
  https://github.com/expectingtofly/LMS_Virgin_Radio_Plugin 
- *Times Radio* : 
  https://github.com/expectingtofly/LMS_TIMES_RADIO_PLUGIN

expectingtofly's Profile: http://forums.slimdevices.com/member.php?userid=63263
View this thread: http://forums.slimdevices.com/showthread.php?t=113045

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