Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread philippe_44


crystalgipsy wrote: 
> No hidden file. What I don't get is if I run it on Vortexbox it starts
> moaning about it cant get description from an ip that's not in use. The
> whole thing has me very puzzled as it used to work last time I tried it.

The ip not in use is often some device that have not valid assigned IP
address but answer the UPnP search query. It's not a problem.



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] [Announce] Radio Paradise Lossless Streaming (Plugin v2)

2019-04-19 Thread philippe_44


I think I now have identified the circumstances of the problem and it
changes with the OS *and* the player. This is some sort of failure of
the SSL layer of the RP servers (openSSL 1.0.2g) when a stream has
frequent pauses (around 5s). Such pauses occur if the player has a large
buffer and some high/low watermark (my bridges) and the Perl SSL OS
layer is "fast" enough. Pattern is burst download and then a pause of
5sec. When these pauses do not happen (smooth packet download at least
every second), then the issue does not happen. For example, with my
Boom, there is no pause, so it's fine.

A UPnPBridge for example exacerbates the problem, but on my Windows
platform it almost never happens because my Perl SSL layer is very slow
so there is a constant flow of packet (except for very long blocks where
at some point, the stream catches up and saturates the buffer).

Here is a small Perl app that shows the problem 90% of times. On my Pi,
with a SLEEP of 1, it almost never happens, with a SLEEP of 5, it
happens every time. Does not give me a solution, but at least helps
figuring out what's happening.

If you want to try something, you can add this to the ProtocolHandler.pm
of RadioParadise, and erase the existing "new" subroutine. Please
understand this is not *at all* a proper patch (by any mean, this is
very ugly and will use 100% of CPU) but that would help
illustrating/confirming the problem.


Code:


  sub sysread {
my $self = $_[0];
my $chunkSize = $_[2];
my $now = time();
my $bitrate = ${*$self}{song}->bitrate || 850_000;
  
if (!($now - ${*$self}{start}) || ${*$self}{bytes} / ($now - 
${*$self}{start}) < 1.10*$bitrate/8) {
my $readLength = $self->SUPER::sysread($_[1], $chunkSize);
${*$self}{bytes} += $readLength;
return $readLength;
} else {
$! = EWOULDBLOCK;
return undef;
}
  } 
  
  # To support remote streaming (synced players, slimp3/SB1), we need to 
subclass Protocols::HTTP
  sub new {
my $class  = shift;
my $args   = shift;
  
my $client = $args->{client};
  
my $song  = $args->{'song'};
my $streamUrl = $song->streamUrl() || return;
  
my ($quality, $format) = _getStreamParams( $args->{url} );
  
my $sock = $class->SUPER::new( {
url => $streamUrl,
song=> $args->{'song'},
client  => $client,
bitrate => $quality < 4 ? $AAC_BITRATE{$quality} * 1024 : 
850_000,
} ) || return;
  
${*$sock}{contentType} = 'audio/' . $format;

${*$sock}{start} = time();
${*$sock}{bytes} = 0;
  
return $sock;
  }
  }
  



+---+
|Filename: lwp-s.pl |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=27221|
+---+


LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread crystalgipsy


philippe_44 wrote: 
> Veyr strange indeed. No hidden file?

No hidden file. What I don't get is if I run it on Vortexbox it starts
moaning about it cant get description from an ip that's not in use. The
whole thing has me very puzzled as it used to work last time I tried it.



Naim Uniti Atom
Arcam AVR360
ClearAudio Concept with MC Concept
ClearAudio Nano V2
Arcam Alpha 7 SE CD
Logitech Squeezebox Radio
BlueSound Node 2i
2 x Raspberry Pi
ChromeCast
2 x Pure Jongo

crystalgipsy's Profile: http://forums.slimdevices.com/member.php?userid=62489
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

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


Re: [SlimDevices: Plugins] Hard to start iPlayer after waking Win10 PC

2019-04-19 Thread bpa


Just did a >3 hr test.

W10 was sleeping. Radio was off.  Powered on Radio. Then woke up W10
with keyboard .  Stream starting playing on Radio with no other (e.g.
"rebuffering" )messages.



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-04-19 Thread ericj


