[SlimDevices: SqueezeCenter] Programmatically remove/add plugin and or repositories as post install

2022-12-03 Thread chourmovs


Hi,

I'm today developing a script to install LMS on a headless server and I
would like to keep reference to the official repo of LMS while changing
the plugin installed by default and adding new ones to avoid painful or
unwanted configuration to basic user.
Is there a way to perform the trick via CLI, API call or by altering
config file the good old way ?

Hope this is clear enough

Thank you by advance for your kind support

Vincent S



chourmovs's Profile: http://forums.slimdevices.com/member.php?userid=72073
View this thread: http://forums.slimdevices.com/showthread.php?t=117156

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


Re: [SlimDevices: SqueezeCenter] Programmatically remove/add plugin and or repositories as post install

2022-12-03 Thread Michael Herger
There's no well defined or documented way to manage plugins outside the 
web UI. But what I could imagine might work is to edit the 
plugin/state.prefs file inside your LMS' prefs folder. Look what the web 
UI does when you try to install a plugin, then do this in your script:


- install a plugin in LMS
- do NOT restart LMS when asked to do so, but shut it down
- look at the above file and what state it has for the freshly added plugin
- apply the same state to any other plugin you want to install
- start LMS

Hopefully this would automatically install the plugins. I'm not sure 
this will work without looking at the code. Maybe you'd have to download 
the plugin downloadable files yourself beforehand. But basically that's 
the way I'd imagine could work.

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


Re: [SlimDevices: SqueezeCenter] Programmatically remove/add plugin and or repositories as post install

2022-12-03 Thread chourmovs


Thank you Michael, I will try your way and will do the same with new
repository. 
I'm surprised that even you dont know exactly how plugin works outside
web ui
a good explanation why I didn't found anything and why thousands of "non
logitech" users begin their post install by removing most of the plugins
for years without complaining



chourmovs's Profile: http://forums.slimdevices.com/member.php?userid=72073
View this thread: http://forums.slimdevices.com/showthread.php?t=117156

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


Re: [SlimDevices: SqueezeCenter] DeltaWave show LMS and Squeezelite transcoding are not bit perfect with FLAC

2022-12-03 Thread zzzap


Ron F. wrote: 
> My comment here could be construed as naive, but assuming the question
> is bit-perfect output from a Squeezelite instance running on RPi-OS,
> (output samples to stdout using -o -) then what happens if in LMS, the
> player's audio volume control setting option is fixed to 100% ??? I
> imagine the OP is already doing this and I missed the comment, just
> thought I would ask.
> 
> Edit: ALSA Master volume also set to 100% ?

Not at all. As mentioned volume fixed at 100% with replay gain off. But
here is the thing, if amplitude is changes between two takes then all
audio samples would change for that file unless we were juggling the
volume knob.
Here I get more than 40% of the data correct. And looking at my first
post the spectogram are mostly green but not all green as it should be
as we still are at the pure "-data transport layer-" of the audio with
no intended DSP. 

And given both playback from WAV and FLAC versions are done with the
same settings on both the transmitting side and recorder with the WAV
file comming in as bit perfect nothings changed other than LMS creates
the stream from what the FLAC application sent to 'stdout'. And I
believe I've proven the FLAC configuration on LMS do produce identical
file as the WAV as we already espected.

At this stage I'm looking at this fenomen as corrupted data. But why it
manifest itself mostly in the high frequency band I know to little about
digital audio to form a theory about. If anyone more experienced
programming audio could chime in?

Before stumbling into the code stack (thanks @Roland0) I wonder if I can
trick the convert.conf to sendt WAV to stdout? I'll look into that to
check if similar artefacts are added.



zzzap's Profile: http://forums.slimdevices.com/member.php?userid=31947
View this thread: http://forums.slimdevices.com/showthread.php?t=117152

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


Re: [SlimDevices: SqueezeCenter] DeltaWave show LMS and Squeezelite transcoding are not bit perfect with FLAC

2022-12-03 Thread bpa


