Re: [SlimDevices: Plugins] Announce: WaveInput for Linux

2018-02-10 Thread epoch1970

bpa wrote: 
> ...
> If this work OK then to use with waveinput I thikn you'd create a
> custom-convert.conf entry for "wavin flac" something like (not tested)
> > 
Code:

  >   > 
  > wavin flc * * 
  > # R
  > [nc] -l $FILE$ 
  > 

> > 
> and the create a favorite with an URL  "wavin:2999"
Thanks, I would not have figured out that last part!
Overall the nc test works well for audio (there is no noticeable lag
when using controls on the device), but for lip-sync, no cigar: the
audio is noticeably late. I tested over an above-average network, with
all processes at RT_RR max priority...
So local mode is fine, network mode via LMS would be fine for audio
only.

Thanks again.



3 SB 3 • Libratone Loop, Zipp Mini • iPeng (iPhone + iPad) • LMS 7.9
(linux) with plugins: CD Player, WaveInput, Triode's BBC iPlayer by bpa
• IRBlaster by Gwendesign (Felix) • Server Power Control by Gordon
Harris • Smart Mix, Music Walk With Me, What Was That Tune? by Michael
Herger • PowerSave by Jason Holtzapple • Song Info, Song Lyrics by
Erland Isaksson • AirPlay Bridge by philippe_44 • WeatherTime by Martin
Rehfeld • Auto Dim Display, SaverSwitcher, ContextMenu by Peter Watkins.

epoch1970's Profile: http://forums.slimdevices.com/member.php?userid=16711
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] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread slartibartfast

There is something very odd about Connect via the Android Spotify app
now. 

1. Once a Squeezebox player has been selected it is impossible to switch
to any other player.

2. After closing and reopening the Spotify app, a selected track will
play on the selected player but there is no "now playing" screen so
playback cannot be stopped via the Spotify app.

3. If the "now playing" screen is visible and a new track is selected
then the new track plays but the "now playing" screen still displays the
old track. If the playlist/queue is displayed then the correct track is
shown at the top of the page.

If the Windows web player is used then non of these issues occur but if
the player is switched then the original player does not stop.

If any other players than Squeezeboxes are   chosen in the Android app
then switching players is possible but as soon as a Squeezebox is
selected switching becomes impossible. 

Hope this makes sense.

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

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


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

2018-02-10 Thread earthbased

pierrick wrote: 
> Thank you for the line test adress not usable because there seems to be
> a firewall  built into my router since the test has failed to complete,
> due to 100% packet loss although I disabled all of my known firewalls.
> Still I never have that kind of issues with my standard RP listening...

Try this one http://www.dslreports.com/tools/pingtest



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

2018-02-10 Thread pippin

norderney wrote: 
> 
> IPeng keeps crashing out of program and back to my iPhone home screen
> intermittently. I have tried to see if there is a particular function
> causing it, but so far appears to happen while browsing music but it is
> very intermittent. 
> 

Have you found any way to reproduce this or is there a particular place
where this happens?
I'm actually seeing a lot of crash reports and it looks a bit like an
iOS issues (others are seeing similar crashes and it happens inside a
system transition) but I can't really reproduce it.
There are a few suggested workarounds I'd like to try but as long as I
can't reproduce it at all it's a bit difficult.



---
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] Spotty v1.9.0 - now with experimental Spotify Connect support!

2018-02-10 Thread jimmereeno

7.9.1 did the trick!  Wow.  Thanks again.
Obviously, I haven't been on top of watching out for these updates.



jimmereeno's Profile: http://forums.slimdevices.com/member.php?userid=67841
View this thread: http://forums.slimdevices.com/showthread.php?t=108030

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


Re: [SlimDevices: Plugins] Announce: WaveInput for Linux

2018-02-10 Thread bpa

An example to test latency using netcat - which is simply piping a Flac
stream across a TCP connection.  Anything else such as Pulseaudio will
build on this basic connection.


1.  The receiver system - set up first
This will steup Netcat to wait for a connection on port 2999 , when
connection is made the Flac stream is sent to flac to decode which then
passes to aplay to play on computer speaker.   

Code:


  nc -l 2999 | flac -d -cs - - | aplay -
  



2. On the source system

Code:


  arecord -d0 -c2 -f S16_LE -r 44100 -twav -D sysdefault | flac -cs 