cpd73 wrote: 
> To be honest, seeing as it works on iPad then that implies the issue is
> an iOS issue. I use HTML5 drag'n'drop, and was using a 'shim' to help
> with iOS. Turns out this is no longer needed (I think) for newer iOS
> versions. Sorry, but as stated *many* times I am *not* a Javascript/Web
> developer - so I have no idea what to change, etc. to get this working
> on the iPhone. If only apple allowed other browsers, then I'd just say
> install Chrome. But all other browser's on iOS are just different shells
> around the iOS rendering engine - meaning they are all basically Safari
> under the hood. Anyway, I've added an issue on github if anyone feels
> like tackling this.

First, I totally understand your position, and continue to appreciate
your efforts in general, and certainly could live without iphone drag
and drop.  And, btw, I mistyped.  I'm running IOS 12.2.   The fact that
Apple does not, by default, support HTML5 Standards is disturbing.

I have done some investigating, and IOS on ipad and iphone have
different defaults.   I'll investigate further, but this is documented
here, from stack exchange
https://stackoverflow.com/questions/46392359/how-to-get-ios-11-drag-and-drop-working-on-the-iphone.
It assumes you are programming in Swift, so probably of little help.

Thanks for your quick response



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

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


Re: [SlimDevices: Plugins] Annouce: Squeeze Control is now available as a UWP app for Windows 10.

2019-04-19 Thread dolodobendan


27220

Hypothesis works here, too.

The title with the duration has the same position in both searches.


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


QLMS 7.9.2@2.04 x64 (digimaster) with perl 5.28 dedicated to me. :D /
QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=106060

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


Re: [SlimDevices: Plugins] Annouce: Squeeze Control is now available as a UWP app for Windows 10.

2019-04-19 Thread dolodobendan


wt0 wrote: 
> Try doing a full rescan of your music library. It may have some
> corruption.

Tested it on another server (full rescan) with exactly the same results.
Maybe Michael has some insight on what's happening here.



QLMS 7.9.2@2.04 x64 (digimaster) with perl 5.28 dedicated to me. :D /
QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=106060

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


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread philippe_44


crystalgipsy wrote: 
> C:\Downloads\UPnPBridge-1.13.0.5\Bin\squeeze2upnp-win.exe -i config.xml
> [21:09:01.541] main:1594 Starting squeeze2upnp version: v1.13.0.5 (Apr
> 17 2019 @ 19:01:34)
> [21:09:01.562] output_init:603 success loading FLAC encoder
> [21:09:01.576] Start:1372 Binding to 192.168.1.176:49152
> [21:09:01.621] XMLGetFirstDocumentItem:176 (BUG)
> ixmlNode_getFirstChild(tmpNode) returned NULL

Veyr strange indeed. No hidden file?



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread crystalgipsy


crystalgipsy wrote: 
> It wont though on any platform I am running it. No idea why.


C:\Downloads\UPnPBridge-1.13.0.5\Bin\squeeze2upnp-win.exe -i config.xml
[21:09:01.541] main:1594 Starting squeeze2upnp version: v1.13.0.5 (Apr
17 2019 @ 19:01:34)
[21:09:01.562] output_init:603 success loading FLAC encoder
[21:09:01.576] Start:1372 Binding to 192.168.1.176:49152
[21:09:01.621] XMLGetFirstDocumentItem:176 (BUG)
ixmlNode_getFirstChild(tmpNode) returned NULL



Arcam AVR360
ClearAudio Concept wih MC Concept
ClearAudio Nano V2
Arcam irDAC2
Arcam Alpha 7 SE CD
Logitech Squeezebox Touch - RIP
Logitech Squeezebox Radio
Squeezeplay -  Joggler
Squeezeplay  - 2 x Raspberry Pi
Squeezeplay  - 2 x Android
LMS to Upnp - 2x Pure Jongo

crystalgipsy's Profile: http://forums.slimdevices.com/member.php?userid=62489
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

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


Re: [SlimDevices: Plugins] Hard to start iPlayer after waking Win10 PC

2019-04-19 Thread bpa


I did a quick test with a WIn 10 system and a SB Radio

I set up playing R4 live and then put Win10 system to "sleep" via power
off menu.  Radio eventually stopped and showed red wifi.

I then woke up the W10 system via keyboard and Radio showed "Rebuffering
0%", then "rebuffering failed" and then started playing the stream OK.

To understand how this is not working on your system you need to give
more detail for example as there are too many variables for me to look
for the problem scenario.
1. How your W10 system goes to sleep (i.e. what command given and how )
2. What sort of player ? and how is it used ?  For example, is player
tuned off after W10 goes to sleep, left on and used to wake W10  
3. Any messages in log or on screen 
etc.