zzzap wrote: 
> Not at all. As mentioned volume fixed at 100% with replay gain off. But
> here is the thing, if amplitude is changes between two takes then all
> audio samples would change for that file unless we were juggling the
> volume knob.
> Here I get more than 40% of the data correct. And looking at my first
> post the spectogram are mostly green but not all green as it should be
> as we still are at the pure "-data transport layer-" of the audio with
> no intended DSP. 
> 
> And given both playback from WAV and FLAC versions are done with the
> same settings on both the transmitting side and recorder with the WAV
> file comming in as bit perfect nothings changed other than LMS creates
> the stream from what the FLAC application sent to 'stdout'. And I
> believe I've proven the FLAC configuration on LMS do produce identical
> file as the WAV as we already espected.
> 
> At this stage I'm looking at this fenomen as corrupted data. But why it
> manifest itself mostly in the high frequency band I know to little about
> digital audio to form a theory about. If anyone more experienced
> programming audio could chime in?
> 
> Before stumbling into the code stack (thanks @Roland0) I wonder if I can
> trick the convert.conf to sendt WAV to stdout? I'll look into that to
> check if similar artefacts are added.

If running on a Linux system - you can insert a "tee" command into any
convert.conf command line to save data into a file and still send data
to normal player. Changes to convert.conf file need LMS to be restarted
to take effect.
Alternative make the rule in the conf file execute a shell script
instead of the "flac" or whatever - the shell script can be altered
easily without having to restart LMS.

There are user of audio formats such as DTS (and DSD?) which are packed
into Flac and these are decoded and play OK - this wouldn't happen if
there was corruption.



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

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


Re: [SlimDevices: SqueezeCenter] Programmatically remove/add plugin and or repositories as post install

2022-12-03 Thread Michael Herger

a good explanation why I didn't found anything and why thousands of "non
logitech" users begin their post install by removing most of the plugins
for years without complaining


Haha... I did indeed turn off a few plugins by default in 8.3. But I 
still think it's better if the user who cares can disable stuff he 
doesn't want, rather than have the beginner try to figure out which 
plugin he wants.


If you want to disable some default plugins, and you're working on your 
own fork anyway, you could simply change the "defaultState" in the 
corresponding install.xml file.

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


[SlimDevices: SqueezeCenter] BBC changing mid 2023

2022-12-03 Thread dkfackler


Greetings

I've been hearing announcements over BBC3 that changes are coming; those
of us outside UK will no longer be able to access BBCSounds, etc.  BBC
recommends that owners of internet radios and smart speakers contact the
hardware manufacturer for help.  As our beloved Logitech device are no
longer supported, are there any options other than using a computer?

~dk



Four SBR(one 'original' and three 'improved' UEs)
Boom with Yamaha sub
One SB2 in the workshop
Vintage Crosley cabinet housing PiCore, amp and speakers. Great 1940s
vibe!
Rpi 3 runs LMS; music stored on NAS

dkfackler's Profile: http://forums.slimdevices.com/member.php?userid=59286
View this thread: http://forums.slimdevices.com/showthread.php?t=117159

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


Re: [SlimDevices: SqueezeCenter] BBC changing mid 2023

2022-12-03 Thread markiii


thats a copout, even stuff still in production the manufacturer will
have no clue



PiCorePlayer 8.2 on Allo Digi One Signature (Lounge)
PiCorePlayer 8.2 with  Hifiberry Digi+ Material running on PI for
control (Office)
PiCorePlayer 8.2 with pi official touchscreen and Hifiberry
DAC+(Kitchen)
Radio  (Bedroom)
PiCorePlayer 8.2 with Allo BOSS  DAC (Bedroom)
PiCorePlayer 8.2 with Hifiberry AMP+. Squeezelite=x for control
(Garage)
PiCorePlayer 8.2 with Hifiberry AMP+(Patio 2)
PiCorePlayer 8.2 with Hifiberry AMP+(Patio 2)

LMS 8.3 on DIY unRaid 6.11.1 Server (Seneca HDs)

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

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


Re: [SlimDevices: SqueezeCenter] BBC changing mid 2023

2022-12-03 Thread AngloCuencano

dkfackler wrote: 
> Greetings
> 
> I've been hearing announcements over BBC3 that changes are coming; those
> of us outside UK will no longer be able to access BBCSounds, etc.  BBC
> recommends that owners of internet radios and smart speakers contact the
> hardware manufacturer for help.  As our beloved Logitech device are no
> longer supported, are there any options other than using a computer?
> 
> ~dk

I don't think it is correct that users outside the UK will lose access
to BBC Sounds, just that the way you are currently listening will stop.
Most probably, you are using Shoutcast. This information from the BBC
explains the situation.