--totally-silent --compression-level-0 - | nc 192.168.1.54 2999
  



This captures audio from Alsa source sysdefault into a CD quality stream
- it is sent to Flac to convert to Flac and then onto a netcat which
make a connection to host 192.168.1.54 on port 2999 and then  stream the
Flac.

To determine latency - compare delay between audio out from source and
audio out whenplaying on receiver.



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] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread Michael Herger

I can still not get the broadcoast of all players on the local network
to work.
Here is my log file, first I started the server with the "Don't ..."
option set, I then unchecked it...


Many NAS devices have avahi or similar running already. In this case the 
spotty helper would fail to run its own discovery server.


There's currently some work being done in the librespot library which 
would allow to re-use an existing avahi daemon. But Spotty is not using 
that code yet (it got implemented a few days ago). Until this happens 
you won't be able to use the discovery mode.



--

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread Michael Herger

- Set disableDiscovery to 0 in the config file
- Start the LMS
- I do see the player on my Spotify Client and play a song
- From that point on, I'm not able to see the Player on any other
   device and it also does not come back when I stop the playback.


See my previous response: Discovery won't work on many NAS devices.

--

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread Michael Herger

when I'm using the Spotty's menus in the LMS, I don't have any problems.

I have checked max2play of new versions, but I am up-to-date (not beta).


Is your phone configured using the same Spotify account as Spotty?


Is it right, that the field "Spotify client id" have to be empty?


Yes.

--

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


Re: [SlimDevices: Plugins] iPeng support thread

2018-02-10 Thread pippin

That would be an App Store problem. Rebooting the device can help. Or
uninstalling and reinstalling the App



---
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] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread Michael Herger

With four family accounts added to Spotty in LMS on Windows 10 I can
only one use one account. On the other Android devices (with the other
Spottify accounts) the player is not visible of when the squeezbox
player is selected the songs are not playing.

Multiple accounts are not working with spotty on windows?


They do work, but not as seamlessly as on other systems. I guess you're 
talking about the Connect mode? In this case you'd have to switch the 
account in LMS before you can control Spotty using Connect. This 
limitation stems from the fact that the discovery mode is not supported 
on Windows.


--

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


Re: [SlimDevices: Plugins] iPeng support thread

2018-02-10 Thread Owen Smith

Update to iPeng 9.4 is failing on my iPad Air2, it starts downloading
and doesn't work, I don't get any error but tbe update is always there
again. I'm on iPeng 9.3.4 and iOS 11.2.5.

I don't have a player on my network at the moment. Due to DIY the
network to my Receiver is unplugged. But would that stop me being able
to upgrade iPeng?



Owen Smith's Profile: http://forums.slimdevices.com/member.php?userid=42371
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] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread jasell

Hi, I'm running LMS 7.9.1 on my QNAP i686.

I can still not get the broadcoast of all players on the local network
to work.
Here is my log file, first I started the server with the "Don't ..."
option set, I then unchecked it...


Code:

0028: note: Run with `RUST_BACKTRACE=1` for a backtrace.
  0027: thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: 
Error { repr: Os { code: 92, message: "Protocol not available" } }', 
/checkout/src/libcore/result.rs:859
  0026: note: Run with `RUST_BACKTRACE=1` for a backtrace.
  0025: thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: 
Error { repr: Os { code: 92, message: "Protocol not available" } }', 
/checkout/src/libcore/result.rs:859
  0024: ...propagated at 
/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/CPAN/Net/HTTP/NB.pm
 line 32.
  0023: [18-02-10 23:59:40.0135] 
Slim::Networking::Discovery::Players::_players_error (146) Unable to get 
players: Error reading headers: Server closed connection without sending any 
data back at 
/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/CPAN/Net/HTTP/Methods.pm
 line 306.
  0022: ...propagated at 
/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/CPAN/Net/HTTP/NB.pm
 line 32.
  0021: [18-02-10 23:58:40.0159] 
Slim::Networking::Discovery::Players::_players_error (146) Unable to get 
players: Error reading headers: Server closed connection without sending any 
data back at 
/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/CPAN/Net/HTTP/Methods.pm
 line 306.
  0020: 
  0019:frame 9: main::main 
(/opt/ssods4/var/home/SqueezeboxServer/slimserver.pl line 1213)
  0018:frame 8: main::init 