There are two scenarios to be tested: (i) sleep less than 3 hours and
(ii) sleep more than 3 hours.  I have shown that (i) works OK for me in
one setup.



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

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


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread crystalgipsy


philippe_44 wrote: 
> Then, if you specify squeeze2upnp-win -i config.xml it should create a
> file. I just tried on my machine, both a failed and a sucessful case

It wont though on any platform I am running it. No idea why.



Arcam AVR360
ClearAudio Concept wih MC Concept
ClearAudio Nano V2
Arcam irDAC2
Arcam Alpha 7 SE CD
Logitech Squeezebox Touch - RIP
Logitech Squeezebox Radio
Squeezeplay -  Joggler
Squeezeplay  - 2 x Raspberry Pi
Squeezeplay  - 2 x Android
LMS to Upnp - 2x Pure Jongo

crystalgipsy's Profile: http://forums.slimdevices.com/member.php?userid=62489
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

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


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread philippe_44


crystalgipsy wrote: 
> it does have permissions vortexbox is running lms and should have
> permissions never used to be an issue. On windows i do have access to
> write I can create directories and other files in the same directory.

Then, if you specify squeeze2upnp-win -i config.xml it should create a
file. I just tried on my machine, both a failed and a sucessful case



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread crystalgipsy


philippe_44 wrote: 
> oh .. I did not see that - You are launching the application from a
> directory where you do *not* have write access. In that case, it cannot
> create a file nor will it whine that it's missing one

it does have permissions vortexbox is running lms and should have
permissions never used to be an issue. On windows i do have access to
write I can create directories and other files in the same directory.



Arcam AVR360
ClearAudio Concept wih MC Concept
ClearAudio Nano V2
Arcam irDAC2
Arcam Alpha 7 SE CD
Logitech Squeezebox Touch - RIP
Logitech Squeezebox Radio
Squeezeplay -  Joggler
Squeezeplay  - 2 x Raspberry Pi
Squeezeplay  - 2 x Android
LMS to Upnp - 2x Pure Jongo

crystalgipsy's Profile: http://forums.slimdevices.com/member.php?userid=62489
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

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


Re: [SlimDevices: Plugins] Annouce: Squeeze Control is now available as a UWP app for Windows 10.

2019-04-19 Thread wt0

dolodobendan wrote: 
> I think I found something.
> 
> It's LMS' multiple searches that messes things up here.
> 
> When I use LMS' WebUI and type in "felice" at the search thing on the
> top, I get these type-ahead results:
> 
> >   > 
  - Ouvertüre aus "L'inganno felice"
  - Aria: Alcun più di me felice non è
  - etc.
  > > > 
> 
> If I now press enter, the results are:
> 
> >   > 
  - Ouvertüre aus "L'inganno felice"
  - something different then before
  - etc.
  > > > 
> 
> Hypothesis: The tracks shown in Squeeze Control WITH duration are the
> ones that don't change position.
> 
> New search "donath poppea", type-ahead results:
> 
> >   > 
  - 13. Pur sempre con Poppea
  - 15. Ho difesa Poppea
  - 7. Hoggi sarà Poppea
  - Prologo
  - etc.
  > > > 
> 
> Pressing enter:
> 
> >   > 
  - 13. Pur sempre con Poppea
  - 15. Ho difesa Poppea
  - 7. Hoggi sarà Poppea
  - something different the before
  - etc.
  > > > 
> 
> "felice": Only the first track had duration information in Squeeze
> Control
> 
> "donath poppea": The first three tracks had duration information in
> Squeeze Control
> 
> I like my hypothesis, couldn't reject it after several other searches.Try 
> doing a full rescan of your music library. It may have some
corruption.

Sent from my Pixel 3 using Tapatalk



--
Squeezebox apps for webOS, Android and Windows Phone,
http://www.angrygoatapps.com

wt0's Profile: http://forums.slimdevices.com/member.php?userid=18760
View this thread: http://forums.slimdevices.com/showthread.php?t=106060

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


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread philippe_44