> Why am I hearing a message advising the stream I am listening to will
> stop working mid-2023?
> 
> The BBC uses several streaming technologies to deliver BBC Sounds. If
> you are hearing a message informing of this change, you are listening
> using Shoutcast. The BBC will stop supporting Shoutcast by mid-2023. 
> 
> Why are we making these changes? 
> 
> Shoutcast is an older streaming technology and many connected radio
> devices in the UK no longer use it for BBC streams. Ending support for
> Shoutcast will enable us to focus on the two most popular technologies
> currently used – HLS and DASH. As well as delivering better value, it
> will allow us to understand more on how our content is consumed. This
> forms part of our strategy for BBC Sounds and is important to help us
> improve the services we offer to our listeners.  
> 
> We informed manufacturers and other service providers of this change in
> May 2022. 
> 
> I hear the message – what should I do? 
> 
> If you are using an internet radio or smart speaker, please contact the
> manufacturer. It might be possible for the device to be updated to use
> another of our supported streams.  
> 
> If you can hear the message when listening to BBC services via the web
> or mobile phone, please listen on BBC Sounds instead.



AngloCuencano's Profile: http://forums.slimdevices.com/member.php?userid=64040
View this thread: http://forums.slimdevices.com/showthread.php?t=117159

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


Re: [SlimDevices: SqueezeCenter] BBC changing mid 2023

2022-12-03 Thread bpa


dkfackler wrote: 
> Greetings
> 
> I've been hearing announcements over BBC3 that changes are coming; those
> of us outside UK will no longer be able to access BBCSounds, etc.  BBC
> recommends that owners of internet radios and smart speakers contact the
> hardware manufacturer for help.  As our beloved Logitech device are no
> longer supported, are there any options other than using a computer?

Are you sure the message is just about ending of the BBC using shoutcast
service ? (i.e. plain http/mp3 service) - just DASH and HLS being
available.
So if you are not using LMS - then you will not be able to play BBC
stations as SB player cannot play HLS and DASH streams.
The BBC Sounds plugin for LMS logs into BBC and AFAIK there is no
announcement to end BBC Sounds for non UK listeners



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

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


Re: [SlimDevices: SqueezeCenter] DeltaWave show LMS and Squeezelite transcoding are not bit perfect with FLAC

2022-12-03 Thread zzzap


Thanks @bpa. More to digest. The tee command can prove useful to compare
Ogg/FLAC stream to ffmpeg capture at alsa output. Ahh of course,
directing the convertion to an application of own making opens up many
possibilities. Thanks, inspires to think of new ways of using LMS.

With data corruption I'm thinking at byte level not interupting the
stream. As in why does DeltaWave find 1 dB difference in RMS level and
still return 40% bit accuratsy? I would expect it to be null when
amplitude differs. And why would higher frequencies be less accurate?

THE BIG ELEPHANT IN THE ROOM ARE OF COURSE IF DELTAWAVE RESULTS ARE TO
BE TRUSTED [/B]WITH CURRENT SETUP. 

NOW BANGING AT THIS FOR A COUPLE OF DAYS AND NOW WITH SEVERAL DIFFERENT
REFERENCE FILES LATER A PATTERN SEEM TO EMERGE. TODAY I WHERE ACTUALLY
ABLE TO HAVE DELTAWARE SOMETIMES REPORT BIT PERFECT CAPTURES FROM FLAC
FILES. 
WHEN THIS HAPPENS DELTAWARE USE MUCH LESS TIME TO COME TO THIS
CONCLUSION. OFTEN BUT NOT ALWAYS IT WARNS IT CHANGE METHODS TO ALIGN THE
TRACKS FOR COMPARISON AND WOULD SPEND LONGER TIME BEFORE FINISHING. AND
WHEN THIS HAPPEN IT IS MORE LIKELY THE COMPARANCE WILL SHOW LESS
ACCURACY.

NOW IF DELTAWAVE FAILS TO ALIGN THE TWO FILES IT COMPARES THIS COULD
HELP EXPLAIN THE STRANGE RESULTS MENTIONED ABOVE. ALTHOUGH MY THINKING
PCM DATA SHOULD BE EXACTLY THE SAME WHERE ONLY TIME DOMAIN WITH VARYING
CLOCK ON THE CAPTURE COULD ADD TO THE COMPLEXITY.


