Re: [SlimDevices: SqueezeCenter] Does LMS 7.9.1 support Wavpack DSD playback?

2017-09-13 Thread bpa

michaelvv wrote: 
> I have tried to play directly on my linux box, but I'm not able to play
> other than PCM format.

This is why you need to define a new audio type for compressed DSD so
that a LMS just uncompresses and then passes DSD stream to a DSD capable
player.



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

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


Re: [SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread Stig Nygaard

d6jg wrote: 
> I agree 100% with this approach.

I don't disagree that taking a RPi is an interesting and fine way to
go...

d6jg wrote: 
> Use a NAS for what it was designed for - serving files - and not as an
> application server (which is what LMS is).

But I disagree in this. Most NAS'es are (also) made to be application
servers, and are often much more powerful than a RPi. But if you are
going to use your NAS as a pure network harddisk, buy something cheaper
than the one I suggested.



*/Stig* 
'www.*rockland*.dk' (http://www.rockland.dk) -
'www.*last.fm*/user/rockland' (https://last.fm/user/rockland) -
'www.*discogs*.com/user/StigNygaard'
(https://discogs.com/user/StigNygaard) -
'*plus.google*.com/+StigNygaard' (https://google.me/+StigNygaard)
*Server:* LMS 7.9.1 ('LmsRepack'
(http://forums.slimdevices.com/showthread.php?107180)) - 1503129892 @
Sat Aug 19 on Synology DS716+II.  *Clients:* 'RPi3 (Max2Play, 7\" touch,
HiFiBerry Digi+ Pro)'
(https://shop.max2play.com/en/raspberry-pi-2-bundle-7-display.html), SB
Touch, OrangeSqueeze/SqueezePlayer. *Livingroom HiFi:* Marantz PM6005
and F3/Lyd Audiovector 2.
Try my *'Art Grabr' (https://greasyfork.org/en/scripts/20771)*
for fetching big *cover-art* from various sites - And *'Album Linkr'
(https://greasyfork.org/en/scripts/21153)* for a better *last.fm*
desktop browser experience...

Stig Nygaard's Profile: http://forums.slimdevices.com/member.php?userid=4236
View this thread: http://forums.slimdevices.com/showthread.php?t=107979

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


Re: [SlimDevices: SqueezeCenter] Does LMS 7.9.1 support Wavpack DSD playback?

2017-09-13 Thread Kimmo Taskinen

On 13.09.2017 19:53, Kimmo Taskinen wrote:

On 13.09.2017 19:28, michaelvv wrote:

WORKS GREAT BUT THIS IS NOT DSD

Code:

 wvunpack file.wv -wq -o - | sox -q - -r 176.4k -b 24 -C 0 -t 
alsa plughw:2




This plays it as DSD DoP:

wvunpack -q file.wv --dff -o - | sox -t dff - -r 176400 -t wav -b 24 
-e signed --endian little - dop


However it requires SoX from: https://github.com/mansr/sox


And here is a patch for Audio-Scan Wavpack DSD support. Otherwise LMS 
does not detect Wavpack DSD files correctly.


diff -ruNb Audio-Scan-0.950.2.orig/include/wavpack.h Audio-Scan-0.950.2/include/wavpack.h
--- Audio-Scan-0.950.2.orig/include/wavpack.h	2017-01-04 21:24:52.287475457 +
+++ Audio-Scan-0.950.2/include/wavpack.h	2017-01-04 21:26:14.624593442 +
@@ -86,6 +86,7 @@
 #define ID_WVC_BITSTREAM0xb
 #define ID_WVX_BITSTREAM0xc
 #define ID_CHANNEL_INFO 0xd
+#define ID_DSD_BLOCK0xe
 
 #define ID_RIFF_HEADER  (ID_OPTIONAL_DATA | 0x1)
 #define ID_RIFF_TRAILER (ID_OPTIONAL_DATA | 0x2)
@@ -100,5 +101,6 @@
 int _wavpack_parse_block(wvpinfo *wvp);
 int _wavpack_parse_sample_rate(wvpinfo *wvp, uint32_t size);
 int _wavpack_parse_channel_info(wvpinfo *wvp, uint32_t size);
+int _wavpack_parse_dsd_block(wvpinfo *wvp, uint32_t size);
 void _wavpack_skip(wvpinfo *wvp, uint32_t size);
 int _wavpack_parse_old(wvpinfo *wvp);
diff -ruNb Audio-Scan-0.950.2.orig/src/wavpack.c Audio-Scan-0.950.2/src/wavpack.c
--- Audio-Scan-0.950.2.orig/src/wavpack.c	2017-01-04 21:24:52.287475457 +
+++ Audio-Scan-0.950.2/src/wavpack.c	2017-01-04 21:24:00.229297653 +
@@ -232,6 +232,11 @@
   _wavpack_parse_channel_info(wvp, size);
   break;
   
+case ID_DSD_BLOCK:
+  DEBUG_TRACE("  Sub-Chunk: ID_DSD_BLOCK (size: %u)\n", size);
+  _wavpack_parse_dsd_block(wvp, size);
+  break;
+
 default: 
   // Skip it
   DEBUG_TRACE("  Sub-Chunk: %x (size: %u) (skipped)\n", id, size);
@@ -257,6 +262,7 @@
   if ( wvp->header->total_samples && wvp->file_size > 0 ) {
 SV **samplerate = my_hv_fetch( wvp->info, "samplerate" );
 if (samplerate != NULL) {  
+  if (wvp->header->flags & 0x8000) wvp->header->total_samples *= 8; // DSD
   uint32_t song_length_ms = ((wvp->header->total_samples * 1.0) / SvIV(*samplerate)) * 1000;
   my_hv_store( wvp->info, "song_length_ms", newSVuv(song_length_ms) );
   my_hv_store( wvp->info, "bitrate", newSVuv( _bitrate(wvp->file_size - wvp->audio_offset, song_length_ms) ) );
@@ -297,6 +303,27 @@
   return 1;
 }
 
+int
+_wavpack_parse_dsd_block(wvpinfo *wvp, uint32_t size)
+{
+  if (wvp->header->flags & 0x8000) {
+unsigned char *bptr = buffer_ptr(wvp->buf);
+uint32_t samplerate_index = (wvp->header->flags & 0x780) >> 23;
+uint32_t samplerate;
+if (samplerate_index < 0xF)
+  samplerate = wavpack_sample_rates[samplerate_index] * (1 << bptr[0]) * 8;
+else
+  samplerate = 64 * 44100; // Default to DSD64 just in case  
+
+my_hv_store( wvp->info, "samplerate", newSVuv(samplerate) );
+my_hv_store( wvp->info, "bits_per_sample", newSVuv( 1 ) );
+  }
+  
+  _wavpack_skip(wvp, size);
+
+  return 1;
+}
+
 void
 _wavpack_skip(wvpinfo *wvp, uint32_t size)
 {
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread Michael Herger

PS I can't see Michael having the time to pick up the Synology LMSrepack


Unfortunately... considering the fact that our existing build systems 
are in havoc, there's no plan to add more... Need to fix what we have 
first. When I find time :-(.



thing. I am pretty sure that he himself operates a Pi + NAS set up these
days anyway.


That's correct: in the office I'm using pCP on a Pi3 to serve files from 
a ReadyNAS Duo v2 (though I got Spotty working on this today :-)). At 
home I use a Linux PC for many server duties, incl. Samba and LMS.


--

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


Re: [SlimDevices: SqueezeCenter] Does LMS 7.9.1 support Wavpack DSD playback?

2017-09-13 Thread Kimmo Taskinen

On 13.09.2017 19:28, michaelvv wrote:

WORKS GREAT BUT THIS IS NOT DSD

Code:

 wvunpack file.wv -wq -o - | sox -q - -r 176.4k -b 24 -C 0 -t alsa plughw:2



This plays it as DSD DoP:

wvunpack -q file.wv --dff -o - | sox -t dff - -r 176400 -t wav -b 24 -e 
signed --endian little - dop


However it requires SoX from: https://github.com/mansr/sox
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] Does LMS 7.9.1 support Wavpack DSD playback?

2017-09-13 Thread michaelvv

What is the point of saving "space" with wavpack 5.x (DSF,DFF) files if
we
do not play them as DSD.

I can play DSF,DFF files (DOP) using squeezelite, but if I was able of
playing the
compressed wv files roughly (50% of original DSF,DFF filesize) this
would be awesome.

I have tried to play directly on my linux box, but I'm not able to play
other than PCM format.

WORKS GREAT

Code:

sox file.dsf -r 176.4k -b 24 -t alsa plughw:2 dop



WORKS GREAT BUT THIS IS NOT DSD

Code:

wvunpack file.wv -wq -o - | sox -q - -r 176.4k -b 24 -C 0 -t alsa plughw:2 




michaelvv's Profile: http://forums.slimdevices.com/member.php?userid=59321
View this thread: http://forums.slimdevices.com/showthread.php?t=107942

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


Re: [SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread meep

Maybe a little off the wall but I use a server running unRAID for a
bunch of stuff and it's great to have everything in a single box;

-Parity protected raid array supporting multiple different drive sizes
(throw in whatever you have to hand)
-Docker support for application serving (I run LMS in a docker along
with a bunch of other apps)
-Full systems under VM (I run my main Windows workstation under a VM
plus a bunch of virtual HTPCs around the house and a Linux VM or 2)
-I run my PVR system as a Docker  (up to 8 sat/terrestrial tuners
managed by TVHeadEnd) and leverage the storage array for recordings and
a separate SSD for timeshifting.

There's very little you can think of that a sstem like this can't do and
if you need a server running anyway, why not bundle everything else into
it. (before you say reliability, I've been running the above on an 8
core AMD FX CPU with 32GB RAM for several years without issue.)

unRAID styles itself as a NAS OS with extra capabilities. It's cheap, is
well maintained and has an amazing community.



ALEXA LMS SKILL: http://www.hab-tunes.com | Twitter: '#habtunes'
(https://twitter.com/search?q=%23habtunes=typd=en)
Personal HA BLOG: http://mediaserver8.blogspot.com 

Squeezebox | Squeezebox Radio x 2  | Squeezebox Duet

meep's Profile: http://forums.slimdevices.com/member.php?userid=12744
View this thread: http://forums.slimdevices.com/showthread.php?t=107979

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


Re: [SlimDevices: SqueezeCenter] Bought QNAP TS251+ and alreay regret it...

2017-09-13 Thread Zombie

Got 7.7.2 up and running, dnloaded and renamed the tarball to
squeezeboxserver-7.8.1-1504317335.tgz. 
Stopped LMS in SSOTS and upgrade became available.
Started upgrade on SSOTS, upload the TGZ, press the "upload tarball"
button and I get an error: Connection terminated (in Swedish).
What might be wrong?



karlek wrote: 
> Do you have LMS 7.7.2 already installed?
> If not, try this
> one:http://download.qnapclub.de/qpkg/logitechmediaserver/LogitechMediaServer_7.7.2_x86.zip.
> If that worked, you can continue. If not and you don't have running
> installation of LMS on your new QNAP, I'm out of ideas. :(
> 
> After that download 'the latest 7.9.1 gnuzipped tape archive (tgz) for
> all architectures'
> (http://downloads.slimdevices.com/nightly/7.9/sc/a519d5e/logitechmediaserver-7.9.1-1504317335.tgz)
> and rename it from "logitechmediaserver-7.9.1-1504317335.tgz" (for
> example) to "squeezeboxserver-7.8.1-1504317335.tgz" or
> "squeezeboxserver-7.8.11-1504317335.tgz" or so. The file name only
> matters for the SSOTS installation routine.
> Save the file in your QNAPS /Public directory, open SSOTS
> (your.QNAP.ip:9099). Then choose UPGRADE and follow the instructions.
> If some steps fail, come back here.
> If you succeded, bear in mind that the bash coming with SSOTS is
> vulnerable and you should exchange it.



Zombie's Profile: http://forums.slimdevices.com/member.php?userid=25009
View this thread: http://forums.slimdevices.com/showthread.php?t=107971

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


Re: [SlimDevices: SqueezeCenter] LMS Scanning Issue - increments possible?

2017-09-13 Thread Mnyb

MattCole wrote: 
> Many thanks, both - and sorry to be so slow getting back.. Thought  I
> had an email alert set up for replies, turns out I didn't...
> 
> I've seen these options and the rescan only new files option works.
> 
> But when I do it it still spends a some time 'discovering' files and
> folders that are already in the library ( 18 mins for 42,000 files last
> scan) rather than going straight to the new increment of files that I
> have just added. Since I know there is nothing new in the old batch, is
> there any way of telling it only to add the new files while at the same
> time keeping what it as already imported? If that makes any sense

It actually does that but it recheckes to see if the old files are still
there "discovering" it does the complete scan when it finds new files .
This "discovery" phase is actually finding what's new and then LMS scan
those files .

Another workflow would be to add a lot of stuff then scan while your at
work or at sleep .
It's a transient problem when the bulk of your library is scanned you
only add small batches anyway .




Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad1 with iPengHD & SqueezePad
(spares Touch, SB3, reciever ,controller )
server HP proliant micro server N36L with ClearOS Linux

http://people.xiph.org/~xiphmont/demo/neil-young.html

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=107954

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


[SlimDevices: SqueezeCenter] Cannot listen to radio or Qobuz

2017-09-13 Thread fxtv

I am no longer to listen to internet radio or Qobuz. The server.log file
is: 

[17-09-13 20:20:04.5265] Slim::Networking::IO::Select::__ANON__ (131)
Error: Select task failed calling
Slim::Networking::Async::HTTP::_http_read_body: illegal file descriptor
or filehandle (either no attached file descriptor or illegal value):  at
/usr/share/perl5/Slim/Networking/IO/Select.pm line 134.
; fh=Slim::Networking::Async::Socket::HTTP=GLOB(0x756ad6e0)
[17-09-13 20:25:42.3475] Slim::Networking::IO::Select::__ANON__ (131)
Error: Select task failed calling
Slim::Networking::Async::HTTP::_http_read_body: illegal file descriptor
or filehandle (either no attached file descriptor or illegal value):  at
/usr/share/perl5/Slim/Networking/IO/Select.pm line 134.
; fh=Slim::Networking::Async::Socket::HTTP=GLOB(0x785baf8)

I can see the radio (Radio Swiss Jazz for example) playing music but I
get no sound.

Logitech Media Server Version : 7.9.0 - 1485931015 @ Wed Feb 1 06:57:53
UTC 2017
Nom d'hôte : cubox-i
Adresse IP du serveur : 192.168.1.2
Port HTTP du serveur : 9000
Système d'exploitation : Debian - FR - utf8
Architecture de la plate-forme : armv7l-linux
Version de Perl : 5.14.2 - arm-linux-gnueabihf-thread-multi-64int
Audio::Scan : 0.95
Version de la base de données : DBD::SQLite 1.34_01 (sqlite 3.7.7.1)
Platines identifiées : 1

Help!

François-Xavier



fxtv's Profile: http://forums.slimdevices.com/member.php?userid=61454
View this thread: http://forums.slimdevices.com/showthread.php?t=107982

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


Re: [SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread Stig Nygaard

Just got curious and did a little more searching on the subject. I'm
assuming (and pretty sure?) that Logitech's current "official" nightly
builds for ReadyNAS devices, doesn't work on any recent Netgear ReadyNAS
models. But it actually sounds like you can install any .deb debian
package on the latest ReadyNAS models as long as they are build for the
right processor family, straight from the administration web-interface
without any "hacking".

Anyone knows if that is true?

If so, it would still make Netgear ReadyNAS models a very recommended
choice in my head.



*/Stig* 
'www.*rockland*.dk' (http://www.rockland.dk) -
'www.*last.fm*/user/rockland' (https://last.fm/user/rockland) -
'www.*discogs*.com/user/StigNygaard'
(https://discogs.com/user/StigNygaard) -
'*plus.google*.com/+StigNygaard' (https://google.me/+StigNygaard)
*Server:* LMS 7.9.1 ('LmsRepack'
(http://forums.slimdevices.com/showthread.php?107180)) - 1503129892 @
Sat Aug 19 on Synology DS716+II.  *Clients:* 'RPi3 (Max2Play, 7\" touch,
HiFiBerry Digi+ Pro)'
(https://shop.max2play.com/en/raspberry-pi-2-bundle-7-display.html), SB
Touch, OrangeSqueeze/SqueezePlayer. *Livingroom HiFi:* Marantz PM6005
and F3/Lyd Audiovector 2.
Try my *'Art Grabr' (https://greasyfork.org/en/scripts/20771)*
for fetching big *cover-art* from various sites - And *'Album Linkr'
(https://greasyfork.org/en/scripts/21153)* for a better *last.fm*
desktop browser experience...

Stig Nygaard's Profile: http://forums.slimdevices.com/member.php?userid=4236
View this thread: http://forums.slimdevices.com/showthread.php?t=107979

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


Re: [SlimDevices: SqueezeCenter] Bought QNAP TS251+ and alreay regret it...

2017-09-13 Thread karlek

If it's in Public you should be able to select it manually from there.
If not, try another location that is mentioned on SSOTS ' upgrade page.
(I'm afk right now.)





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

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


Re: [SlimDevices: SqueezeCenter] Bought QNAP TS251+ and alreay regret it...

2017-09-13 Thread Zombie

For now I have only one one single disk, DataVol1. Whera can I find SSH?



Zombie's Profile: http://forums.slimdevices.com/member.php?userid=25009
View this thread: http://forums.slimdevices.com/showthread.php?t=107971

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


Re: [SlimDevices: SqueezeCenter] Bought QNAP TS251+ and alreay regret it...

2017-09-13 Thread karlek

For windows take putty. You'll have to download it.
MacOSX comes with Terminal.





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

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


[SlimDevices: SqueezeCenter] sleep your player from the web interface

2017-09-13 Thread gian

You can set your player to sleep with the remote control, but what if
that's missing, or your player is a Raspi?

I always missed being able to do that from the web interface.

I just figured out that while the web interface is open on the running
player, if you enter in a new tab:

http://yourserverip:9000/status.html?p0=sleep=1800

your current player will sleep after 1800 sec., ie 30 min.

You can check that opening a telnet session on the server, at port 9090,
and issue:

yourplayername sleep ?

it will return the remaining seconds before poweroff.

Note: yourplayername is case sensitive.

You may want to bookmark that entry in your browser to keep it handy.

-G



town: Musical Fidelity Dr.Thomas, Preamp II, Infinity 7K, Squeezebox
Classic (2), Squeezebox Radio, Raspberry Pi 2 with HiFiBerry, Ubuntu
16.4 LTS server
country: Musical Fidelity A-5, Infinity Renaissance 90, Musical Fidelity
A120, Sonus Faber Concertino, Squeezebox Classic, SB Touch, Raspberry Pi
2 with HiFiBerry, Raspberry Pi 3 server with Debian Jessie on Arm7

gian's Profile: http://forums.slimdevices.com/member.php?userid=6702
View this thread: http://forums.slimdevices.com/showthread.php?t=107983

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


Re: [SlimDevices: SqueezeCenter] sleep your player from the web interface

2017-09-13 Thread Michael Herger

http://yourserverip:9000/status.html?p0=sleep=1800


By adding player=00:04:20:ab:cd you should be able to define the player 
you want to send to sleep.



--

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


Re: [SlimDevices: SqueezeCenter] Bought QNAP TS251+ and alreay regret it...

2017-09-13 Thread Zombie

I have now dnloaded Putty. I assume that I should use the PSFTP
application. I created "tmp" in /root. Dunno if that is correct, I'm not
a UNIX hack, although I did some Telnet stuff before the internet went
graphical, but that was a loong time ago.
When I list the directories I can't see the Squeezebox directory,
shouldn't the tarball be placed in its tmp folder?



Zombie's Profile: http://forums.slimdevices.com/member.php?userid=25009
View this thread: http://forums.slimdevices.com/showthread.php?t=107971

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


Re: [SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread Mnyb

Another server hardware can be an intel nuc which I'm currently using .
I used to have a HP micro server.




Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad1 with iPengHD & SqueezePad
(spares Touch, SB3, reciever ,controller )
server HP proliant micro server N36L with ClearOS Linux

http://people.xiph.org/~xiphmont/demo/neil-young.html

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=107979

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


Re: [SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread Michael Herger

Just got curious and did a little more searching on the subject. I'm
assuming (and pretty sure?) that Logitech's current "official" nightly
builds for ReadyNAS devices, doesn't work on any recent Netgear ReadyNAS
models.


I can only answer this part. And yes, that's true. The packages are only 
compatible with ReadyNAS up to the Duo/NV v2.


--

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


Re: [SlimDevices: SqueezeCenter] Does LMS 7.9.1 support Wavpack DSD playback?

2017-09-13 Thread michaelvv

kipeta wrote: 
> On 13.09.2017 19:28, michaelvv wrote:
> > WORKS GREAT BUT THIS IS NOT DSD
> >
> > Code:
> > 
> >  wvunpack file.wv -wq -o - | sox -q - -r 176.4k -b 24 -C 0 -t alsa
> plughw:2
> > 
> >
> This plays it as DSD DoP:
> 
> wvunpack -q file.wv --dff -o - | sox -t dff - -r 176400 -t wav -b 24 -e
> 
> signed --endian little - dop
> 
> However it requires SoX from: https://github.com/mansr/sox

I have the sox git compiled on my computer and I can confirm that


Code:


  wvunpack -q file.wv --dff -o - | sox -t dff - -r 176400 -t wav -b 24 -e 
signed --endian little -t alsa plughw:2 dop
  



Works fine :-)



michaelvv's Profile: http://forums.slimdevices.com/member.php?userid=59321
View this thread: http://forums.slimdevices.com/showthread.php?t=107942

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


Re: [SlimDevices: SqueezeCenter] Does LMS 7.9.1 support Wavpack DSD playback?

2017-09-13 Thread michaelvv

Too be able to play compressed wavpack DSF,DFF files in LMS would be a
really nice feature.

It will save a lot of harddisk space.



michaelvv's Profile: http://forums.slimdevices.com/member.php?userid=59321
View this thread: http://forums.slimdevices.com/showthread.php?t=107942

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


Re: [SlimDevices: SqueezeCenter] TIDAL connection thru LMS only streams at MP3 quality

2017-09-13 Thread mherger

It's the last menu item:

23651


+---+
|Filename: Bildschirmfoto 2017-09-13 um 11.09.53.png|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=23651|
+---+


Michael

http://www.herger.net/slim-plugins - MusicArtistInfo, MusicInfoSCR

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

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


Re: [SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread Stig Nygaard

saxon wrote: 
> OK I run a number of Squeezebox devices in my home and currently have an
> original Netgear Readynas which has been superb - unbelievably stable
> and reliable and currently runs 2x 2tb drives in it.
> 

I recently moved from Netgear ReadyNAS Ultra 2 to a Synology DS716+II. I
was very happy with my ReadyNAS Ultra. Logitech makes official nightly
builds for it. Also the Intel processor gave full support for pretty
much any plugins and add-ons, especially after I found out how to
install IO::Socket::SSL on it.

But in the end I decided to make a switch for security reasons, because
there's no SMBv2+ support on it (I have now disabled SMBv1 on my devices
for security reasons) and the ReadyNAS doesn't receive security patches
anymore. My choice was DS716+II because -I have the impression- Synology
has a good reputation and keeps their devices updated for a long time.
Again Intel processor for best possible support, and even though there
are no official nightly builds for it, pinkdot has his LmsUpdate and
LmsRepack projects for regularly updated nightlies. Also the of size of
the NAS is perfect to fit in my CD-rack (like the readyNAS also was) ;-)

Unfortunately pinkdot ain't making new LmsUpdate/LmsRepack builds
anymore, but I think there's a very good change somebody will take over
this (If I get too desperate I might even try myself, it sounds like it
shouldn't be too complicated).

Well, just my reasoning for choosing the DS716+II. There's probably also
good reasons to make other choices :-)



*/Stig* 
'www.*rockland*.dk' (http://www.rockland.dk) -
'www.*last.fm*/user/rockland' (https://last.fm/user/rockland) -
'www.*discogs*.com/user/StigNygaard'
(https://discogs.com/user/StigNygaard) -
'*plus.google*.com/+StigNygaard' (https://google.me/+StigNygaard)
*Server:* LMS 7.9.1 ('LmsRepack'
(http://forums.slimdevices.com/showthread.php?107180)) - 1503129892 @
Sat Aug 19 on Synology DS716+II.  *Clients:* 'RPi3 (Max2Play, 7\" touch,
HiFiBerry Digi+ Pro)'
(https://shop.max2play.com/en/raspberry-pi-2-bundle-7-display.html), SB
Touch, OrangeSqueeze/SqueezePlayer. *Livingroom HiFi:* Marantz PM6005
and F3/Lyd Audiovector 2.
Try my *'Art Grabr' (https://greasyfork.org/en/scripts/20771)*
for fetching big *cover-art* from various sites - And *'Album Linkr'
(https://greasyfork.org/en/scripts/21153)* for a better *last.fm*
desktop browser experience...

Stig Nygaard's Profile: http://forums.slimdevices.com/member.php?userid=4236
View this thread: http://forums.slimdevices.com/showthread.php?t=107979

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


Re: [SlimDevices: SqueezeCenter] TIDAL connection thru LMS only streams at MP3 quality

2017-09-13 Thread Sailorboy

mherger wrote: 
> Did you _ever_ disable flac streaming in the TIDAL settings on
> mysb.com?
> -- 
> 
> Michael

Hi Michael, I am not aware of any setting in mysb.com where you can
disable flac streaming?  I just had another look, and I cant see any
setting like that?
Are you able to show a screen-shot of where that is?
Cheers
Colin



Sailorboy's Profile: http://forums.slimdevices.com/member.php?userid=66359
View this thread: http://forums.slimdevices.com/showthread.php?t=107239

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


[SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread saxon

OK I run a number of Squeezebox devices in my home and currently have an
original Netgear Readynas which has been superb - unbelievably stable
and reliable and currently runs 2x 2tb drives in it.

We use the server for photos, films and all sorts of other stuff as well
as all my ripped flac music.

We're running out of storage on the server and this readynas cannot use
drives larger than 2TB apparently.

I'm thinking of buying another NAS drive and am tempted to stick with
Netgear - maybe a 212 or even 214 to give greater future proofing of
capacity - I do some professional photography, models etc and so have a
lot of photos to store.  

I'm also open to changing brand though - perhaps Synology if people
think they are significantly better.

It seems that running squeezebox server on some of the more recent NAS
drives can be problematic with installs and configuration so can anybody
recommend which to buy?

I guess another option might be to buy a second NAS drive and use the
new one for photos and films and keep my existing readynas just for
music.  If I was able to move all the movies and photos from the old NAS
then it's 2x 2TB drives would be more than big enough for all my future
FLAC/Squeezebox requirements and as I say it seems to be a robust little
unit actually.

I'd welcome thoughts from any experts!

Saxon



saxon's Profile: http://forums.slimdevices.com/member.php?userid=51594
View this thread: http://forums.slimdevices.com/showthread.php?t=107979

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


Re: [SlimDevices: SqueezeCenter] Which nas to buy??

2017-09-13 Thread Grumpy Bob

saxon wrote: 
> OK I run a number of Squeezebox devices in my home and currently have an
> original Netgear Readynas which has been superb - unbelievably stable
> and reliable and currently runs 2x 2tb drives in it.
> 
> We use the server for photos, films and all sorts of other stuff as well
> as all my ripped flac music.
> 
> We're running out of storage on the server and this readynas cannot use
> drives larger than 2TB apparently.
> 
> I'm thinking of buying another NAS drive and am tempted to stick with
> Netgear - maybe a 212 or even 214 to give greater future proofing of
> capacity - I do some professional photography, models etc and so have a
> lot of photos to store.  
> 
> I'm also open to changing brand though - perhaps Synology if people
> think they are significantly better.
> 
> It seems that running squeezebox server on some of the more recent NAS
> drives can be problematic with installs and configuration so can anybody
> recommend which to buy?
> 
> I guess another option might be to buy a second NAS drive and use the
> new one for photos and films and keep my existing readynas just for
> music.  If I was able to move all the movies and photos from the old NAS
> then it's 2x 2TB drives would be more than big enough for all my future
> FLAC/Squeezebox requirements and as I say it seems to be a robust little
> unit actually.
> 
> I'd welcome thoughts from any experts!
> 
> Saxon

I'm not really in a position to recommend a NAS, as I only have
experience of a QNAP (though it's been pretty much trouble free).
However running LMS on the QNAP was a bit of a hassle, and some time
back I went down the route of running LMS on a Raspberry Pi 3 (using
piCorePlayer), pointing it at the music files held on the QNAP. This is
an excellent setup and I recommend it.

Robert



*Home: *Raspberry Pi 3/piCoreplayer/LMS7.9  with files on QNAP TS-239
Touch > DacMagic 100 > Naim Audio Nait 3 > Mission 752 (plus Rega
Planar 3 and Naim CD3)
PiCorePlayer(Pi2) with touchscreen and IQAudIO DAC+>Sennheisers 
2 x Squeezebox Radios, 1 X Squeezebox 3 (retired)
*Office:* LMS7.9 running on WiFi MyPassport drive >
piCorePlayer(PiB)/HiFiBerryDAC > Amptastic Amplifier
SqueezePad, iPeng as controllers 

last.fm/user/GrumpyBob

Grumpy Bob's Profile: http://forums.slimdevices.com/member.php?userid=41857
View this thread: http://forums.slimdevices.com/showthread.php?t=107979

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


Re: [SlimDevices: SqueezeCenter] LMS Scanning Issue - increments possible?

2017-09-13 Thread MattCole

Many thanks, both - and sorry to be so slow getting back.. Thought  I
had an email alert set up for replies, turns out I didn't...

I've seen these options and the rescan only new files option works.

But when I do it it still spends a some time 'discovering' files and
folders that are already in the library ( 18 mins for 42,000 files last
scan) rather than going straight to the new increment of files that I
have just added. Since I know there is nothing new in the old batch, is
there any way of telling it only to add the new files while at the same
time keeping what it as already imported? If that makes any sense



MattCole's Profile: http://forums.slimdevices.com/member.php?userid=67334
View this thread: http://forums.slimdevices.com/showthread.php?t=107954

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


Re: [SlimDevices: SqueezeCenter] Stream from DLNA to LMS?

2017-09-13 Thread Rocketman3

Hi
I have recently tried to migrate from using LMS on my ReadyNAS to using
it on a Windows 10 machine. The central problem now is that my Samsung
TV used to be able to see the ReadyNAS LMS but it can't see the Windows
install. I have read about there being a DLNA plugin in existence, and
perhaps this is the key to solving this one, but I have an additional
problem, namely that the web interface for the Windows LMS server is
quite alien and seemingly primitive compared to the one on the ReadyNAS
- it's black and grey with orange highlights, instead of black and green
and flash (I think) based, has no artwork on show, and crucially, offers
no apparent access to a Plugins page, so I can't see what's available
nor install anything.

So two questions: will a DLNA plugin make the PC install visible to DLNA
detectors like my TV, and secondly, how do I install which DLNA plugin?

Thanking you in advance for your thoughts

Rocketman



Rocketman

-Rocketman, Rocketman2- and now -Rocketman3- too.
[N.B. the forum doesn't recognises my old passwords nor sends me a reset
so I have to create new accounts periodically]

Rocketman3's Profile: http://forums.slimdevices.com/member.php?userid=55456
View this thread: http://forums.slimdevices.com/showthread.php?t=103566

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


Re: [SlimDevices: SqueezeCenter] TIDAL connection thru LMS only streams at MP3 quality

2017-09-13 Thread Sailorboy

mherger wrote: 
> It's the last menu item:
> 
> 23651

Ahh, thats in the myapps bit.  Yes, I have never set it to MP3 only, but
I have selected the FLAC/MP3 option to make sure that it was set that
way, assuming that would be the only way to ensure I got FLAC.
Hopefully that makes sense.



Sailorboy's Profile: http://forums.slimdevices.com/member.php?userid=66359
View this thread: http://forums.slimdevices.com/showthread.php?t=107239

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


Re: [SlimDevices: SqueezeCenter] LMS Scanning Issue - increments possible?

2017-09-13 Thread DJanGo

MattCole wrote: 
> is there any way of telling it only to add the new files while at the
> same time keeping what it as already imported? If that makes any
> sense

That depends on your workflow and your OS..

I wrote a script (4 *ux / Debian) that gets my new added files into a
playlist named newstuff.m3u and after the playlist is filles the rescan
for playlist runs.
Now the files in the playlist where added to the library - thats all.


cheers



DJanGo's Profile: http://forums.slimdevices.com/member.php?userid=1516
View this thread: http://forums.slimdevices.com/showthread.php?t=107954

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