crystalgipsy wrote: 
> I was coming back to using this plug-in yesterday to integrate my av amp
> into Roon. I have exactly the same issue whether I run it on its own or
> via LMS for all of versions 1.13. It won't make the config file at all
> and I've tried it on windows and my Vortexbox VM that I run LMS on. I
> got an old version 8 past this stage but It also not saving a config.xml
> that I can find it's supposed to be where you run the executable from.
> IThe one device it finds is my amp but it won't play to it all via Roon
> or LMS and does not see any other device on my network that other UPnP
> apps can. In the logs it says it looks like the plugin is trying to
> connect to a device at an ipaddress that does not exist on my network
> 192.168.1.31:49152  and says cant find description.xml no idea what this
> is?

oh .. I did not see that - You are launching the application from a
directory where you do *not* have write access. In that case, it cannot
create a file nor will it whine that it's missing one



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] Annouce: Squeeze Control is now available as a UWP app for Windows 10.

2019-04-19 Thread dolodobendan

I think I found something.

It's LMS' multiple searches that messes things up here.

When I use LMS' WebUI and type in "felice" at the search thing on the
top, I get these type-ahead results:

  
- Ouvertüre aus "L'inganno felice"
- Aria: Alcun più di me felice non è
- etc.
  

If I now press enter, the results are:

  
- Ouvertüre aus "L'inganno felice"
- something different then before
- etc.
  

Hypothesis: The tracks shown in Squeeze Control WITH duration are the
ones that don't change.

New search "donath poppea", type-ahead results:

  
- 13. Pur sempre con Poppea
- 15. Ho difesa Poppea
- 7. Hoggi sarà Poppea
- Prologo
- etc.
  

Pressing enter:

  
- 13. Pur sempre con Poppea
- 15. Ho difesa Poppea
- 7. Hoggi sarà Poppea
- something different the before
- etc.
  

"felice": Only the first track had duration information in Squeeze
Control

"donath poppea": The first three tracks had duration information in
Squeeze Control

I like my hypothesis, couldn't reject it after several other searches.



QLMS 7.9.2@2.04 x64 (digimaster) with perl 5.28 dedicated to me. :D /
QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=106060

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


Re: [SlimDevices: Plugins] Annouce: Squeeze Control is now available as a UWP app for Windows 10.

2019-04-19 Thread dolodobendan

wt0 wrote: 
> I was just referring to the duration not the brackets. Those would have
> something to do with the song's tags. Squeeze Ctrl does not modify the
> artist name. However, it maybe getting the artist name from a different
> tag than the browser interface.

Then this should not happen (search "donath poppea"):

27217

For all tracks:

ARTIST = Helen Donath;Elisabeth Söderström;Cathy Berberian
ARTISTSORT = Helen Donath;Elisabeth Soederstroem;Cathy Berberian

The other tags are also the same for each file (except discnumber,
title, totaltracks and track, obviously).

(It happens with Squeeze Ctrl on Android, too.)


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


QLMS 7.9.2@2.04 x64 (digimaster) with perl 5.28 dedicated to me. :D /
QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=106060

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


Re: [SlimDevices: Plugins] Announce: UPnPBridge = integrate UPnP/DLNA players with LMS (squeeze2upnp)

2019-04-19 Thread crystalgipsy