[B]IF OTHERS WOULD TAKE PART IN DEBUNKING MY FINDINGS HERE IS MY SETUP.

RPi3 running lateset RPi-OS and Squeezelite v1.9.8-1317 installed from
'apt'. 
LMS 8.3.0 on dedicated RPi3 with RPi-OS

Tools used:
DeltaWave 2.0.4 https://deltaw.org/

To capture the stream I use
~$ ffmpeg -f alsa -channels 2 -sample_rate 44100 -i loopout
fromFLAC.wav
with /etc/asound.conf copied from bottom of this page
https://trac.ffmpeg.org/wiki/Capture/ALSA

Squeezelite output 
/etc/default/squeezelite
SL_SOUNDCARD=default

I record 2 minuttes and use the original FLAC file as Reference in
DeltaWave where I calculate the End for this file to be approx same
lenght as the recording.



zzzap's Profile: http://forums.slimdevices.com/member.php?userid=31947
View this thread: http://forums.slimdevices.com/showthread.php?t=117152

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


Re: [SlimDevices: SqueezeCenter] DeltaWave show LMS and Squeezelite transcoding are not bit perfect with FLAC

2022-12-03 Thread slartibartfast


zzzap wrote: 
> Thanks @bpa. More to digest. The tee command can prove useful to compare
> Ogg/FLAC stream to ffmpeg capture at alsa output. Ahh of course,
> directing the convertion to an application of own making opens up many
> possibilities. Thanks, inspires to think of new ways of using LMS.
> 
> With data corruption I'm thinking at byte level not interupting the
> stream. As in why does DeltaWave find 1 dB difference in RMS level and
> still return 40% bit accuratsy? I would expect it to be null when
> amplitude differs. And why would higher frequencies be less accurate?
> 
> THE BIG ELEPHANT IN THE ROOM ARE OF COURSE IF DELTAWAVE RESULTS ARE TO
> BE TRUSTED [/B]WITH CURRENT SETUP. 
> 
> NOW BANGING AT THIS FOR A COUPLE OF DAYS AND NOW WITH SEVERAL DIFFERENT
> REFERENCE FILES LATER A PATTERN SEEM TO EMERGE. TODAY I WHERE ACTUALLY
> ABLE TO HAVE DELTAWARE SOMETIMES REPORT BIT PERFECT CAPTURES FROM FLAC
> FILES. 
> WHEN THIS HAPPENS DELTAWARE USE MUCH LESS TIME TO COME TO THIS
> CONCLUSION. OFTEN BUT NOT ALWAYS IT WARNS IT CHANGE METHODS TO ALIGN THE
> TRACKS FOR COMPARISON AND WOULD SPEND LONGER TIME BEFORE FINISHING. AND
> WHEN THIS HAPPEN IT IS MORE LIKELY THE COMPARANCE WILL SHOW LESS
> ACCURACY.
> 
> NOW IF DELTAWAVE FAILS TO ALIGN THE TWO FILES IT COMPARES THIS COULD
> HELP EXPLAIN THE STRANGE RESULTS MENTIONED ABOVE. ALTHOUGH MY THINKING
> PCM DATA SHOULD BE EXACTLY THE SAME WHERE ONLY TIME DOMAIN WITH VARYING
> CLOCK ON THE CAPTURE COULD ADD TO THE COMPLEXITY.
> 
> 
> [B]IF OTHERS WOULD TAKE PART IN DEBUNKING MY FINDINGS HERE IS MY SETUP.
> 
> RPi3 running lateset RPi-OS and Squeezelite v1.9.8-1317 installed from
> 'apt'. 
> LMS 8.3.0 on dedicated RPi3 with RPi-OS
> 
> Tools used:
> DeltaWave 2.0.4 https://deltaw.org/
> 
> To capture the stream I use
> ~$ ffmpeg -f alsa -channels 2 -sample_rate 44100 -i loopout
> fromFLAC.wav
> with /etc/asound.conf copied from bottom of this page
> https://trac.ffmpeg.org/wiki/Capture/ALSA
> 
> Squeezelite output 
> /etc/default/squeezelite
> SL_SOUNDCARD=default
> 
> I record 2 minuttes and use the original FLAC file as Reference in
> DeltaWave where I calculate the End for this file to be approx same
> lenght as the recording.Are the waveforms  you feed into Deltawave exactly 
> the same number of
samples?

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

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