(/opt/ssods4/var/home/SqueezeboxServer/slimserver.pl line 675)
  0017:frame 7: Slim::Utils::PluginManager::load 
(/opt/ssods4/var/home/SqueezeboxServer/slimserver.pl line 597)
  0016:frame 6: (eval) 
(/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Utils/PluginManager.pm
 line 391)
  0015:frame 5: Plugins::MyRadio::Plugin::initPlugin 
(/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Utils/PluginManager.pm
 line 391)
  0014:frame 4: Slim::Plugin::OPMLBased::initPlugin 
(/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Plugins/MyRadio/Plugin.pm
 line 20)
  0013:frame 3: Slim::Plugin::Base::initPlugin 
(/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Plugin/OPMLBased.pm
 line 54)
  0012:frame 2: Plugins::MyRadio::Plugin::webPages 
(/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Plugin/Base.pm
 line 69)
  0011:frame 1: Slim::Web::HTTP::addPageFunction 
(/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Plugins/MyRadio/Plugin.pm
 line 47)
  0010:frame 0: Slim::Utils::Log::logBacktrace 
(/share/MD0_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Web/HTTP.pm
 line 2595)
  0009: 
  0008: [18-02-10 23:31:24.4418] Slim::Web::HTTP::addPageFunction (2595) 
Backtrace:
  0007: [18-02-10 23:31:24.4406] Slim::Web::HTTP::addPageFunction (2595) Error: 
Slim::Web::HTTP::addPageFunction() is deprecated - please use 
Slim::Web::Pages->addPageFunction() instead
  0006: [18-02-10 23:31:21 ] ssctrl Setting nice level to +0
  0005: [18-02-10 23:31:21 ] ssctrl SqueezeboxServer started.
  0004: [18-02-10 23:31:21.2666] main::init (387) Starting Logitech Media 
Server (v7.9.1, 1517314665, Tue Jan 30 13:27:51 UTC 2018) perl 5.01 - 
i686-linux-thread-multi
  0003: [18-02-10 23:31:21.2671] main::init (387) Starting Logitech Media 
Server (v7.9.1, 1517314665, Tue Jan 30 13:27:51 UTC 2018) perl 5.01 - 
i686-linux-thread-multi
  0002: [18-02-10 23:31:17 ] ssctrl Command line = 
/opt/ssods4/var/home/SqueezeboxServer/slimserver.pl  --daemon --pidfile 
/opt/ssods4/var/home/SqueezeboxServer/Cache/squeezecenter.pid --cachedir 
/opt/ssods4/var/home/SqueezeboxServer/Cache --logdir 
/opt/ssods4/var/home/SqueezeboxServer/Logs --prefsdir 
/opt/ssods4/var/home/SqueezeboxServer/Prefs --noupnp --nodebuglog --noinfo 
--priority 0 --user ssods --group ssods --httpport 9001 
  0001: [18-02-10 23:31:17 ] ssctrl Starting SqueezeboxServer 
7.9.1-1517314665.



Is there some protocol missing? can it be added?



NAS: QNAP TS-459U+ -QTS 4.2.6- (4x 2TB, RAID5)
Services: LMS- 7.9.1 -,  SSOTS- 4.14-
Squeezebox:  6x Reciever, 3x Boom, 2x SB3 Classic
Other:  iPeng on iPad and iPhone

jasell's Profile: http://forums.slimdevices.com/member.php?userid=17817
View this thread: http://forums.slimdevices.com/showthread.php?t=108561

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


[SlimDevices: Plugins] Ickstream down?

2018-02-10 Thread gvh

Is anyone else suffering from Ickstream deadness? (for Tidal)
I can't even get to the Settings screen for the plugin on my server.

Even parts of the Ickstream web site are down.

Happily the old Tidal plugin on mysqueezebox.com is working

[18-02-10 10:29:51.7310]
Plugins::IckStreamPlugin::BrowseManager::__ANON__ (316) Failed to
retrieve content services from cloud: Timed out waiting for data
[18-02-10 10:29:51.7859] Slim::Utils::Timers::__ANON__ (273) Error:
Timer Slim::Networking::Async::_async_error failed: 
[18-02-10 10:30:15.1366]
Plugins::IckStreamPlugin::BrowseManager::topLevel (303) Retrieve content
services from cloud using
https://api.ickstream.com/ickstream-cloud-core/jsonrpc



