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

2016-01-09 Thread kipeta

Thanks Philippe for the great plugin. I manage to integrate my kitchen
radio (Revo SuperConnect) to LMS with it. No special
settings/configurations required.

However I'd like to propose one minor patch in order to the get settings
page links work with other skins (eg. Daphile). Just add "[% webroot %]"
prefix to href's. 


Code:


  --- UPnPBridge/HTML/EN/plugins/UPnPBridge/settings/basic.html.orig
  +++ UPnPBridge/HTML/EN/plugins/UPnPBridge/settings/basic.html
  @@ -5,7 +5,7 @@

[% WRAPPER setting title="PLUGIN_UPNPBRIDGE_AUTORUN" 
desc="PLUGIN_UPNPBRIDGE_AUTORUN_DESC" %]
 [% "PLUGIN_UPNPBRIDGE_RUNNING_$running" | string %] [% IF binary %] 
([% binary %]) [% END %]
  - [% "PLUGIN_UPNPBRIDGE_USERGUIDELINK" | string %]
  + [% "PLUGIN_UPNPBRIDGE_USERGUIDELINK" | string %]
[%IF running %] [% 
"PLUGIN_UPNPBRIDGE_WARNING" | string %] [% END %]
[% END %]

  @@ -43,7 +43,7 @@
[% END %]
[% WRAPPER setting title="PLUGIN_UPNPBRIDGE_LOGGING" 
desc="PLUGIN_UPNPBRIDGE_LOGGING_DESC" %]
[% "PLUGIN_UPNPBRIDGE_LOGENABLE" | string %]
  - [% 
"PLUGIN_UPNPBRIDGE_LOGLINK" | string %]
  + [% 
"PLUGIN_UPNPBRIDGE_LOGLINK" | string %]
[% "PLUGIN_UPNPBRIDGE_LOGSIZE" | string %] 
[% "PLUGIN_UPNPBRIDGE_ERASELOG" | string %]
 
  @@ -51,7 +51,7 @@
[% WRAPPER setting title="PLUGIN_UPNPBRIDGE_CONFIG" 
desc="PLUGIN_UPNPBRIDGE_CONFIG_DESC" %]
[% configpath %]

  - [% 
"PLUGIN_UPNPBRIDGE_CONFLINK" | string %]
  + [% 
"PLUGIN_UPNPBRIDGE_CONFLINK" | string %]
[% "PLUGIN_UPNPBRIDGE_AUTOSAVECONFIG" | string %]
[% IF binary %]

  




Kimmo
www.daphile.com

kipeta's Profile: http://forums.slimdevices.com/member.php?userid=51816
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] iPeng support thread

2016-01-09 Thread pippin

No, "More" works. It's an iOS system control. What it does is it lets
you enable additional sharing controls if there are any.
The problem is that if you have the dark color scheme in iPeng enabled
the "done" button has white text on white background.
It's hard to change. There's no official way to change the background
color of that bar and changing the text color would then change the text
color for all system buttons in iPeng, too.



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

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

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


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

2016-01-09 Thread JLs51

Ah, I see.  Thanks Philippe for the detailed explanation on adding a 3rd
party repository.  I'll try it.
Jeff



JLs51's Profile: http://forums.slimdevices.com/member.php?userid=65055
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: WaveInput for Linux

2016-01-09 Thread bpa

OK I think I have a solution for your configurations.

Some background.

The configuration in question is when LMS is run as a service (rather
than on user-login) - LMS is run under its own userid (usually
squeezeboxserver) but this userid cannot login, has no shell and has no
default directory (i.e. nowhere for default settings). The application
generating audio is run by a user who has logged in a desktop GUI and/or
has a shell prompt.

Pulseaudio can be setup in two ways: system wide and per-user. 