[SlimDevices: SqueezeCenter] Server has lost ALL of my music!!

2022-12-03 Thread Eric Seaberg


Opened the control panel today and everything is lost, even though I can
point to it and see it all there.  Running on Mac MINI 2.6GHz Quad core
i7 16GB RAM OS 10.15.7.  Has been flawless for years, but now it's
totally screwed up.

Have deleted ALL prefs and trying to start over with server 8.3.1, but
keep getting an error message in the log that another version is running
at the same time.

What's the best way to start over??!!  I'd rather not do that, but at
this point nothing else is working.



Eric Seaberg - San Diego
-A.E.S., I.E.E.E., S.M.P.T.E., S.P.A.R.S.-
e...@seaberg.com
_
Transporter, Multiple Duets and SB3s

Eric Seaberg's Profile: http://forums.slimdevices.com/member.php?userid=7896
View this thread: http://forums.slimdevices.com/showthread.php?t=117161

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


Re: [SlimDevices: SqueezeCenter] DeltaWave show LMS and Squeezelite transcoding are not bit perfect with FLAC

2022-12-03 Thread zzzap


slartibartfast wrote: 
> Are the waveforms  you feed into Deltawave exactly the same number of
> samples?
No, that's not necessary. Don't even have to be the same bit depth,
format or amplitude. DW will convert, seek and find start position on
its own. And then try to even out levels and clock before test for bit
accuracy.
We can use the Trim Front and End to remove part we know are not needed
or different.


Therefore in theory it should be possible to even sample a S/PDIF stream
where noise and impulse response from analog domain yet to alter the
signal. But test so far only show differences among devices, but none
yet to be bit perfect. Mind you the S/PDIF receiver will have impact on
the end result also where I've so far only have used the Fireface UCX.



zzzap's Profile: http://forums.slimdevices.com/member.php?userid=31947
View this thread: http://forums.slimdevices.com/showthread.php?t=117152

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


Re: [SlimDevices: SqueezeCenter] DeltaWave show LMS and Squeezelite transcoding are not bit perfect with FLAC

2022-12-03 Thread bpa


zzzap wrote: 
> With data corruption I'm thinking at byte level not interupting the
> stream. As in why does DeltaWave find 1 dB difference in RMS level and
> still return 40% bit accuratsy? I would expect it to be null when
> amplitude differs. And why would higher frequencies be less accurate?

This feels like an ALSA issue not an LMS one.



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

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


Re: [SlimDevices: SqueezeCenter] Server has lost ALL of my music!!

2022-12-03 Thread stereoptic


Does the activity monitor show two versions running? Is LMS running on
another item on the network?



stereoptic's Profile: http://forums.slimdevices.com/member.php?userid=53162
View this thread: http://forums.slimdevices.com/showthread.php?t=117161

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


Re: [SlimDevices: SqueezeCenter] Server has lost ALL of my music!!

2022-12-03 Thread Eric Seaberg


Nope, has always been one server running.  Been doing it this way since
2006 when I got my first Transporter but upgraded the MINI 6 or 7 years
ago.  Like I said, it just RUNS typically without any issues.

Trying to delete all prefs and start again but it's still finding
library info somewhere...



Eric Seaberg - San Diego
-A.E.S., I.E.E.E., S.M.P.T.E., S.P.A.R.S.-
e...@seaberg.com
_
Transporter, Multiple Duets and SB3s

Eric Seaberg's Profile: http://forums.slimdevices.com/member.php?userid=7896
View this thread: http://forums.slimdevices.com/showthread.php?t=117161

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


Re: [SlimDevices: SqueezeCenter] DeltaWave show LMS and Squeezelite transcoding are not bit perfect with FLAC

2022-12-03 Thread zzzap


bpa wrote: 
> This feels like an ALSA issue not an LMS one.

Quite possible, if a problem at all. I where lead in a direction due to
how the WAV file repeatedly got 100% match while the FLAC always failed
when recaptured multiple times. With now a more a extended dataset using
different input files I'm starting to a lesser degree trust DeltaWaves
results.



zzzap's Profile: http://forums.slimdevices.com/member.php?userid=31947
View this thread: http://forums.slimdevices.com/showthread.php?t=117152

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