gvh's Profile: http://forums.slimdevices.com/member.php?userid=1879
View this thread: http://forums.slimdevices.com/showthread.php?t=108694

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread slartibartfast

slartibartfast wrote: 
> Seems to be an issue with the Android Spotify app. I can't play anything
> at all even on the phone.
> 
> Sent from my SM-G900F using TapatalkI reinstalled Spotify on my phone. When I 
> started the app I saw "playing
on Touch do you want to listen on this phone" I clicked on "yes" and
music played on the phone. I then chose Radio from devices available and
the Radio started to play. I tried to select Touch from devices
available but saw the message "Play some music before selecting player"
or similar. 
So once a player is selected I can't change it. Very strange.

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

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread loopguru

ElFishi wrote: 
> since a few days I have problems starting Spotify Connect in the
> morning. 
> I need 4 - 5 attempts to connect to my squeezebox with the "connect to a
> device" function of the Windows app. 
> [...]
> I the earlier attempts the player name in the menu goes grey for a few
> seconds and then the Spotify app is again connected to This Computer.
> There is nothing that shows in the logfile.

Experiencing the same. Spotify app on iPhone tries connecting and
finally gives up. Even several connection attempts fail.

If I then switch to another Squeezebox Radio connection succeeds.
Switching back to the initial Squeezebox Radio leaves both (!)
Squeezebox Radios playing.
Absolutely nothing in the logs.

I can not recall this happened in the past so it might be a regression
with one of the recent Spotty updates.

Tom

Spotty 2.5.1,  LMS 7.9.1 on Synology 916+ (Intel Pentium N3710), perl
5.024000 - x86_64-linux



loopguru's Profile: http://forums.slimdevices.com/member.php?userid=67725
View this thread: http://forums.slimdevices.com/showthread.php?t=108561

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread slartibartfast

loopguru wrote: 
> Experiencing the same. Spotify app on iPhone tries connecting and
> finally gives up. Even several connection attempts fail.
> 
> If I then switch to another Squeezebox Radio connection succeeds.
> Switching back to the initial Squeezebox Radio leaves both (!)
> Squeezebox Radios playing.
> Absolutely nothing in the logs.
> 
> I can not recall this happened in the past so it might be a regression
> with one of the recent Spotty updates.
> 
> Tom
> 
> Spotty 2.5.1,  LMS 7.9.1 on Synology 916+ (Intel Pentium N3710), perl
> 5.024000 - x86_64-linuxSeems to be an issue with the Android Spotify app. I 
> can't play anything
at all even on the phone.

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

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread slartibartfast

slartibartfast wrote: 
> I reinstalled Spotify on my phone. When I started the app I saw "playing
> on Touch do you want to listen on this phone" I clicked on "yes" and
> music played on the phone. I then chose Radio from devices available and
> the Radio started to play. I tried to select Touch from devices
> available but saw the message "Play some music before selecting player"
> or similar. 
> So once a player is selected I can't change it. Very strange.
> 
> Sent from my SM-G900F using TapatalkThis only happens when a Squeezebox payer 
> is selected. If any other
player is selected I can change player.

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

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread reinholdk

frooop wrote: 
> What do I need to do to set the logger to INFO?

On the LMS web page->Settings-Advanced click the dropdown and select
Logging, then scroll down to the plugin.spotty entry and change it.
Click on Apply at the bottom of the page. If you need this to survive a
server restart, click also on the checkbox above the list.



reinholdk's Profile: http://forums.slimdevices.com/member.php?userid=36070
View this thread: http://forums.slimdevices.com/showthread.php?t=108561

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


Re: [SlimDevices: Plugins] Announce: WaveInput for Linux

2018-02-10 Thread epoch1970

I'm thinking of a player that allows playing from digital stream and
from analog in. I thought of a simple physical input switch, but then I
thought of the CDplayer plugin, that transcends normal CD playing by
making it multi-room.
All right then, let's make the switch in Alsa somehow. 
I'm playing with this:
- pi3, pCP 3.20
- analog out
- a crap C-Media USB thinggy that has mic in
- "alsaloop -v -P plughw:0,0 -C plughw:1,0 -t 500"
With this ridiculous 0.5ms latency constraint (-t 500), running the
alsaloop executable instead of some loop plugin directly in Alsa (?),
CPU usage is under 10%. Of course lip-sync is perfect between a phone
playing a video and outputting audio with a cable. 
Before that I was running with latency 250ms, lip-sync was already more
than perfect and CPU load about nil.