When Pulseaudio is setup per user - audio is expected to be sent to/from
application in the same system under same user id or between users on
different systems.  Systemwide makes it easy to send audio between
applications on the same system regardless of users however system wide
setup is not recommended and developers are considering removing it. So
a per-user configuration of pulseaudio has to be used and yet make
application with different userids on same system communicate. 

The chosen solution uses a unix domain socket to enable communication
between the pulsaudio daemon of the user whose desktop audio is to be
sent to LMS and the LMS Waveinput plugin and the Wavinput plugin has to
run the pulsaudio "parec" application to capture the audio.  When
testing the latency (i.e. delay between live sound and time for LMS to
play sound) is about 15 secs.

To setup this communication both the pulseaudio daemon configuration and
the parec application have to be told which unix domain socket is to be
used. The name of the unix domain socket is arbitrary but in this
suggested setup it is set up in /tmp and called wavin-pulse-socket-name.


The desktop user (i.e. user running amarok, audacity, rhythmbox etc.)
can either set the configuration up by command or as part of default but
remember changes in configuration files will need user to logout/login
to take effect and.or restart the daemon.

I have tested as much as I can but my system configuration is not the
same your systems and I didn't want to alter mine too much as it would
break my application setup. 

To setup the configuration copy pulse default configuration into own
login directory (edit the configuration file default.pa in /etc if you
want change to apply to all users).

Code:

cp /etc/pulse/default.pa ~/.pulse/


and then edit the file adding the following line

Code:

load-module module-native-protocol-unix auth-anonymous=1 
socket=/tmp/wavin-pulse-socket-name



alternatively the user can give the following command from a shell
prompt.  AFAICT changes this way is not permanent.

Code:

pactl load-module module-native-protocol-unix auth-anonymous=1 
socket=/tmp/wavin-pulse-socket-name



You may need to stop pulseaudio and restart the pulseaudio daemon with
following commands.

Code:


  pulseaudio -k
  pulseaudio -D
  



To setup the LMS use of the unix domain socket - an environment variable
PULSE_SERVER has to be used as there is no login for LMS user id and no
home directory.  THis means the custom-convert.conf file has to call a
shell script inseated of an executable and this shell script requires a
Bin subdirectory in the Wavin plugin directory.  Here are the required
steps.

1. Create a Bin directory in the Waveinput plugin directory.
2. create a shell script called parec.sh in the Bin directory with the
following lines. Make sure it is executable.

Code:

#!/bin/sh
  PULSE_SERVER=unix:/tmp/wavin-pulse-socket-name parec $* 


3. Backup current custom-convert.conf file and edit so that it uses
parec as follows.  I only tested the flac setting - I have doubts about
correct operation of PCM setting but may offer shorter latency.

Code:

#
  # wavin 
  #
  wavin pcm * * 
# R
[parec.sh] --channels=2 --format=s16le --rate=44100 --file-format=raw 
-D $FILE$ 
  wavin mp3 * *
# RB:{BITRATE=-B %B}
[parec.sh] --file-format=wav -d $FILE$  | [lame] --silent -q $QUALITY$ 
-v $BITRATE$ - -
  wavin flc * * 
# R
[parec.sh] --file-format=flac -d $FILE$ 


Assuming you are using standard PC audio with your applications (you
should check with pactl list short) then the associated "monitor" needs
to be chosen in the Favorite to be created.

Code:

wavin:alsa_output.pci-_00_1b.0.analog-stereo.monitor




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

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


Re: [SlimDevices: Plugins] Announce: CastBridge = integrate Chromecast players with LMS (squeeze2cast)

2016-01-09 Thread dieda

philippe_44 wrote: 
> If both don't find anything, it really looks like a network issue.
> what does the logs say ?

This ist the contain of the chromecast bridge: 
> 
> Starting Squeeze2cast:
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/CastBridge/Bin/squeeze2cast-armv6hf
> -Z -I -f /var/log/squeezeboxserver/castbridge.log -x
> /var/lib/squeezeboxserver/prefs/castbridge.xml -i
> /var/lib/squeezeboxserver/prefs/castbridge.xm

