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

2021-01-04 Thread philippe_44


Ron F. wrote: 
> Yes, faac! My server is running Ubuntu 18.04, and I installed faac. I
> thought it should be able to output AAC, similar to how lame streams
> MP3, but I could not get it to work with LMS.

My guess is that you're not telling faac what format is the input.
Spotty spits raw pcm, not wav so faac has no idea what it is receiving.
You can have a look at the other rules



LMS 7.9  on Pi 3B+ & Odroid-C2 - *SqueezeAMP!*, 5xRadio, 3xBoom, 4xDuet,
1xTouch, 1 SB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2,
Squeezelite on Pi,  Yamaha WX-010, AppleTV 4, Airport Express, GGMM E5,
Riva 1 & 3

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

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


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

2021-01-04 Thread Ron F.


philippe_44 wrote: 
> [faac]?

Yes, faac! My server is running Ubuntu 18.04, and I installed faac. I
thought it should be able to output AAC, similar to how lame streams
MP3, but I could not get it to work with LMS.



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite +
Vivaldi/Material Skin > Emotiva Little Ego DAC > Grado PS500 headphones
*Bedroom:* RPi Zero W + Squeezelite > miniBOSS DAC HAT > Bose SoundLink
Revolve
*Phone:* Pixel 3a + SB Player + Material APK > Senn IE80 earbuds
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 8.2

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

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


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

2021-01-04 Thread Michael Herger

When later adding the tracks to current playlist I’m using:

   $request = $client->execute(['playlist', 'addtracks', 'listRef', 
$filteredItems]);

Would it work with a database track object in $filteredItems or would it
require a remote track object if available?

> Just checking to know if the plugin would need the remote track object
> anyway to be able to play the track. If it isn’t needed to play the
> track are there other situations where the database track object isn’t
> enough and a plugin would really need to remote track object ?

$filteredItems can be a list of URLs. No need to send full objects.


Could the plugin just make a call like this to get the database track
object ?


If you really need it (not in above case).


   my $track = Slim::Schema->rs(‘Track’)->single({ 'url' => $url });


Yes! That's pretty exactly what objectForUrl() eventually does (for 
database objects):


https://github.com/Logitech/slimserver/blob/e64c0e31caf4ebd7a77ce480db3395e35d33bd6e/Slim/Schema.pm#L2308


--

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


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

2021-01-04 Thread erland

mherger wrote: 
> idForObject sounds a bit like $track->id - which would return that
> negative value.
> 
> I was considering an additional parameter (or flag in the arguments) to
> force looking up the database object. But I rejected that idea in favour
> of what we have now because it would have required a change on your end.
> Now is somebody wanted to pick this up, I'd be happy to add that flag.
> It's only two or three lines of code to add, and it wouldn't change any
> behaviour for existing callers.

When later adding the tracks to current playlist I’m using:

Code:


  $request = $client->execute(['playlist', 'addtracks', 'listRef', 
$filteredItems]);
  


Would it work with a database track object in $filteredItems or would it
require a remote track object if available?
Just checking to know if the plugin would need the remote track object
anyway to be able to play the track. If it isn’t needed to play the
track are there other situations where the database track object isn’t
enough and a plugin would really need to remote track object ?

Could the plugin just make a call like this to get the database track
object ?

Code:


  my $track = Slim::Schema->rs(‘Track’)->single({ 'url' => $url });
  


Or would it cause other side effects if it doesn’t retrieve it through
objectForUrl method ?
Just asking to see if we can avoid adding adding extra complexity to LMS
core if we need to adapt the code in the plugin anyway.