That makes me wonder if sending the input stream to LMS and then back to
the players, allowing synced playback, could be worth a try?
I assume that would require using Alsa to send the stream with JACKd,
receive it on the LMS server and process it with this plugin.

I've virtually no experience with JACK.
Do you have an idea of what kind of latency the end-result would have?
Lip-sync (~250ms) is desirable, but interactive controls response
(~500ms?) would still be interesting, I think.
What about the processing chain? JACK+WaveIn?



3 SB 3 • Libratone Loop, Zipp Mini • iPeng (iPhone + iPad) • LMS 7.9
(linux) with plugins: CD Player, WaveInput, Triode's BBC iPlayer by bpa
• IRBlaster by Gwendesign (Felix) • Server Power Control by Gordon
Harris • Smart Mix, Music Walk With Me, What Was That Tune? by Michael
Herger • PowerSave by Jason Holtzapple • Song Info, Song Lyrics by
Erland Isaksson • AirPlay Bridge by philippe_44 • WeatherTime by Martin
Rehfeld • Auto Dim Display, SaverSwitcher, ContextMenu by Peter Watkins.

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

2018-02-10 Thread norderney

I upgraded to the latest iPeng version 9.4 yesterday.
I am running it on an iPhone X running iOS 11.2.5.
IPeng keeps crashing out of program and back to my iPhone home screen
intermittently. I have tried to see if there is a particular function
causing it, but so far appears to happen while browsing music but it is
very intermittent. 
If you need any more info please let me know



Main Source: Transporter
Amp:  Cyrus 8XPd QX
Speakers: PMC twenty:23

CD/HDD Recorder: Alesis Masterlink ML-9600

http://www.last.fm/user/norderney1962

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

2018-02-10 Thread epoch1970

No they don't. I have managed to avoid pulseaudio until now.



3 SB 3 • Libratone Loop, Zipp Mini • iPeng (iPhone + iPad) • LMS 7.9
(linux) with plugins: CD Player, WaveInput, Triode's BBC iPlayer by bpa
• IRBlaster by Gwendesign (Felix) • Server Power Control by Gordon
Harris • Smart Mix, Music Walk With Me, What Was That Tune? by Michael
Herger • PowerSave by Jason Holtzapple • Song Info, Song Lyrics by
Erland Isaksson • AirPlay Bridge by philippe_44 • WeatherTime by Martin
Rehfeld • Auto Dim Display, SaverSwitcher, ContextMenu by Peter Watkins.

epoch1970's Profile: http://forums.slimdevices.com/member.php?userid=16711
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] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread loopguru

loopguru wrote: 
>  Switching back to the initial Squeezebox Radio leaves both (!)
> Squeezebox Radios playing.

This is reproducible for me. It even happens if I switch from a
Squeezebox Radio to my Raumfeld Spotify Connect enabled streamer: The
Squeezebox Radio continues to play although it is not the chosen device.



loopguru's Profile: http://forums.slimdevices.com/member.php?userid=67725
View this thread: http://forums.slimdevices.com/showthread.php?t=108561

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread slartibartfast

loopguru wrote: 
> This is reproducible for me. It even happens if I switch from a
> Squeezebox Radio to my Raumfeld Spotify Connect enabled streamer: The
> Squeezebox Radio continues to play although it is not the chosen device.At 
> least you can still switch between players. I can't even do that
anymore.[emoji20]

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

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread frooop

mherger wrote: 
> Hi Stefan
> 
> would you be able to play Spotify tracks using Spotty's menus, rather
> than Spotify Connect?
> 
> Please make sure you set plugin.spotty to INFO to get more information.
> And make sure you're running the latest max2play version. I think Spotty
> is not compatible with older versions.
> 
> Michael

Yes, playing through the menus always works.

What do I need to do to set the logger to INFO?

I'm not on max2play. I use a Synology DSM. My player is a max2play rpi,
but not the server.



frooop's Profile: http://forums.slimdevices.com/member.php?userid=67844
View this thread: http://forums.slimdevices.com/showthread.php?t=108561

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


Re: [SlimDevices: Plugins] Announce: WaveInput for Linux