And this of the UPNP-Bridge:
> Retarting Squeeze2upnp after crash:
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/UPnPBridge/Bin/squeeze2upnp-armv6hf
> -Z -I -f /var/log/squeezeboxserver/upnpbridge.log -d all=debug -x
> /var/lib/squeezeboxserver/prefs/upnpbridge.xml
> .
> .
> .
> Retarting Squeeze2upnp after crash:
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/UPnPBridge/Bin/squeeze2upnp-armv6hf
> -Z -I -f /var/log/squeezeboxserver/upnpbridge.log -d all=debug -x
> /var/lib/squeezeboxserver/prefs/upnpbridge.xml

I'm running LMS on a raspberry with max2play



dieda's Profile: http://forums.slimdevices.com/member.php?userid=65247
View this thread: http://forums.slimdevices.com/showthread.php?t=104614

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


[SlimDevices: Plugins] Orange squeeze and Tidal....

2016-01-09 Thread Ryssen

I have orange squeeze on my Samsung Galaxy ace 4 mobile and it have been
working fine and I have been able to use Tidal.
But today when starting the app and going to my programs I get the
message:
This player is allreday registered to another user.If you bought it from
some one you should ask the person to remove the player from his
account.
thereafter try again.
Otherwise you can get help from www.mysqueezebox.com/support.

What to do I just see that text not the Tidal icon..



QNAP TS-219P+,Firmware v4.0.2(020130726),WD2002 X 2
SqueezeBox Duett
CS4398-->Lundahl DAC

Ryssen's Profile: http://forums.slimdevices.com/member.php?userid=12754
View this thread: http://forums.slimdevices.com/showthread.php?t=104988

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


Re: [SlimDevices: Plugins] Orange squeeze and Tidal....

2016-01-09 Thread Ryssen

Ryssen wrote: 
> I have orange squeeze on my Samsung Galaxy ace 4 mobile and it have been
> working fine and I have been able to use Tidal.
> But today when starting the app and going to my programs I get the
> message:
> This player is allreday registered to another user.If you bought it from
> some one you should ask the person to remove the player from his
> account.
> thereafter try again.
> Otherwise you can get help from www.mysqueezebox.com/support.
> 
> What to do I just see that text not the Tidal icon..

I just realized that If I connect to my other duet It works but with the
other I get that txt what??



QNAP TS-219P+,Firmware v4.0.2(020130726),WD2002 X 2
SqueezeBox Duett
CS4398-->Lundahl DAC

Ryssen's Profile: http://forums.slimdevices.com/member.php?userid=12754
View this thread: http://forums.slimdevices.com/showthread.php?t=104988

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


Re: [SlimDevices: Plugins] Announce: Beta version of SvrPowerControl

2016-01-09 Thread gharris999

Wirrunna wrote: 
> Finally got around to setting up Server Power Control on an upgraded
> Vortexbox 2.4 only to find pm-utils does not appear to be installed and
> a quick google search brought up
> http://forums.fedoraforum.org/showthread.php?t=308044 which says
> pm-utils is not available for Fedora 2.3.
> 
> The pm-utils site http://pm-utils.freedesktop.org/wiki/ gives the git
> clone command, in which directory should the git clone command be run ?
Sorry, about the delay in answering.  I've been in an undisclosed
location (See-You-Be-Eh...sh!) and have only just gotten home.  I'll
get a Fedora 23 machine up and running this next week, I hope.  In the
mean time, try making the following changes to the command settings on
the SrvrPowerCtrl settings page:

Shutdown Command: sudo /bin/systemctl poweroff
Suspend Command: sudo /bin/systemctl suspend
Hibernate Command: sudo /bin/systemctl hibernate
Reboot Server Command: sudo /bin/systemctl reboot

and edit the /etc/sudoers file on the server (need to be root or su to
do) add lines to the bottom of /etc/sudoers like:


Code:


  lms ALL = NOPASSWD: /bin/systemctl suspend
  lms ALL = NOPASSWD: /bin/systemctl hibrid-sleep
  lms ALL = NOPASSWD: /bin/systemctl hibernate
  lms ALL = NOPASSWD: /bin/systemctl poweroff
  lms ALL = NOPASSWD: /bin/systemctl reboot
  



..changing lms to match the account name that LMS is running
under...i.e. match the account name used further up in the sudoers file
for 

ALL = NOPASSWD: /sbin/shutdown*

I'm trying this now with Ubuntu 15.04 which uses systemd and systemctl.
So far, it seems to work.



gharris999's Profile: http://forums.slimdevices.com/member.php?userid=115
View this thread: http://forums.slimdevices.com/showthread.php?t=48521

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


Re: [SlimDevices: Plugins] quick catalog compare - tidal verses deezer

2016-01-09 Thread cdmackay

Mnyb wrote: 
> 
> I would gladly join a hifi streaming service that did exactly that
> ,,curated thier content to get the best sounding versions .
> 

right!

Tidal might be better here, as you say: a recent blog of theirs has a
curated review of Bowie's album history, with pointers to (some) albums.
Mind you, I don't really want to pay a 50% premium for that.

For other artists, e.g. Pink Floyd, there does seem to be only one
version of each, at Deezer. Perhaps it is an out-of-copyright thing. So
jazz from the 1950s suffers more than 70s stuff?



cdmackay's Profile: http://forums.slimdevices.com/member.php?userid=24816
View this thread: http://forums.slimdevices.com/showthread.php?t=104908

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


Re: [SlimDevices: Plugins] iPeng support thread

2016-01-09 Thread d6jg

There is a general bug in Share Pippin. If you choose Share then the
More option you get presented with a list of Activities but no way of
selecting them or reversing out back to iPeng.

iPhone 5s iOS 9.2 latest iPeng 9

Share does work with some Activities but not the More option or Email
(although it used to work with the latter). I use Copy a fair bit and
that works fine so I am not bothered by the other options not working.



*Vortexbox LMS 7.8 music on QNAP TS419p via NFS* iThingys/iPeng/Tablets
*Living Room* - SB3 -> Onkyo TS606 - > Celestion Ditton F20s - Zone 2 ->
Sony TA FE 320 -> Sennheiser RS 130 & B P7
*Office* - RPi -> Sony TA FE320 -> Celestion F10s / SB3 -> Onkyo CRN 755
-> Wharfedale Modus Cubes
*Dining Room* -> SB Boom *Kitchen* -> UE Radio (upgraded to SB Radio)
*Bedroom (Bedside)* - SB Touch -> Topping TP21 -> AKG Headphones
*Bedroom (TV)* - Amazon Fire TV (SB Player) -> Topping TP20 ->
Wharfedale Modus Cubes

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

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


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

2016-01-09 Thread philippe_44

kipeta wrote: 
> Thanks Philippe for the great plugin. I manage to integrate my kitchen
> radio (Revo SuperConnect) to LMS with it. No special
> settings/configurations required.
> 
> However I'd like to propose one minor patch in order to the get settings
> page links work with other skins (eg. Daphile). Just add "[% webroot %]"
> prefix to href's. 
> 
> > 
Code:

  >   > 
  > --- UPnPBridge/HTML/EN/plugins/UPnPBridge/settings/basic.html.orig
  > +++ UPnPBridge/HTML/EN/plugins/UPnPBridge/settings/basic.html
  > @@ -5,7 +5,7 @@
  > 
  > [% WRAPPER setting title="PLUGIN_UPNPBRIDGE_AUTORUN" 
desc="PLUGIN_UPNPBRIDGE_AUTORUN_DESC" %]
  >  [% "PLUGIN_UPNPBRIDGE_RUNNING_$running" | string %] [% IF binary %] 