Erland Isaksson ('My homepage' (http://erland.isaksson.info))
Developer of 'many plugins/applets'
(https://wiki.slimdevices.com/index.php/User_Erland.html)
*Starting with LMS 8.0 I no longer support my plugins/applets* ('see
here for more information'
(https://forums.slimdevices.com/showthread.php?49483-Announce-New-versions-of-erlands-plugins=998836=1#post998836)
)

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

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


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

2021-01-04 Thread mherger


idForObject sounds a bit like $track->id - which would return that
negative value.

I was considering an additional parameter (or flag in the arguments) to
force looking up the database object. But I rejected that idea in favour
of what we have now because it would have required a change on your end.
Now is somebody wanted to pick this up, I'd be happy to add that flag.
It's only two or three lines of code to add, and it wouldn't change any
behaviour for existing callers.



Michael

"It doesn't work - what shall I do?" - "Please check your server.log
and/or scanner.log file!"
(LMS: Settings/Information)

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

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


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

2021-01-04 Thread Michael Herger

Clients: Several RPIs (Types B, 2B, 3B) with HifiBerry DAC, AMP2, Digi+
Pro and USB-DACs, all with PCP7 and Squeezelite 1.9.8-1287-SC-1.0. By
the way: PCP5, 6, 6.1 were affected in the same way. Before that I do
not remember. It feels like forever. I tried all possible alsa-settings,
input:output-buffers, core-isolation, different PSUs, a variety of
WIFI-adapters - no difference at all.


Please make sure one of your players is back on defaults. No buffer 
tweaking, nothing. Then enable proxied streaming in LMS 
Settings/Player/Audio/Streaming Method.


--

Michael
___
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-01-04 Thread BoomX2


Stingracer wrote: 
> Hi there,
> 
> I am using a SBT with CustomClock Screensaver SDT. In SDT settings I set
> a weahter.com id and a wunderground id (see picture).  But on the
> display you can only see the temperature from weather.com. The data from
> weather.com is not overwritten by the data from Wunderground. what have
> I done wrong?
> 
> Thanks for your help!
> 
> 32825

To see the wunderground temperature you will need to edit your
CustomClock screen to use the variables %e or %E instead %t or %T.  You
can see all the variables that can be displayed on the Player SDT
Settings page.  This settings page is separate from the main SDT
settings page.


+---+
|Filename: Capture.JPG  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32840|
+---+


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] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-01-04 Thread philippe_44


Ron F. wrote: 
> I was a bit curious, and due to the recent discussion about streaming
> AAC using Spotty, I thought I would try to see if I could create a
> custom convert rule for SPT->AAC that could be used by Spotty - as an
> experiment. Again, this is not an important issue, but I was curious
> nevertheless... In a nutshell I could not get it to work, and I am
> stumped. I tried using both faac and ffmpeg to do the spt->aac
> transcoding, and I encountered essentially the same failure in both
> cases: the conversion appears to be taking place, but not in
> "real-time." The conversion of each track in a Spotify playlist begins,
> at least I see thousands of frames converted, but they are not streaming
> to the player. I don't see error messages, I just see the player jump
> from track to track, attempting to play a few seconds each time, before
> jumping to the next one in the list.
> 
> There is most likely something quite basic here that I do not
> understand:
> 
> 
> spt aac * *
> # RT:{START=--start-position %s}
> [spotty] -n Squeezebox -c "$CACHE$" --single-track $URL$ --bitrate
> 320 --disable-discovery --disable-audio-cache $START$ | [faac] -r -P -b
> 320 -o - -
> 
> 
> The rule for using ffmpeg to do the transcoding to AAC is considerably
> more complex, and also appears to be transcoding successfully, but the
> end result is the same, in that nothing is being piped or flushed out of
> the transcoder in real-time.

[faac]?



LMS 7.9  on Pi 3B+ & Odroid-C2 - *SqueezeAMP!*, 5xRadio, 3xBoom, 4xDuet,
1xTouch, 1 SB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2,
Squeezelite on Pi,  Yamaha WX-010, AppleTV 4, Airport Express, GGMM E5,
Riva 1 & 3

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

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


Re: [SlimDevices: Plugins] BBC Sounds Dropping out

2021-01-04 Thread bpa


comeng wrote: 
> Thank you for help and as always in such circumstances I am frustrated
> that I cannot come up with an explanation or put my finger on one issue
> that could be further investigated.

I feeel the root of "drop outs" was these "long delay" packets.  I think
it is has virtually disappeared for you because

1. BBC Sounds is a new plugin and stream handling is also new. There are
improvement/fixes being made to the code - one of which I know dealt
with "long delay".  This means when it happens, its effect is minimised
- you'll only notice the really really long delayed packet.
2. A local/regional network issue has been resolved. I had a version of
plugin to log these "long delay" packets - from my experience and other
users reporting - it often happened at weekends and/or in a region.  My
guess is that the "long delay" packets happen more often when a network
upgrade/maintenance is happening or if there is regional network issue
affecting the CDN network.



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

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


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

2021-01-04 Thread Ron F.


I was a bit curious, and due to the recent discussion about streaming
AAC using Spotty, I thought I would try to see if I could create a
custom convert rule for SPT->AAC that could be used by Spotty - as an
experiment. Again, this is not an important issue, but I was curious
nevertheless... In a nutshell I could not get it to work, and I am
stumped. I tried using both faac and ffmpeg to do the spt->aac
transcoding, and I encountered essentially the same failure in both
cases: the conversion appears to be taking place, but not in
"real-time." The conversion of each track in a Spotify playlist begins,
at least I see thousands of frames converted, but they are not streaming
to the player. I don't see error messages, I just see the player jump
from track to track, attempting to play a few seconds each time, before
jumping to the next one in the list.

There is most likely something quite basic here that I do not
understand:


spt aac * *
# RT:{START=--start-position %s}
[spotty] -n Squeezebox -c "$CACHE$" --single-track $URL$ --bitrate
320 --disable-discovery --disable-audio-cache $START$ | [faac] -r -P -b
320 -o - -


The rule for using ffmpeg to do the transcoding to AAC is considerably
more complex, and also appears to be transcoding successfully, but the
end result is the same, in that nothing is being piped or flushed out of
the transcoder in real-time.



*Living Room:* SB Touch + DIY PSU > CI Audio VDA.2 DAC + VAC.1 PSU >
VRX.1 cables > Emotiva XSP-1 Gen 2 preamp + XPA-DR2 amp > Blue Jeans
cables > B 804 speakers
*Laptop:* System76 Galago + Ubuntu 16.04 + Squeezelite +
Vivaldi/Material Skin > Emotiva Little Ego DAC > Grado PS500 headphones
*Bedroom:* RPi Zero W + Squeezelite > miniBOSS DAC HAT > Bose SoundLink
Revolve
*Phone:* Pixel 3a + SB Player + Material APK > Senn IE80 earbuds
*Server:* Puget Systems Serenity + Ubuntu 18.04 + LMS 8.2

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

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


Re: [SlimDevices: Plugins] BBC Sounds Dropping out

2021-01-04 Thread comeng


OK

So done various tests as my base I ran 8 hours solid music streaming
from my NAS to the 3 synchronised Raspberry Pi's and as expected I got
no drop outs or any other issues so internal networks and devices appear
to be functioning correctly, then did the same with Listen Again and had
no issues, doing the same with Live feed Radio 2 I had one occasion of
loss of sound of a couple of seconds with nothing showing in the log
files and at this level it is not even a minor irritant.
So what has changed and the only thing I can identify is upgrading to
Sounds 2.9.1.
The one thing I did notice was that the log file when on Live appeared
very similar to that of Listen Again whereas previously the number of
requests per second was significantly different
I will keep monitoring and get back to you.
If it would help I can send log files if anyone cares to specify what
they would like to see.

Thank you for help and as always in such circumstances I am frustrated
that I cannot come up with an explanation or put my finger on one issue
that could be further investigated.

Phil



comeng's Profile: http://forums.slimdevices.com/member.php?userid=63874
View this thread: http://forums.slimdevices.com/showthread.php?t=113563

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


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

2021-01-04 Thread Jazzlampe


Hi to everyone,
I tried to solve my problems on my own, and this forum has always been
very helpful :) Until now. I'm rather desperate, since none of my ideas
(and the ideas I read about) worked. And here is what this is all
about:
Serious dropouts, stuttering or complete breakdown when streaming from
Qobuz. Some tracks run for a few seconds before the problem occurs, some
over a minute. HiRes is somewhat more affected than standard 16/44.1.
Local playback with HiRes or DSD is fine most of the time. There are
albums that do play fine one day and are crap the other. I cannot
reproduce the problem for sure. It's pretty randomized.:(

Server: RPI 3B+ with PCP7, LMS 8.1.1, all plugins are updated. There is
a second server just for testing (Win10, intel i3, 8GB RAM) with
basically the same software. Problems are the same.

Clients: Several RPIs (Types B, 2B, 3B) with HifiBerry DAC, AMP2, Digi+
Pro and USB-DACs, all with PCP7 and Squeezelite 1.9.8-1287-SC-1.0. By
the way: PCP5, 6, 6.1 were affected in the same way. Before that I do
not remember. It feels like forever. I tried all possible alsa-settings,
input:output-buffers, core-isolation, different PSUs, a variety of
WIFI-adapters - no difference at all.

Infrastructure: I'm connected via rock-stable 100MBit DSL. The servers
and one client are wired via gigabit ethernet. All other clients do run
on GN/AC-mesh-wifi. I live in a house with 3 floors. There are wired
accesspoints on every floor. Every floor has its own SSID so the clients
do not roam. Channels are fixed, and so are the IP-addresses. I even
suspected my own DNS and firewall-servers and came back to a plain
Fritz!Box-configuration. iperf3 proves a constant 110MBit/s between
WIFI-clients and server.

After all I doubt that it's network-related as none of the problems
occur with the qobuz app (Android, Windows) or Squeezplayer app
(Android). Local playback works fine so I suspect the qobuz-plugin. I
inspected the logs but did not find anything, as if the problem did not
exist.

What logfiles should I look at?
What else could be the reason? 
Help is deeply appreciated.

Jazzlampe



large: piCorePlayer -> HifiBerry Digi+ Pro-> Mutec MC-3+ Reclocker ->
MiniDSP 4x10HD -> 'Martion Bullfrog active speaker system'
(http://martion.de/product/bullfrogactive)
medium: piCorePlayer -> ifi micro iDSD -> Cayin A-55 T -> Sonics
Amerigo
small: piCorePlayer -> HifiBerry DAC -> Abacus Prepino -> DIY Amplifier
"the full swing" -> DIY Coax Monitor
kitchen: piCorePlayer -> HifiBerry Amp2 -> JBL Control One Pro
workshop: Squeezebox Radio

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

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


Re: [SlimDevices: Plugins] SqueezeLite on Windows pausing, interruption, dropout of audio every 5 minutes

2021-01-04 Thread gordonb3


Oh... That's pretty interesting. Apparently the Synology shell is
something of a virtualization layer on top of the actual OS. Shame that
the SSM tool does not display vital drive information like LCC, but with
a 20 minute sleep setting I would not expect issues with park/unpark.
Should this be the case anyway you should definitely be able to identify
it by a ticking sound coming from the unit. Do note that RAID 5 is a
three disk configuration, so one of your disks must function as a spare.
Does SSM tell you which one is which, i.e. which one is the spare? Two
types of logic might apply here, just follow the numerical order or skip
one of the centre two disks to reduce heat exchange between the disks,
so drawing any conclusions from it will most likely prove wrong, but I
would be very suspicious if the spare happened to be sda.

That said, I think we may have gotten off-track here a bit as I was
wondering if you could verify this behaviour with the Duet you own and
then noticed that you had mentioned to run piCorePlayer as well and not
seeing the issue there. That impluiues that the problem is on the client
side, not the server. It may be interesting to verify TCP connectivity
on other protocols, in particular SMB. Do you have active drive mappings
to the Synology on the Windows client? If not, create one and keep an
Explorer window with folder listing open without clicking the mapped
drive. If after some time (probably about 5 minutes or so) you see a red
X appear over the mapped drive this means that the TCP connection has
actively been disconnected, which should not happen.



gordonb3's Profile: http://forums.slimdevices.com/member.php?userid=71050
View this thread: http://forums.slimdevices.com/showthread.php?t=113554

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-01-04 Thread MDE


Many thanks for the continuing developments. I'm assuming it's probably
best for ordinary mortals to await the release of 2.2. I look forward to
that.
What would be really really nice would be the ability to use a custom
format string :D



MDE's Profile: http://forums.slimdevices.com/member.php?userid=49291
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] SqueezeLite on Windows pausing, interruption, dropout of audio every 5 minutes

2021-01-04 Thread foopydog


gordonb3 wrote: 
>  Is SqueezeLite a 64-bit app? 
No, this is the 32-bit build 1313 which ralphy put up to help
troubleshoot this issue.

>> it possible that your hard drives are set to park when they are not
in use? 

Yes. here is how they are set up:
32835

Hibernation happens after 20 minutes, and I have also set up logging for
this. Looking at the logs, I see the last hibernation activity was 8
months ago. That makes sense, because this page:
https://www.synology.com/en-global/knowledgebase/DSM/help/DSM/AdminCenter/system_hardware_hibernation
explains that certain services, such as the Logitech Media Server need
constant access to disk, so if they are running, hibernation usually
doesn't happen, and that is the case with me. 

>>applications report 8-byte length winsock errors that need to be
masked 0x to resolve to a usable 10xxx decimal error code.

In that case, it would be helpful to use a #computer-directive to check
for 32/64 bitness, and use the suggested logic to resolve the
error-code. I hope ralphy can easily make the change, and I'll rerun my
test to see if I can get that error code. 

>> if you have installed `green` drives they will actually do that
themselves without the OS telling them. 
I am aware that these desktop-type drives have this power-saving
'feature' which causes problems for NAS. I have Toshiba NAS drives, and
these are not the 'green' type drives. 

Looking at the hard drives:

admin@nas:~$ sudo smartctl -a /dev/sda
smartctl 6.5 (build date May  7 2020) [x86_64-linux-4.4.59+] (local
build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke,
www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:   TOSHIBA
Product:  HDWN160
Revision: FS1M
User Capacity:6,001,175,126,016 bytes [6.00 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
LU is fully provisioned
Rotation Rate:7200 rpm
Form Factor:  3.5 inches
Logical Unit id:  0x5398ac581f2a
Serial number:78NUK021FAXG
Device type:  disk
Local Time is:Mon Jan  4 09:47:49 2021 PST
SMART support is: Unavailable - device lacks SMART capability.

=== START OF READ SMART DATA SECTION ===
Current Drive Temperature: 0 C
Drive Trip Temperature:0 C

Error Counter logging not supported

[GLTSD (Global Logging Target Save Disable) set. Enable Save with '-S
on']
Device does not support Self Test logging


Here we don't see all the information, but with the Synology Storage
Manager I can see SMART and other info about my 4 disks in raid-5. 
32837

Also: 

admin@nas:~$ sudo btrfs device stats .
[/dev/mapper/cachedev_0].write_io_errs   0
[/dev/mapper/cachedev_0].read_io_errs0
[/dev/mapper/cachedev_0].flush_io_errs   0
[/dev/mapper/cachedev_0].corruption_errs 0
[/dev/mapper/cachedev_0].generation_errs 0

We can see that the Synology reports good health, and this is good for
all drives. With 15,000 hours on the drives, they have had about 2 years
of operation. I run a monthly health report on the drives, and they have
always reported good health. There is no reason to think that these
issues are related to drive health.

I'm going to play with Wireshark to see if I can gain some insight into
the TCP activity surrounding this outage issue.

Thanks


+---+
|Filename: Drive-health.JPG |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32837|
+---+


foopydog's Profile: http://forums.slimdevices.com/member.php?userid=71156
View this thread: http://forums.slimdevices.com/showthread.php?t=113554

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-01-04 Thread PasTim


cpd73 wrote: 
> You do no need to use mkrel.py, that is only needed to create minfied
> builds, etc. It works with the current checkout, so does not care about
> branch, etc.
> 
> To use a git/development build you simply need to copy the contents of
> the 'MaterialSkin' folder to your Plugins folder (or use a sym-link with
> Linux)
I'm not sure I quite understand, but never mind, I don't want to waste
your time.  

I've changed the version in install.xml to 2.1.5, so when 2.2 is
released I can upgrade to that.

I have been using a private repo and installing from there, so needed an
install zip LMS understood, with a shasum and the rest, rather than
changing the contents of the plugin directory directly..



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

2021-01-04 Thread cpd73


PasTim wrote: 
> I can only think that the mkrel.py to 2.2.0 did not work quite correctly
> now the 2.2 release directory does not exist

You do no need to use mkrel.py, that is only needed to create minfied
builds, etc. It works with the current checkout, so does not care about
branch, etc.

To use a git/development build you simply need to copy the contents of
the 'MaterialSkin' folder to your Plugins folder (or use a sym-link with
Linux)



*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-01-04 Thread PasTim


PasTim wrote: 
> Odd.  I tried going back to a 2 line display for the queue, as shown in
> your sample, but it still doesn't display in now playing, as shown in my
> sample.  The data is definitely there, with the right options chosen,
> and shows in the queue.
> 
> I downloaded the master only a few hours ago, used mkrel.py to generate
> the release as 2.2.0, removed the plugin, installed the new build, and
> ran it (this is how I've done it before and it's worked thus far). 
> Maybe something went awry with the mkrel since 2.2 is no longer on
> github?
> 
> Was this a recent change?  Is there any way I could trace the issue for
> myself?
I deleted the MaterialSkin Plugin directory and used your instructions
to link MaterialSkin to a directory cloned from github and then "git
checkout master".  The now playing line now works as expected.  LMS now
thinks MaterialSkin needs updating to 1.7.3 (from DEVELOPMENT), but I
won't until it shows 2.2.

I can only think that the mkrel.py to 2.2.0 did not work quite correctly
now the 2.2 release directory does not exist.

Thanks for all your efforts and quick responses.

I took a quick look at MP3 tags, and as far as I can tell band is
included in ID3v2.  I have one mp3 with a band tag and it works OK.



LMS 8.0 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: YouTube Plugin (API v3)

2021-01-04 Thread justjason


it looks like google has changed the process for generating the keys. I
am not able to use the search function and have been trying to generate
new APi as mentioned by  few users lately. I am not getting past OAuth
client ID as I can not see any option for "other"
Is there any chance of an updated "how to "?

How to use personal account
- go to Google Console Credentials and select your YouTube project
- select "Create credentials", then "OAuth client ID" and then "Other"
- choose a name or leave the default
- click "Create", this will generate a Client ID and Secret
- paste "Client ID" and "Client secret" here and click "Apply"
- click "Get Code" and if nothing appears to its right, just click
"Refresh" or refresh this LMS page
- copy the code in red and click "Click here to authorize" link . You'll
be prompted by YouTube to enter the code
- return to the LMS main screen, you can now use "My Subcriptions" and
"My Playlists"
- to remove authorizations, go to Google Console Permissions



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

2021-01-04 Thread PasTim


cpd73 wrote: 
> Works for me. I hacked composer (ABBAcomp) and conductor (ABBAcond) (not
> sure where to place band) into an MP3:
> 
> 32826
Odd.  I tried going back to a 2 line display for the queue, as shown in
your sample, but it still doesn't display in now playing, as shown in my
sample.  The data is definitely there, with the right options chosen,
and shows in the queue.

I downloaded the master only a few hours ago, used mkrel.py to generate
the release as 2.2.0, removed the plugin, installed the new build, and
ran it (this is how I've done it before and it's worked thus far). 
Maybe something went awry with the mkrel since 2.2 is no longer on
github?

Was this a recent change?  Is there any way I could trace the issue for
myself?



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

2021-01-04 Thread cpd73


PasTim wrote: 
> Sorry, I wasn't trying to comment on the 3 lines in particular.  There
> is no composer, conductor or band in 'now playing' on my system, in any
> lines.

Works for me. I hacked composer (ABBAcomp) and conductor (ABBAcond) (not
sure where to place band) into an MP3:

32826


+---+
|Filename: Screenshot from 2021-01-04 16-12-35.png  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32826|
+---+


*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] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-01-04 Thread Mirage


mherger wrote: 
> > Can this problem come and go? Is the general recommendation now to get
> a
> > client ID, even if Spotify works now?
> 
> Rate limiting usually works on quota: as long as you're below the 
> threshold, you're good. If you happen to be the unlucky guy, you're too
> 
> late, and somebody else already has eaten your piece of the cake.
> 
> Therefore yes, this can come and go. With high activity times it's 
> likelier, in the middle of the night less so.
> 
> Unfortunately yes, for the time being I recommend using your own client
> ID.
> 
> -- 
> 
> Michael

Thanks for your prompt reply Michael! Then I will go ahead and get my
own Client ID.

The more of us getting their own, the more of the cake left for the
others! :)



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

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


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

2021-01-04 Thread Michael Herger

Can this problem come and go? Is the general recommendation now to get a
client ID, even if Spotify works now?


Rate limiting usually works on quota: as long as you're below the 
threshold, you're good. If you happen to be the unlucky guy, you're too 
late, and somebody else already has eaten your piece of the cake.


Therefore yes, this can come and go. With high activity times it's 
likelier, in the middle of the night less so.


Unfortunately yes, for the time being I recommend using your own client ID.

--

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


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

2021-01-04 Thread Mirage


A few days ago I had the problem where it says I should get a client ID.
As I assumed it was related to that I just changed to new Pi 4 server I
asked about it in this thread:
https://forums.slimdevices.com/showthread.php?113512-ANNOUNCE-piCorePlayer-7-0-0=1001832=1#post1001832

After reading the replies I understod that that it was related to the
client ID. When I tried Spotify later it worked as usual.

Can this problem come and go? Is the general recommendation now to get a
client ID, even if Spotify works now?

When I looked at settings for Spotty now I found something I haven't
seen before. Next to my account it says "Import" and I can choose Yes or
No (it's set to No). What is this?



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

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


Re: [SlimDevices: Plugins] MusicIP on Ubuntu 18.04

2021-01-04 Thread chaug


I have finally figured out the location of the recipes.xml file. Or
rather: I figured out that the mmm.ini also needs to be in the correct
place (apparently, MusicIP just runs with some hard coded default
settings if it doesn't find the mmm.ini.)

So here is what I did:

  
- Locate the file MusicMagicServer in the terminal
- run   
Code:

./MusicMagicServer -verbose start


- In the response you will see where it is looking for the mmm.ini:
Code:

Reading settings from /home/username/.MusicMagic/mmm.ini


- Make sure your mmm.ini is exactly in that location and check/modify
  the cache path to your default.m3lib provided in the mmm.ini. (I
  believe that if it doesn't find any mmm.ini it assumes that same path
  as the location for the default.m3lib, but if you specify a different
  path in the mmm.ini, it will use that.
- Put your recipes.xml in the same directory as the default.m3lib
  mm.ini (e.g. /home/username/.MusicMagic/) [Disclaimer: if this doesn't
  work, try putting it where the mmm.ini is. In my case the two are
  identical]
- Restart MusicMagicServer (it seems to read the recipe files only at
  startup)
- Point your broswer to   
Code:

http://:10002/api/recipes?submit=Show+Recipes

 and you should see a list of your recipes as defined in the
  recipes.xml.
  

Since the existing Web-UI doesn't have a button to show the recipes, I
added one. Feel free to use my index.html which you can find at
https://github.com/tophee/MusicIP-Web-UI/blob/main/index.html



*Server*: LMS 7.9.3 on an Ubuntu 18.04 virtual machine
*Players*: Radio, Touch, Duet (Receiver & Controller), 2 Booms
*Remote control apps*: SqueezePad (iOS), Squeezecontroller (Android)
*Important plugins*: Trackstat, Spicefly Sugarcube, Lazy Search Music,
Custom Browse, Multi Library, Material Skin

chaug's Profile: http://forums.slimdevices.com/member.php?userid=47641
View this thread: http://forums.slimdevices.com/showthread.php?t=108991

___
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-01-04 Thread Stingracer


Hi there,

I am using a SBT with CustomClock Screensaver SDT. In SDT settings I set
a weahter.com id and a wunderground id (see picture).  But on the
display you can only see the temperature from weather.com. The data from
weather.com is not overwritten by the data from Wunderground. what have
I done wrong?

Thanks for your help!

32825


+---+
|Filename: Wunderground.JPG |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32825|
+---+


Stingracer's Profile: http://forums.slimdevices.com/member.php?userid=71190
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-01-04 Thread PasTim


cpd73 wrote: 
> You never asked about 3 lines. This is about showing artist, composer,
> conductor, and band - all of these will be on the same line.
Sorry, I wasn't trying to comment on the 3 lines in particular.  There
is no composer, conductor or band in 'now playing' on my system, in any
lines.
32824


+---+
|Filename: Screenshot from 2021-01-04 14-22-41.jpg  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32824|
+---+


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

2021-01-04 Thread cpd73


PasTim wrote: 
> I downloaded and installed master just now, but I don't see a 3 line
> 'now playing', only 2 (at the bottom of the screen, or expanded to fill
> the screen, on a browser).  The playlist (by which I mean the queue) has
> 3 lines.  Am I missing a setting somewhere, or am I misunderstanding?

You never asked about 3 lines. This is about showing artist, composer,
conductor, and band - all of these will be on the same line.



*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-01-04 Thread PasTim


cpd73 wrote: 
> Should be in now-playing too.
I downloaded and installed master just now, but I don't see a 3 line
'now playing', only 2 (at the bottom of the screen, on a browser).  The
playlist has 3 lines.  Am I missing a setting somewhere, or am I
misunderstanding?



LMS 8.0 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] Unable to get Spotty to run

2021-01-04 Thread Malcolmr


Problem solved:

Visual C runtime was installed in the last couple of days - when Spotty
reported that it was required and I used the link in the Spotty settings
page which contained the error message about requiring C++. 
Uninstalling and reinstalling made no difference but downloading the
latest version of C++ redistributable solved the problem.  The version
linked from Spotty is 14.0.23026.0 and it is now working with
14.28.29325.

Thanks for your help.

Malcolm



Malcolmr's Profile: http://forums.slimdevices.com/member.php?userid=71180
View this thread: http://forums.slimdevices.com/showthread.php?t=113596

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-01-04 Thread PasTim


cpd73 wrote: 
> 2.2 has been merged into master => master will be 2.2
Thanks.  I guess I should wait until that shows up in the standard
plugins?



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

2021-01-04 Thread cpd73


PasTim wrote: 
> Version 2.2 doesn't seem to be in github now.  Master says it is still
> 2.1.3.  Can I still get 2.2?

2.2 has been merged into master => master will be 2.2



*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-01-04 Thread PasTim


cpd73 wrote: 
> Should be in now-playing too.
Version 2.2 doesn't seem to be in github now.  Master says it is still
2.1.3.  Can I still get 2.2?



LMS 8.0 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] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-01-04 Thread Wigster


Him

I just wanted to say that I've been suffering quite a lot of problems
with Spotty and especially using Spotify Connect with LMS on Windows.
It's never been stable.

I finally had time to deinstall the plugin, delete all the folders and
to start from scratch. I've also added my own Spotify Client ID. And now
everything is beautifully working.

I started from the initial Spotty version, so presumably some gunk had
built up in the settings. Worth a try if you are suffering.

Thanks a lot Michael!



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

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


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

2021-01-04 Thread bpa


Nick_G wrote: 
> Hi bpa. No it is on a Raspberry Pi (2nd iteration IIRC).

OK strange that "odroid" appears in your log above - must be a Max2play
thing.

Code:


  rm: cannot remove `/etc/init/whoopsie.conf': No such file or directory
  rm: cannot remove `/etc/rsyslog.d/50-default.conf': No such file or directory
  crontab: user `odroid' unknown
  crontab: user `odroid' unknown
  Factory Settings available
  OK




bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
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-01-04 Thread cpd73


PasTim wrote: 
> Wait for version 2.2 which has options to include composer and/or
> conductor and/or band, in the track info in the playlist (although not
> now playing). 

Should be in now-playing too.



*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] Unable to get Spotty to run

2021-01-04 Thread Michael Herger

Running spotty.exe results in an error message "The application was
unable to start correctly (0xc07b).  Click OK to close the
application."


Did you install the MS Visual C 2015 runtime recently? Try re-installing it.

--

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


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

2021-01-04 Thread Nick_G


bpa wrote: 
> It looks like Nick_g is has max2play on an Odroid not raspberry Pi.
> 
> I should clarify 
> 
> IO::Socket::SSL and OpenSSL are part of or dependent on OS platform (in
> this case Max2play) and not LMS.

Hi bpa. No it is on a Raspberry Pi (2nd iteration IIRC).



Nick_G's Profile: http://forums.slimdevices.com/member.php?userid=38427
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] Unable to get Spotty to run

2021-01-04 Thread Malcolmr


Hi Michael

Running spotty.exe results in an error message "The application was
unable to start correctly (0xc07b).  Click OK to close the
application."



Malcolmr's Profile: http://forums.slimdevices.com/member.php?userid=71180
View this thread: http://forums.slimdevices.com/showthread.php?t=113596

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-01-04 Thread PasTim


MDE wrote: 
> That just affects browsing, not Now Playing as far as I can see.
Wait for version 2.2 which has options to include composer and/or
conductor and/or band, in the track info in the playlist (although not
now playing).  Meanwhile, if you include the genres for composer in the
settings that should show in the playlist, but not conductor.



LMS 8.0 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 : BBC Sounds Plugin

2021-01-04 Thread bpa


expectingtofly wrote: 
> 
> 
> Probably worth starting a new thread for your max2play problem so it
> doesn't get mixed up with the BBC Sounds chat.

It looks like Nick_g is has max2play on an Odroid not raspberry Pi.

I should clarify 

IO::Socket::SSL and OpenSSL are part of or dependent on OS platform (in
this case Max2play) and not LMS.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
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 : BBC Sounds Plugin

2021-01-04 Thread Man in a van


This box
32823


+---+
|Filename: nick.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32823|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
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 : BBC Sounds Plugin

2021-01-04 Thread expectingtofly


Nick_G wrote: 
> Aha! That worked! I assumed that because I was already signed in via the
> BBC online it would see that and therefore work. Hence my thoughts about
> not having the most up-to-date LMS. It would be good to get the max2play
> problem fixed though.
> 
> Thanks for that.

Thats great. :)

Probably worth starting a new thread for your max2play problem so it
doesn't get mixed up with the BBC Sounds chat.



*BBC Sounds Plugin Wiki* : 
https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki

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 : BBC Sounds Plugin

2021-01-04 Thread Nick_G


expectingtofly wrote: 
> You need to sign in on the setting page on Advanced->BBC Sounds.   Do
> you get an error when you sign on on that page with the BBC Account
> credentials?

Aha! That worked! I assumed that because I was already signed in via the
BBC online it would see that and therefore work. Hence my thoughts about
not having the most up-to-date LMS. It would be good to get the max2play
problem fixed though.

Thanks for that.



Nick_G's Profile: http://forums.slimdevices.com/member.php?userid=38427
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] Looking for someone willing to update Inguz EQ/DRC settings page