bultano wrote: 
> Unfortunately, I've read it and I've followed the guide which is why I
> have came here for any advice.
> 
> This is the output from running the .exe from the command line WITHOUT a
> config file. In roon a squeezebox device appears and I'm able to choose
> a song, but the song doesn't play (it stays at 0:00). Any ideas as to
> why I'm having problems creating a config file? I've had a few other
> people try the setup and it's not creating for them either. Sorry for
> the inconvenience
> 
> C:\WINDOWS\system32>C:\Users\Jakeh\Desktop\LMS-to-uPnP-1.0.0\application\bin\squeeze2upnp-win.exe
> [12:25:26.148] main:1577 Starting squeeze2upnp version: v1.13.0.2 (Apr
> 14 2019 @ 12:11:46)
> [12:25:26.164] output_init:603 success loading FLAC encoder
> [12:25:26.179] Start:1355 Binding to 192.168.1.129:49152
> [12:25:26.507] AddMRDevice:1253 [004BE1E0]: adding renderer
> (iFi_Hi-Res_Audio_DF84)
> [12:25:26.534] MasterHandler:943 [004BE1E0]: subscribe success
> [12:25:26.596] slimproto:851 squeezelite [00508B00] <=> player
> [004BE1E0]
> [12:25:26.596] slimproto:852 [00508B00] connecting to
> 192.168.1.129:3483
> [12:25:26.612] slimproto:882 [00508B00] connected
> [12:25:26.612] sendHELO:129 [00508B00] cap:
> Model=squeezelite,ModelName=SqueezeLite,AccuratePlayPoints=0,HasDigitalOut=1,MaxSampleRate=48000,aac,ogg,flc,alc,aif,pcm,mp3
> [12:25:33.945] process_strm:231 [00508B00] strm command s
> [12:25:33.945] process_strm:300 [00508B00], strm s autostart: 1
> transition period: 0 transition type: 0 codec: f
> [12:25:33.945] sendSTAT:162 [00508B00]: STAT:[STMf] msplayed 0
> [12:25:33.995] CLI_OPEN_SOCKET:176 [00508B00] UNABLE TO CONNECT TO
> SERVER WITH CLI
> [12:25:33.995] sq_get_metadata:377 [00508B00]: cannot get metadata
> [12:25:33.996] bind_socket:358 cannot bind socket 1612
> [12:25:33.996] output_start:82 [00508B00]: start thread 0
> [12:25:33.996] process_start:1187 [00508B00]: codec:c, ch:0, s:0, r:0
> [12:25:33.996] sendSTAT:162 [00508B00]: STAT:[STMc] msplayed 0
> [12:25:33.996] process_strm:335 [00508B00] no matching codec c
> [12:25:33.996] sendSTAT:162 [00508B00]: STAT:[STMn] msplayed 0
> [12:25:45.466] output_http_thread:373 [00508B00]: end thread 0 (0
> bytes)
> [12:25:45.469] sendSTAT:162 [00508B00]: STAT:[STMf] msplayed 0
> [12:25:45.934] process_strm:231 [00508B00] strm command s

I was coming back to using this plug-in yesterday to integrate my av amp
into Roon. I have exactly the same issue whether I run it on its own or
via LMS for all of versions 1.13. It won't make the config file at all
and I've tried it on windows and my Vortexbox VM that I run LMS on. I
got an old version 8 past this stage but It also not saving a config.xml
that I can find it's supposed to be where you run the executable from.
IThe one device it finds is my amp but it won't play to it all via Roon
or LMS and does not see any other device on my network that other UPnP
apps can. In the logs it says it looks like the plugin is trying to
connect to a device at an ipaddress that does not exist on my network
192.168.1.31:49152  and says cant find description.xml no idea what this
is?



Arcam AVR360
ClearAudio Concept wih MC Concept
ClearAudio Nano V2
Arcam irDAC2
Arcam Alpha 7 SE CD
Logitech Squeezebox Touch - RIP
Logitech Squeezebox Radio
Squeezeplay -  Joggler
Squeezeplay  - 2 x Raspberry Pi
Squeezeplay  - 2 x Android
LMS to Upnp - 2x Pure Jongo

crystalgipsy's Profile: http://forums.slimdevices.com/member.php?userid=62489
View this thread: http://forums.slimdevices.com/showthread.php?t=103728

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-04-19 Thread cpd73


Bug fix release. Main changes:

  
-  Various fixes for time display in now-playing.
-  Fix 'Play album starting at track'
-  Fix sleep timer countdown display.
-  Hacky workaround for 'pause' not working in media controls. Always
  show play button, but prefix title with a pause character when
  paused.
-  Add button to 'manage players' dialog to set sleep time for all
  players.



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: AirPlay Bridge = integrate AirPlay devices with LMS (squeeze2raop)

2019-04-19 Thread philippe_44


marswe wrote: 
> Sure, just give me a link to download from.

Here it is
https://www.dropbox.com/s/8waqzkggc9tqj77/squeeze2raop-x86-64-static?dl=0

Thanks



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] Annouce: Squeeze Control is now available as a UWP app for Windows 10.

2019-04-19 Thread wt0


dolodobendan wrote: 
> You're saying that if a duration is shown, the artist is repeated in
> brackets after the album title? That's... weird.
> 
> There's a typo: "Show in Playist".
> 
> 
> 
> I don't know why the server wouldn't have the duration. I also find it
> strange that it is these discs only (the one with the artist shown
> twice) for which the server has duration information.I was just referring to 
> the duration not the brackets. Those would have
something to do with the song's tags. Squeeze Ctrl does not modify the
artist name. However, it maybe getting the artist name from a different
tag than the browser interface.

Sent from my Pixel 3 using Tapatalk



--
Squeezebox apps for webOS, Android and Windows Phone,
http://www.angrygoatapps.com