([% binary %]) [% END %]
  > -   [% "PLUGIN_UPNPBRIDGE_USERGUIDELINK" | string %]
  > +   [% "PLUGIN_UPNPBRIDGE_USERGUIDELINK" | string %]
  > [%IF running %] [% 
"PLUGIN_UPNPBRIDGE_WARNING" | string %] [% END %]
  > [% END %]
  > 
  > @@ -43,7 +43,7 @@
  > [% END %]
  > [% WRAPPER setting title="PLUGIN_UPNPBRIDGE_LOGGING" 
desc="PLUGIN_UPNPBRIDGE_LOGGING_DESC" %]
  > [% "PLUGIN_UPNPBRIDGE_LOGENABLE" | string %]
  > -   [% 
"PLUGIN_UPNPBRIDGE_LOGLINK" | string %]
  > +   [% 
"PLUGIN_UPNPBRIDGE_LOGLINK" | string %]
  > [% "PLUGIN_UPNPBRIDGE_LOGSIZE" | string %] 
  > [% "PLUGIN_UPNPBRIDGE_ERASELOG" | string %]
  >  
  > @@ -51,7 +51,7 @@
  > [% WRAPPER setting title="PLUGIN_UPNPBRIDGE_CONFIG" 
desc="PLUGIN_UPNPBRIDGE_CONFIG_DESC" %]
  > [% configpath %]
  > 
  > -   [% 
"PLUGIN_UPNPBRIDGE_CONFLINK" | string %]
  > +   [% 
"PLUGIN_UPNPBRIDGE_CONFLINK" | string %]
  > [% "PLUGIN_UPNPBRIDGE_AUTOSAVECONFIG" | string %]
  > [% IF binary %]
  > 
  > 

> > 

Hi Kimmo - Thanks for the suggestion. I've added in both plugins, in dev
repository version (to be released soon)



LMS 7.7.5 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos 2xPLAY:1,
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBMC, Foobar2000, XBoxOne,
JRiver 21, Chromecast Audio, Chromecast v1, Pi B2, Pi B+, 2xPi A+,
Odroid-C1, Cubie2

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: CastBridge = integrate Chromecast players with LMS (squeeze2cast)

2016-01-09 Thread philippe_44

oyvindo wrote: 
> I'm running LMS 7.8.0 on a QNAP Linux server. 
> 
> Sent from my SM-G900F using Tapatalk

I've uploaded a dev version which 1/ is lest chatty and 2/ let you
switch off debuging except error by adding '-d all=error' in the 'extra
command line options' to be super quiet



LMS 7.7.5 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos 2xPLAY:1,
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBMC, Foobar2000, XBoxOne,
JRiver 21, Chromecast Audio, Chromecast v1, Pi B2, Pi B+, 2xPi A+,
Odroid-C1, Cubie2

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

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


Re: [SlimDevices: Plugins] Announce: CastBridge = integrate Chromecast players with LMS (squeeze2cast)

2016-01-09 Thread philippe_44

dieda wrote: 
> This ist the contain of the chromecast bridge: 
> 
> 
> And this of the UPNP-Bridge:
> 
> 
> I'm running LMS on a raspberry with max2play

If you have a pi B/B+, not a pi 2, you have to choose the armv5 binary
(I just tried on mine to be sure). The armv6 only works on the pi 2



LMS 7.7.5 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos 2xPLAY:1,
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBMC, Foobar2000, XBoxOne,
JRiver 21, Chromecast Audio, Chromecast v1, Pi B2, Pi B+, 2xPi A+,
Odroid-C1, Cubie2

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

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


Re: [SlimDevices: Plugins] Orange squeeze and Tidal....

2016-01-09 Thread Michael Herger

This player is allreday registered to another user.If you bought it from
some one you should ask the person to remove the player from his
account.
thereafter try again.
Otherwise you can get help from www.mysqueezebox.com/support.

What to do I just see that text not the Tidal icon..


Did you buy your device used, as the message suggests?
--

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