2021-01-04 Thread Wiredcharlie


The subtle use of EQ is by far the most significant way you can improve
the sound of your system without spending any money. I am actually
amazed that a system as mature as LMS does not provide EQ apart from via
an unsupported plugin. Looking at inguzeq.prefs, EQ is arranged as
frequency/dB adjustment. A new interface to edit this file does not need
to be as ambitious as the Silverlight frequency graph implementation. I
just wish I was smart enough to do it!

Tony



Wiredcharlie's Profile: http://forums.slimdevices.com/member.php?userid=35115
View this thread: http://forums.slimdevices.com/showthread.php?t=113604

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


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

2021-01-04 Thread Man in a van


Nick_G wrote: 
> Thanks. I presume version 8.2 for Mac OS X is the one I want, but I'm
> not sure where exactly I copy and paste it to on the LMS web interface.
> Do you mean the 'Additional Repositories' box at the bottom of the
> Plugins page?


No, not that one.

I did a test M2P last week.

I installed this image (buster) on a rpi

https://www.max2play.com/en/download/46152/

Checked that it was up to date

Then navigated to the Squeezebox page

on this page, at the top, there is a box from which one can select a LMS
version

I copied and pasted this link int o the box and it loaded without a
problem :)

http://downloads.slimdevices.com/nightly/8.1/lms/e64c0e31caf4ebd7a77ce480db3395e35d33bd6e/logitechmediaserver_8.1.1~1609569900_arm.deb