2018-02-10 Thread bpa

epoch1970 wrote: 
> Yes, all machines would be pi3/linux, and all players would be identical
> in both software and hardware.

Do they have pulseuadio and if os what version of Pulseaudio ?



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] iPeng support thread

2018-02-10 Thread norderney

I meant to mention in previous post. The other issue I’m getting is
IPeng ver 9.4 is not going into Landscape mode. If I’m displaying albums
in New Music or searching for songs or artists when I turn my device on
it’s side it does not switch into landscape mode. It says in portrait
mode.



Main Source: Transporter
Amp:  Cyrus 8XPd QX
Speakers: PMC twenty:23

CD/HDD Recorder: Alesis Masterlink ML-9600

http://www.last.fm/user/norderney1962

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

2018-02-10 Thread pippin

Yes, no landscape mode on iPhone X, that will have to wait until the
redesign.
With the notch and the home indicator the old design simply doesn’t work
in landscape at all.



---
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] iPeng support thread

2018-02-10 Thread norderney

pippin wrote: 
> I should get them automatically if you have opted in to send crash
> reports

How can I check if I’ve opted in to send crash reports.



Main Source: Transporter
Amp:  Cyrus 8XPd QX
Speakers: PMC twenty:23

CD/HDD Recorder: Alesis Masterlink ML-9600

http://www.last.fm/user/norderney1962

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

2018-02-10 Thread bpa

epoch1970 wrote: 
> I'm thinking of a player that allows playing from digital stream and
> from analog in. I thought of a simple physical input switch, but then I
> thought of the CDplayer plugin, that transcends normal CD playing by
> making it multi-room.
> All right then, let's make the switch in Alsa somehow. 
> I'm playing with this:
> - pi3, pCP 3.20
> - analog out
> - a crap C-Media USB thinggy that has mic in
> - "alsaloop -v -P plughw:0,0 -C plughw:1,0 -t 500"
> With this ridiculous 0.5ms latency constraint (-t 500), running the
> alsaloop executable instead of some loop plugin directly in Alsa (?),
> CPU usage is under 10%. Of course lip-sync is perfect between a speaker
> driven by the Pi and a phone playing a video and outputting audio with a
> cable. 
> Before that I was running with latency 250ms, lip-sync was already more
> than perfect and CPU load about nil.
> 
> That makes me wonder if sending the input stream to LMS and then back to
> the players, allowing synced playback, could be worth a try?
> I assume that would require using Alsa to send the stream with JACKd,
> receive it on the LMS server and process it with this plugin.
> 
> I've virtually no experience with JACK.
> Do you have an idea of what kind of latency the end-result would have?
> Lip-sync (~250ms) is desirable, but interactive controls response
> (~500ms?) would still be interesting, I think.
> What about the processing chain? JACK+WaveIn?

I don't really understand what you are trying to do - it looks too
complicated and should be simplified.  Pulseaudio can do networked audio
(i.e source on different system and Pulse make it appear on LMS server
audio device) - it was discussed at some point in last few years.
Another way that was tested was using netcat to send a pure PCM stream
from one system to another.

Waveinput does nothing special - it is a command line which produces PCM
stream that feeds it into LMS as if it cam from a remote source.

If you can produce a command line with Jack or whatever that productes a
CD type PCM stream on stdout - then all you do is put your command into
the custom-command.conf file.

Any latency and delay will have two components.
1. LMS - time to send PCM stream to player and amount of data buffered
in player before audio start playing.  Syncing audio and video is 
2. Delay introduced by ALSA , Pulseaudio , Jack, netcat or whaever -
this is where big delays occur (often by some hard to control internal
buffers) and this is what you have to measure and reduce before messign
about with LMS & Waveinput



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: WaveInput for Linux

2018-02-10 Thread epoch1970

bpa wrote: 
> I don't really understand what you are trying to do - it looks too
> complicated and should be simplified.
With this...
- An LMs instance,
- 2 players, each with analog line-in. 1st one with at tablet attached,
2nd one with a CD player attached.
- players are synched.
...I wonder if I can get the group of players to play reasonably in
sync, regardless of the source: LMS, tablet or CD player.