wt0's Profile: http://forums.slimdevices.com/member.php?userid=18760
View this thread: http://forums.slimdevices.com/showthread.php?t=106060

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.7.x - Spotify Connect for your Squeezebox

2019-04-19 Thread Michael Herger

I just had this happen for the second time and the server log does
contain the line

"Corrupted credentials file discovered.
Removing configuration."


Crap, I should make a backup before removing the file...


Why would this occur?


I don't know, really. I trigger this action when the JSON fails to 
parse. That file should not be modified once you're authenticated. 
Therefore even corruption due to an un-clean shutdown seems unlikely.


--

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


Re: [SlimDevices: Plugins] Annouce: Squeeze Control is now available as a UWP app for Windows 10.

2019-04-19 Thread dolodobendan


wt0 wrote: 
> Not a bug. Showing duration is an option in Squeeze Ctrl. You can turn
> it off in Settings > Display.

You're saying that if a duration is shown, the artist is repeated in
brackets after the album title? That's... weird.

There's a typo: "Show in Playist".

wt0 wrote: 
> Even with the option enabled, it will only show the duration if the
> server can provide it with one.

I don't know why the server wouldn't have the duration. I also find it
strange that it is these discs only (the one with the artist shown
twice) for which the server has duration information.



QLMS 7.9.2@2.04 x64 (digimaster) with perl 5.28 dedicated to me. :D /
QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=106060

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-04-19 Thread cpd73


ericj wrote: 
> Again, thanks for all the efforts on supporting this interface,
> particularly with a large set of target devices.   I tried drag and drop
> and it worked well on ios 11 on the ipad, but apparently there are
> difference in the implemenation of drap and drop for the iphone.   
> Here, it seems impossible to even select an item.   Tapping and holding
> currently do nothing.   Sorry to be the bearer of bad (but perhaps
> useful?) news...

To be honest, seeing as it works on iPad then that implies the issue is
an iOS issue. I use HTML5 drag'n'drop, and was using a 'shim' to help
with iOS. Turns out this is no longer needed (I think) for newer iOS
versions. Sorry, but as stated *many* times I am *not* a Javascript/Web
developer - so I have no idea what to change, etc. to get this working
on the iPhone. If only apple allowed other browsers, then I'd just say
install Chrome. But all other browser's on iOS are just different shells
around the iOS rendering engine - meaning they are all basically Safari
under the hood. Anyway, I've added an issue on github if anyone feels
like tackling this.



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: AirPlay Bridge = integrate AirPlay devices with LMS (squeeze2raop)

2019-04-19 Thread marswe

philippe_44 wrote: 
> Ah ... that’s good and bad. I had left and old piece of code that was
> updating progress (position and duration of track) every second. The
> airplay protocol makes that un-necessary. You can send once the current
> position and duration and the player is supposed to work from there. It
> seems that the HomePod wants regular updates. There is another
> hypothesis that it just wants to verify that the control link is still
> up and running, so if you don’t mind I’ll do another build with a
> different option to keep that control link (rtsp) alive and see if it
> works

Sure, just give me a link to download from.



marswe's Profile: http://forums.slimdevices.com/member.php?userid=68354
View this thread: http://forums.slimdevices.com/showthread.php?t=105198

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


Re: [SlimDevices: Plugins] [Announce] Radio Paradise Lossless Streaming (Plugin v2)

2019-04-19 Thread philippe_44

Heuer wrote: 
> I am running LMS on a ReadyNAS with SB3, Radio and Boom players. no
> squeezelite.

But you don’t have the issue where players suddenly stops in a middle of
a song and moves to a new block? (If you enable info log, you see in the
webUI where you are in a block of tracks)



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] ANNOUNCE: AirPlay Bridge = integrate AirPlay devices with LMS (squeeze2raop)

2019-04-19 Thread philippe_44

marswe wrote: 
> Works like a charm, thanks!
> 
> What was the issue?

Ah ... that’s good and bad. I had left and old piece of code that was
updating progress (position and duration of track) every second. The
airplay protocol makes that un-necessary. You can send once the current
position and duration and the player is supposed to work from there. It
seems that the HomePod wants regular updates. There is another
hypothesis that it just wants to verify that the control link is still
up and running, so if you don’t mind I’ll do another build with a
different option to keep that control link (rtsp) alive and see if it
works



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-04-19 Thread ericj