Be sure to make a copy of your current image before you update LMS

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

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


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

2021-01-04 Thread slartibartfast


Nick_G wrote: 
> I've just installed the BBC Sounds plugin here. When selecting it I get
> the not signed into account error, and reading the last couple of pages
> it's presumably because my LMS isn't up-to-date enough, as I'm om LMS
> 7.9.2. However, whe I go to the max2play.local page to update LMS, it
> thinks about it and after a short while says 'Update Not Successful.'
> This is the info given:
> 
> Running Check for Plugin Updates and install if available
> Max2Play update started
> Click here to show detailed information
> Get Data
> Install Webinterface
> Archive: /opt/max2play/cache/webinterface.zip
> Install Scripts
> Archive: /opt/max2play/cache/scripts.zip
> rm: cannot remove `/etc/init/whoopsie.conf': No such file or directory
> rm: cannot remove `/etc/rsyslog.d/50-default.conf': No such file or
> directory
> crontab: user `odroid' unknown
> crontab: user `odroid' unknown
> Factory Settings available
> OK
> sed: can't read /etc/systemd/system.conf: No such file or directory
> usermod: user 'mpd' does not exist
> chown: invalid user: `mpd:audio'
> Get Plugin from
> http://shop.max2play.com/media/downloadable/beta/squeezeplug.tar
> Load Plugin from tar
> --2021-01-03 23:11:08--
> http://shop.max2play.com/media/downloadable/beta/squeezeplug.tar
> Resolving shop.max2play.com (shop.max2play.com)... 172.67.133.153,
> 104.28.28.89, 104.28.29.89, ...
> Connecting to shop.max2play.com
> (shop.max2play.com)|172.67.133.153|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location:
> https://shop.max2play.com/media/downloadable/beta/squeezeplug.tar
> [following]
> --2021-01-03 23:11:08--
> https://shop.max2play.com/media/downloadable/beta/squeezeplug.tar
> Connecting to shop.max2play.com
> (shop.max2play.com)|172.67.133.153|:443... connected.
> GnuTLS: A TLS fatal alert has been received.
> Unable to establish SSL connection.
> tar: This does not look like a tar archive
> tar: Exiting with failure status due to previous errors
> Installing Plugin
> Controller OR View Files are missing in the Plugin - Install canceled
> Copy custom header files
> mkdir: cannot create directory
> `/var/www/max2play/public/addons/squeezeplug': File exists
> grep: /lib/systemd/system/networking.service.d/network-pre.conf: No such
> file or directory
> 
> UPDATE NOT SUCCESSFUL 
> 
> Any ideas please? I haven't done any updates from the max2play web
> interface for months, but they always worked previously. If I can't
> update LMS it looks like the BBC Sounds plugin will be dead.
> 
> Thanks.The references to Odroid are strange. How did you install your 
> Max2Play?

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

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


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

2021-01-04 Thread expectingtofly


Nick_G wrote: 
> I've just installed the BBC Sounds plugin here. When selecting it I get
> the not signed into account error, and reading the last couple of pages
> it's presumably because my LMS isn't up-to-date enough.

You need to sign in on the setting page on Advanced->BBC Sounds.   Do
you get an error when you sign on on that page with the BBC Account
credentials?



*BBC Sounds Plugin Wiki* : 
https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki

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 : BBC Sounds Plugin

2021-01-04 Thread Nick_G


Man in a van wrote: 
> Hi Nick
> 
> first is your M2P up to date ?
> 
> and is it the Buster image
> 
> select your lms version from here
> 
> http://downloads.slimdevices.com/nightly/index.php
> 
> and copy paste the url into the box on the lms install page

Thanks. I presume version 8.2 for Mac OS X is the one I want, but I'm
not sure where exactly I copy and paste it to on the LMS web interface.
Do you mean the 'Additional Repositories' box at the bottom of the
Plugins page?



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