3 SB 3 • Libratone Loop, Zipp Mini • iPeng (iPhone + iPad) • LMS 7.9
(linux) with plugins: CD Player, WaveInput, Triode's BBC iPlayer by bpa
• IRBlaster by Gwendesign (Felix) • Server Power Control by Gordon
Harris • Smart Mix, Music Walk With Me, What Was That Tune? by Michael
Herger • PowerSave by Jason Holtzapple • Song Info, Song Lyrics by
Erland Isaksson • AirPlay Bridge by philippe_44 • WeatherTime by Martin
Rehfeld • Auto Dim Display, SaverSwitcher, ContextMenu by Peter Watkins.

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

2018-02-10 Thread pippin

OK, I can see some crash reports, no idea, yet, what causes them, but
I'll find it. Thanks for the heads-up.



---
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] iPeng support thread

2018-02-10 Thread norderney

pippin wrote: 
> Hm, I’ll have a look at the crash reports.
> Haven’t seen any crashes during the beta, so right now I have no idea.

Are there any log files on IPeng that would be worth sending to you?



Main Source: Transporter
Amp:  Cyrus 8XPd QX
Speakers: PMC twenty:23

CD/HDD Recorder: Alesis Masterlink ML-9600

http://www.last.fm/user/norderney1962

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

2018-02-10 Thread pippin

Hm, I’ll have a look at the crash reports.
Haven’t seen any crashes during the beta, so right now I have no idea.



---
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] iPeng support thread

2018-02-10 Thread pippin

norderney wrote: 
> How can I check if I’ve opted in to send crash reports.

In the iPhone Settings “Privacy->Analytics->Share with App Developers”



---
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] iPeng support thread

2018-02-10 Thread norderney

pippin wrote: 
> In the iPhone Settings “Privacy->Analytics->Share with App Developers”

Yes. That feature is TURNED ON. Hopefully you are receiving reports from
me?



Main Source: Transporter
Amp:  Cyrus 8XPd QX
Speakers: PMC twenty:23

CD/HDD Recorder: Alesis Masterlink ML-9600

http://www.last.fm/user/norderney1962

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

2018-02-10 Thread Dentaku

pippin wrote: 
> In the iPhone Settings “Privacy->Analytics->Share with App Developers”

Good point! At my phone it was turned off and I have crashs from time to
time, especialle when I to go back from the playing screen to the main
menu.



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

2018-02-10 Thread bpa

epoch1970 wrote: 
> 
> - 2 players, each with analog line-in. 1st one with a tablet attached,
> 2nd one with a CD player attached.

Are both the players linux/windows based ?



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: WaveInput for Linux

2018-02-10 Thread epoch1970

bpa wrote: 
> Are both the players linux/windows based ?

Yes, all machines would be pi3/linux, and all players would be identical
in both software and hardware.



3 SB 3 • Libratone Loop, Zipp Mini • iPeng (iPhone + iPad) • LMS 7.9
(linux) with plugins: CD Player, WaveInput, Triode's BBC iPlayer by bpa
• IRBlaster by Gwendesign (Felix) • Server Power Control by Gordon
Harris • Smart Mix, Music Walk With Me, What Was That Tune? by Michael
Herger • PowerSave by Jason Holtzapple • Song Info, Song Lyrics by
Erland Isaksson • AirPlay Bridge by philippe_44 • WeatherTime by Martin
Rehfeld • Auto Dim Display, SaverSwitcher, ContextMenu by Peter Watkins.

epoch1970's Profile: http://forums.slimdevices.com/member.php?userid=16711
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] Ickstream down?

2018-02-10 Thread pippin

Hi, our hosting provider did a maintenance earlier today, the service
should now be up and running again.



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

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.0.0 - Spotify Connect for your Squeezebox

2018-02-10 Thread Nomen Nescio

With four family accounts added to Spotty in LMS on Windows 10 I can
only one use one account. On the other Android devices (with the other
Spottify accounts) the player is not visible of when the squeezbox
player is selected the songs are not playing.

Multiple accounts are not working with spotty on windows?



LMS (latest nightly) on Windows 10 as a Server (and Raspberry
PiCoreplayer as backup LMS)
Squeexebox Touch
Squeezebox Boom
Squeezebox Radio
Squeezebox Classic
Picoreplayer's

Nomen Nescio's Profile: http://forums.slimdevices.com/member.php?userid=60051
View this thread: http://forums.slimdevices.com/showthread.php?t=108561

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