Re: [SlimDevices: SqueezeCenter] Don't Stop The Music / LastMix

2022-12-03 Thread shinedou


mherger wrote: 
> > I have previously edited the constant MAX_TRACKS in
> DontStopTheMusic.pm
> > to increase from 5 to 10 or more. Since the recent DSTM update I am
> > unable to find that line in the file in the plugins folder. Are you
> able
> > to point me to the line I need to alter please.
> 
> Text search is powerful ;-). It's in Plugin.pm now.
> 
> -- 
> 
> Michael
Is the MAX_TRACKS setting no longer available? I can't find it.



shinedou's Profile: http://forums.slimdevices.com/member.php?userid=72027
View this thread: http://forums.slimdevices.com/showthread.php?t=106841

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


Re: [SlimDevices: SqueezeCenter] Server has lost ALL of my music!!

2022-12-03 Thread karlek


I often see this behavior, when the server failed to mount the network
drives containing my music due to a power failure or whenever the server
runs before the drives are ready. 
After that, a rescan is necessary. 
So, have you tried to restart LMS and a rescan?





karlek's Profile: http://forums.slimdevices.com/member.php?userid=64321
View this thread: http://forums.slimdevices.com/showthread.php?t=117161

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


Re: [SlimDevices: SqueezeCenter] Server has lost ALL of my music!!

2022-12-03 Thread Eric Seaberg


Not network drives... I have almost 50TB of storage all attached via
USB3.  The drives always spin up before the server does.  It is randomly
scanning and sometimes finds all the music, but most of the time
doesn't.  I'm out of time today but will look at it again later.  At
least all of the music is there as well as a complete backup.



Eric Seaberg - San Diego
-A.E.S., I.E.E.E., S.M.P.T.E., S.P.A.R.S.-
e...@seaberg.com
_
Transporter, Multiple Duets and SB3s

Eric Seaberg's Profile: http://forums.slimdevices.com/member.php?userid=7896
View this thread: http://forums.slimdevices.com/showthread.php?t=117161

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


Re: [SlimDevices: SqueezeCenter] C-3PO plugin, a trnscoding helper.

2022-12-03 Thread devgcl