Again, thanks for all the efforts on supporting this interface,
particularly with a large set of target devices.   I tried drag and drop
and it worked well on ios 11 on the ipad, but apparently there are
difference in the implemenation of drap and drop for the iphone.   
Here, it seems impossible to even select an item.   Tapping and holding
currently do nothing.   Sorry to be the bearer of bad (but perhaps
useful?) news...



ericj's Profile: http://forums.slimdevices.com/member.php?userid=3230
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: AirPlay Bridge = integrate AirPlay devices with LMS (squeeze2raop)

2019-04-19 Thread marswe


philippe_44 wrote: 
> Sorry, I did a patch too quickly and it was not working. can you try
> https://www.dropbox.com/s/8waqzkggc9tqj77/squeeze2raop-x86-64-static?dl=0

Works like a charm, thanks!

What was the issue?



marswe's Profile: http://forums.slimdevices.com/member.php?userid=68354
View this thread: http://forums.slimdevices.com/showthread.php?t=105198

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


Re: [SlimDevices: Plugins] [Announce] Radio Paradise Lossless Streaming (Plugin v2)

2019-04-19 Thread Heuer


philippe_44 wrote: 
> Would you happen to run squeezelite? If you do, any chance to try on a
> real SB device? or on Squeezeplay?

I am running LMS on a ReadyNAS with SB3, Radio and Boom players. no
squeezelite.



Heuer's Profile: http://forums.slimdevices.com/member.php?userid=2543
View this thread: http://forums.slimdevices.com/showthread.php?t=108189

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.7.x - Spotify Connect for your Squeezebox

2019-04-19 Thread slartibartfast


slartibartfast wrote: 
> I just had this happen for the second time and the server log does
> contain the line
> 
> "Corrupted credentials file discovered.
> Removing configuration."
> 
> Why would this occur?
> 
> Sent from my SM-G900F using TapatalkAlso even though the credentials are 
> missing my Spotify app still sees
the squeezebox players and if I try to play to one of them it appears as
though Spotify is playing (time bar moves in the app) but it is not.

Sent from my SM-G900F using Tapatalk
[image:
https://uploads.tapatalk-cdn.com/20190419/67ca016358aecf8d823e729d8edbf704.jpg]





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=109991

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.7.x - Spotify Connect for your Squeezebox

2019-04-19 Thread slartibartfast


mherger wrote: 
> > now it happened again. The cache folder (
> > /var/lib/squeezeboxserver/cache/spotty ) now only contains the
> subfolder
> > "__AUTHENTIVATE__". The is no other subfolder and now credentials.json
> > any more. It must have happened 3:51 last night, judging from the
> server
> > log entry I pasted below. Before that, I had many more "DaemonManager"
> > messages as seen below, every 10 to 20 Minutes. Everything else still
> > works on my server (nightly from March 11th right now).
> 
> Would you have a line saying "Corrupted credentials file discovered. 
> Removing configuration." in your log file?
> 
> 
> -- 
> 
> MichaelI just had this happen for the second time and the server log does
contain the line

"Corrupted credentials file discovered.
Removing configuration."

Why would this occur?

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=109991

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


Re: [SlimDevices: Plugins] [Announce] Radio Paradise Lossless Streaming (Plugin v2)

2019-04-19 Thread philippe_44


Just in case somebody has an idea, I've tried a lot of possibilities
between cipher, openssl, tls, perl version and could find any pattern,
then I tried again on the same configuration a Squeezeplay instance and
for 40 minutes had no skipped track, which never happens with my
squeezelite instances (never was able to get more than 10 minutes)

So, going back to wireshark, and contrary to what I wrote before, I'm
now sure that this is RP server sending a FIN and consequently, LMS
keeps the socket half-open until it has consumed all data and then send
that EncryptionAlert message. So his is not client-decided socket
closure on some TLS error, this is RP server side. 

More interesting, when streaming to squeezelite instance, the wireshark
log is full of TLS1.2 "ignored unknown record". When streaming to a real
SB (and stream is still proxied by LMS, there is no change at that
level), there is *none* of such erroneous log entries. Even better, now
if I throttle the squeezelite stream to ~850kbits/s these errors happen
after a much longer streaming period



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5

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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-04-19 Thread cpd73


Nickel wrote: 
> Thank you for bringing the Grid option back.  It works really well for
> desktop use.


The grid was never removed. All I have done is restrict it to a max of
300 items, otherwise it's too slow when navigating back into it.



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