ralphy wrote: 
> There are 32 and 64 bit intel builds of squeezelite 1.8.4-R2 available
> 'here'
> (https://sourceforge.net/projects/lmsclients/files/squeezelite/linux/r2/).
> 
> Note that R2 is based on a very old version of squeezelite and therefore
> is missing many enhancements and bug fixes.
Yeah I have the latest Squeezelite working so maybe wont bother R2.
In playing around I came over the Igur EQ plugin which meets most of my
needs in terms of Equalizer. Just need to play with it and see.



devgcl's Profile: http://forums.slimdevices.com/member.php?userid=68358
View this thread: http://forums.slimdevices.com/showthread.php?t=105309

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


Re: [SlimDevices: SqueezeCenter] C-3PO plugin, a trnscoding helper.

2022-12-03 Thread streifenleopard


I have quite a strange playlist problem. 
Some playlists display with all entries in the left hand window (where
you can select files).
However when I make LMS play these lists, some entries are missing in
LMS's playlist window and will not play.
This is despite the fact that the missing entries have the same
reference structure as the entries that are not missing. 
Also when I select these files alone they are displayed and played
without problem. It is the same file type all over (ie mp3s). 
The problem persists in the way that always the same files go missing. 
My playlists are .m3u-files referencing files starting with "../"



rpi 3+ with lms 8.2.0 -- rpi 2 with a hifiberry dac+ running
picoreplayer -- sbr running firmware 8.0 -- plugins: material skin, mai,
podcasts, musik - folge mir, squeezelite-x, ratings light, exclude
folders -- dsm 6.2.2 (synology disk station 115) has my music

streifenleopard's Profile: http://forums.slimdevices.com/member.php?userid=42019
View this thread: http://forums.slimdevices.com/showthread.php?t=105309

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


Re: [SlimDevices: SqueezeCenter] C-3PO plugin, a trnscoding helper.

2022-12-03 Thread streifenleopard


Uh - solved.
The reason is that some files are suppressed by selecting "do not show
lossy duplicates". 
Annoying.



rpi 3+ with lms 8.2.0 -- rpi 2 with a hifiberry dac+ running
picoreplayer -- sbr running firmware 8.0 -- plugins: material skin, mai,
podcasts, musik - folge mir, squeezelite-x, ratings light, exclude
folders -- dsm 6.2.2 (synology disk station 115) has my music

streifenleopard's Profile: http://forums.slimdevices.com/member.php?userid=42019
View this thread: http://forums.slimdevices.com/showthread.php?t=105309

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


[SlimDevices: SqueezeCenter] LMS interface awry

2022-12-03 Thread DanielTheGreat


Some unknown occurrence today caused a Windows 10 BSOD (never had one
before; only using W10 since mid-year).  After rebooting, LMS produced
strange error messages (didn't capture them) and wouldn't display the
usual interface.  I could not access its Settings, but it did offer a
selection of interfaces for me to choose.  I clicked 'Classic' (my usual
i/f), but it showed a weird interface in Firefox [v107.0.1 (64-bit); my
default browser].

After spending hours Googling, trying stuff and not getting anywhere, I
uninstalled LMS and reinstalled it from
LogitechMediaServer-8.3.0-1658898470.exe.

After going through the setup and media scanning, for a short while I
had my usual interface back.  But after clicking  (refresh), the odd
interface shown in the attached screen-shot displayed in Firefox. 
Chrome displayed slightly better, but still didn't display the standard
'Classic' interface with a 'Settings' button at the bottom, and wouldn't
allow me to horizontally resize the two halves.  And neither showed (in
Settings) a way to change the interface selection!

Can anyone please shed some light on what's going wrong and how I can
fix it.  The attached server.log might contain a few server restarts.

39295

39296

39297

39298


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


Regards,
Daniel
(Gerroa, Australia)

DanielTheGreat's Profile: http://forums.slimdevices.com/member.php?userid=13031
View this thread: http://forums.slimdevices.com/showthread.php?t=117163

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


Re: [SlimDevices: SqueezeCenter] Don't Stop The Music / LastMix

2022-12-03 Thread Michael Herger

Is the MAX_TRACKS setting no longer available? I can't find it.


It's not a setting. As outlined above it's a constant defined in that 
source file.

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


Re: [SlimDevices: SqueezeCenter] Server has lost ALL of my music!!

2022-12-03 Thread Michael Herger

Not network drives... I have almost 50TB of storage all attached via
USB3.  The drives always spin up before the server does.  It is randomly
scanning and sometimes finds all the music, but most of the time
doesn't.  I'm out of time today but will look at it again later.  At
least all of the music is there as well as a complete backup.


Anything in server.log and/or scanner.log?
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] LMS interface awry

2022-12-03 Thread mherger


Make sure you don't expose your LMS to the internet:
https://forums.slimdevices.com/showthread.php?107165-IMPORTANT-Stop-forwarding-your-LMS-ports-to-the-internet!

Then check the server.log for any error message.



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

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


Re: [SlimDevices: SqueezeCenter] Don't Stop The Music / LastMix

2022-12-03 Thread shinedou


mherger wrote: 
> > Is the MAX_TRACKS setting no longer available? I can't find it.
> 
> It's not a setting. As outlined above it's a constant defined in that 
> source file.

When I look in the plugin.pm file I only see the constant for
MIN_TRACKS. This is located in the DSTM plugin directory, correct?



shinedou's Profile: http://forums.slimdevices.com/member.php?userid=72027
View this thread: http://forums.slimdevices.com/showthread.php?t=106841

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


Re: [SlimDevices: SqueezeCenter] Don't Stop The Music / LastMix

2022-12-03 Thread Michael Herger

When I look in the plugin.pm file I only see the constant for
MIN_TRACKS. This is located in the DSTM plugin directory, correct?


This is in LastMix' Plugin.pm file.
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] Don't Stop The Music / LastMix

2022-12-03 Thread shinedou


mherger wrote: 
> > When I look in the plugin.pm file I only see the constant for
> > MIN_TRACKS. This is located in the DSTM plugin directory, correct?
> 
> This is in LastMix' Plugin.pm file.

Oh ok. My reading comprehension is obviously not what it used to be.
Thanks for steering me in the right direction.



shinedou's Profile: http://forums.slimdevices.com/member.php?userid=72027
View this thread: http://forums.slimdevices.com/showthread.php?t=106841

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