Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread bluetdi

@tcutting
The UV-Index is *-1* at my location and this cannot be right. Does the
plugin do any calculation on the requested WU-value?



2x Odroid U3 + Max2play + LMS 7.9, 2x Touch, 2x Classic, 2x Boom, 2x
Radio & 3x iPeng 8

bluetdi's Profile: http://forums.slimdevices.com/member.php?userid=20633
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: Smart Mix plugin

2014-12-08 Thread Michael Herger

I just subscribed to Spotify and set up SmartMix to use both my local
music (about 8000 tracks) and Spotify. However, when I start a mix (no
matter what type), it only plays tracks from Spotify, nothing from my
local files. I've check-marked in the plug-in to use both. Am I missing
something? Thanks in advance.


This topic has come up before (and I'm seeing this happen myself). TEN 
sometimes misses what is available locally. It can be due to a stupid 
typo in the title, or slightly different spelling etc.


And make sure your tracks have been exported correctly (during a LMS 
scan - check scanner.log).


--

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


Re: [SlimDevices: Plugins] Annouce: Squeeze Control, a squeezebox remote app, is now available for Android

2014-12-08 Thread Michael Herger

That's interesting. I remember encountering a bug a while ago where a
command that didn't need a client ID failed when I sent one, which is
probably why I don't send the id unless the command specifically needs
it.


Would have been interesting to know which command this was and how 
recent the server. But in general things shouldn't break when you send a 
player ID without it being needed. Unlike the other way around :-).


--

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread bearshare

16900

A good information to display is the phase of the moon (today) for
example in percent or in words (full, new) or both...


tcutting wrote: 
> It's not currently used in SDT so it's also not visible to CCH. I was
> showing what info is available from wunderground, but need help figuring
> out what kind of info is desired.
> 
> Sent from my HTC6525LVW using Tapatalk


+---+
|Filename: Bildschirmfoto 2014-12-09 um 05.46.44.png|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=16900|
+---+


bearshare's Profile: http://forums.slimdevices.com/member.php?userid=63669
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread BoomX2

tcutting wrote: 
> These unfortunately will be further down on my list of possible
> updates.
> The longweather previously in SDT uses a different sub-routine, and I
> haven't studied it to try to understand what it is doing.
> For the maps, I'll have to look into it. I believe SDT previously
> provided map information, but again I haven't looked at what it was
> doing, nor how it was doing it.

I think the long weather would be easy to add to your release as long as
the text is in your $json_text.  You can ignore the other sub-routine
and place what you need in your gotWunderground sub-routine.  I've
pasted the code I used for the long weather statements below.  I placed
this in the gotWeatherToday sub-routine.  Put the forecast time of day
in @WETdisplayItems1temp and the weather text in the
@WETdisplayItems2temp.  Push them in chronological order and your done.


Code:


if ($dnChg eq "D") { 
# currently
push(@WETdisplayItems1temp, $wetData{-1}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather($second->{'NCphrase256'}));
# today
push(@WETdisplayItems1temp, $wetData{0}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather(@$third[0]->{'narrative12'}));
# tonight
push(@WETdisplayItems1temp, $wetData{1}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather(@$third[0]->{'narrative12_24'}));
#tomorrow
push(@WETdisplayItems1temp, $wetData{2}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather(@$third[1]->{'narrative12'}));
#tomorrow night
push(@WETdisplayItems1temp, $wetData{3}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather(@$third[1]->{'narrative12_24'}));
}
else {
# currently
push(@WETdisplayItems1temp, $wetData{-1}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather($second->{'NCphrase256'}));
# tonight
push(@WETdisplayItems1temp, $wetData{0}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather(@$third[0]->{'narrative12_24'}));
#tomorrow
push(@WETdisplayItems1temp, $wetData{1}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather(@$third[1]->{'narrative12'}));
#tomorrow night
push(@WETdisplayItems1temp, $wetData{2}{'forecastTOD'});
push(@WETdisplayItems2temp, 
localizeLongWeather(@$third[1]->{'narrative12_24'}));
}
  
  



PS - The localizeLongWeather function reads through the text and
replaces temperature and wind speed values with the user preference. 
i.e. - changes F to C, MPH to knots etc.



BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread BoomX2

#   Fixed count in sdt10day to 9.
#   Fixed missing sunrise/sunset from current/today.
#   Adjusted handling of current through tomorrow 
night intervals.
#   Corrected the period that data is collected 
from for 
#   tomorrow/tomorrow night.
#   Corrected scrolling of sports scores on Boom 
clients.


+---+
|Filename: SuperDateTime5-9-19.zip  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=16899|
+---+


BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread prabbit

phred wrote: 
> there are now -two- apps for SuperDateTime.  One is by tcutting, which
> only uses data from Weather Underground.  The other is from BoomX2 and
> he has restored SDT
> back to it's former self, and I believe has added a few enhancements. 
> Best thing to do is to go back about 200 posts or so and start reading.

I'd like to propose that tcutting and BoomX2 both start brand new
"Announce" threads. That may help clear up some (but not all) of the
confusion.



prabbit's Profile: http://forums.slimdevices.com/member.php?userid=11142
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread papajohn

BoomX2 wrote: 
> If anyone is interested, I have completed a release of SDT that I
> believe has all the elements from weather.com that were previously
> provided in Greg's SDT releases.  I have bumped the rev to 5.9.18 so LMS
> will not try to overwrite it with 5.9.16 from Greg's repository.  The
> version is also distinct from the version numbering of tcutting's
> releases that are in the 5.10.X range.
> 
> I have also provided some error checking on the setting for the
> Weather.com Station Identifier since that appeared to cause issues for
> some users.  If you do not enter a station in the valid format it will
> default to Chicago's station of 60614:4:US.
> 
> Hopefully weather.com will be more stable going forward since they are
> using JSON data.  If not, I will be trying out tcutting's release the
> next time weather.com crashes SDT.
> 
> If you do happen to try this release let me know how it works for you.
> 
> Cheers,
> Don
> 
> PS - One area I did not touch is the weather map images.  If you were
> using those, you will probably want to set the EXTERNAL MAP IMAGE
> SUPPORT setting to No.

Fantastic.
Now working again on my Transporter with BoomX2, running LMS 7.9
nightlies on Mac OS 10.9.5.



papajohn's Profile: http://forums.slimdevices.com/member.php?userid=34517
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


[SlimDevices: Plugins] IR Blaster and 2 zone stereo receivers

2014-12-08 Thread kidhazy

I've been using IR Blaster successfully from my Squeezebox Classic to
poweron my receiver, set it to the correct input and play music.   This
is particularly useful when I use the iPeng or Squeezepad apps.

I'm now looking to connect some speakers to the Zone 2 of my receiver
and looking to see if there is anyway to have different "On" commands to
the Squeezebox.

Currently my Power On settings under IR Blaster PowerOn Zone 1 of my
stereo and set input for Zone 1 to the Squeezebox.  I want to see if
there's some way to add a different "Power On" for Zone 2 so I can
selectively use that one without impacting Zone 1.

I think I'm asking a bit much because there's only 1 PowerOn command,
but I'm interested if anyone else has played with IR Blaster for
multi-zoned receivers and being able to selectively choose which zone to
use.

Thanks.



kidhazy's Profile: http://forums.slimdevices.com/member.php?userid=42259
View this thread: http://forums.slimdevices.com/showthread.php?t=102679

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread Loom

tcutting wrote: 
> If you use the last version I posted, the is a switch on the settings
> page to select 12hr am/pm vs. 24 hour.
> 
> Sent from my HTC6525LVW using Tapatalk

Installed 5.10.3, and now the descriptions of the settings are missing.


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


Loom's Profile: http://forums.slimdevices.com/member.php?userid=35285
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

phred wrote: 
> I'm seeing NORTH, SOUTH, EAST, WEST.  All other directs are show
> abbreviated.  NE, NNW, ENE, etc.  I'm pretty it was this way before the
> recent crap-out.  And I was using WU's %j then, and now.

I could probably change this, but if we change the language settings for
the WU query the change would only impact the English results.

Sent from my HTC6525LVW using Tapatalk





tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread phred

tcutting wrote: 
> Do you know if it ONLY spells it out for north, east, south, and west?
I'm seeing NORTH, SOUTH, EAST, WEST.  All other directs are show
abbreviated.  NE, NNW, ENE, etc.  I'm pretty it was this way before the
recent crap-out.  And I was using WU's %j then, and now.



phred's Profile: http://forums.slimdevices.com/member.php?userid=52602
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] iPeng support thread

2014-12-08 Thread Deaf Cat

Thanks for the quick reply. 
Ah, so you won't get it working by Christmas ;-)
Will no doubt come across something saying that you have added it at
some point in the future,
Many Thanks for your answer,
cheers 
dc



Deaf Cat's Profile: http://forums.slimdevices.com/member.php?userid=515
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: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

bearshare wrote: 
> Yes, but which  %-parameter should set in CCH? Here is not a default
> value specified...

It's not currently used in SDT so it's also not visible to CCH. I was
showing what info is available from wunderground, but need help figuring
out what kind of info is desired.

Sent from my HTC6525LVW using Tapatalk





tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

Loom wrote: 
> Which brings me right to my next question:
> 
> Sunrise & sunset times are working great now, but how to switch from
> AM/PM to 24 hour format ?
> 
> And are these sunrise/sunset times provided by WU or Weather.com? Since
> there is only a WU identifier available, Weather.com is gone with
> TCutting.

If you use the last version I posted, the is a switch on the settings
page to select 12hr am/pm vs. 24 hour.

Sent from my HTC6525LVW using Tapatalk





tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

treble wrote: 
> Hi, I am using tcunning's plug in and works great, except how it is
> displaying wind direction.  
> 
> It used to be abbreviated, like S for South, but now it seems to spell
> it out, so South instead of S.  Most of the time at least, when it is
> east north east or something it will display ENE.  
> 
> Can it be abbreviated all the time like it used to be?  Otherwise it
> doesn't fit on my SB3 display :-)  No biggie, but thanks anyway.

Do you know if it ONLY spells it out for north, east, south, and west?
I don't change what comes back from wunderground... I MAY be able to
change the values in the sdt code. 

Sent from my HTC6525LVW using Tapatalk





tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread phred

Loom wrote: 
> Thanks very much.
> Got the key, but I cannot figure out where to enter it.
> WU station is entered and working good. But no idea where to enter the
> api-key ..
> EDIT: Ouch! Never mind, I used BoomX2's version by accident ..
> @TCutting & BoomX2: Ever thought about teaming up and maintaining a
> single version? This might get confusing in the long run ..
Glad to hear you've got it working.

Loom wrote: 
> Which brings me right to my next question:
> Sunrise & sunset times are working great now, but how to switch from
> AM/PM to 24 hour format ?
> And are these sunrise/sunset times provided by WU or Weather.com? Since
> there is only a WU identifier available, Weather.com is gone with
> TCutting.
Both weather.com and WU provide sunrise/sunset.  You said you're using
tcutting's version, as am I, and I have %s and %S working just fine.  If
your existing skin has the sun variables in it, they should be showing.



phred's Profile: http://forums.slimdevices.com/member.php?userid=52602
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread phred

Loom wrote: 
> Thanks very much.
> 
> Got the key, but I cannot figure out where to enter it.
> 
> WU station is entered and working good. But no idea where to enter the
> api-key ..
> 
> EDIT: Ouch! Never mind, I used BoomX2's version by accident ..
> 
> @TCutting & BoomX2: Ever thought about teaming up and maintaining a
> single version? This might get confusing in the long run ..

Glad to hear you've got it working.



phred's Profile: http://forums.slimdevices.com/member.php?userid=52602
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread Loom

Which brings me right to my next question:

Sunrise & sunset times are working great now, but how to switch from
AM/PM to 24 hour format ?

And are these sunrise/sunset times provided by WU or Weather.com? Since
there is only a WU identifier available, Weather.com is gone with
TCutting.



Loom's Profile: http://forums.slimdevices.com/member.php?userid=35285
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread Loom

phred wrote: 
> Let's back up a bit ... there are now -two- apps for SuperDateTime.  One
> is by tcutting, which only uses data from Weather Underground.  The
> other is from BoomX2 and he has restored SDT
> back to it's former self, and I believe has added a few enhancements. 
> Best thing to do is to go back about 200 posts or so and start reading.
> 
> If you have tcutting's latest version installed, and want to stay with
> it, then go here first: http://www.wunderground.com/weather/api/ and
> apply for the free API Key.  Select 'Cumulus' and 'Developer.'  Once you
> have the key, you need to go to SDT settings on LMS and enter it.  Also
> make sure you enter the WU (location) Identifer after you enter your
> key.  I think that's it.  If not, post again with details.

Thanks very much.

Got the key, but I cannot figure out where to enter it.

WU station is entered and working good. But no idea where to enter the
api-key ..



Loom's Profile: http://forums.slimdevices.com/member.php?userid=35285
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread phred

Loom wrote: 
> Location is correct, in Weather.com aswell as in WU.
> 
> I somehow missed the procedure with the API-key.
> 
> Where can I get one and how is it used? Sorry for sounding a little
> dumb, just found this thread after several years of hazzle-free use ;)
Let's back up a bit ... there are now -two- apps for SuperDateTime.  One
is by tcutting, which only uses data from Weather Underground.  The
other is from BoomX2 and he has restored SDT
back to it's former self, and I believe has added a few enhancements. 
Best thing to do is to go back about 200 posts or so and start reading.

If you have tcutting's latest version installed, and want to stay with
it, then go here first: http://www.wunderground.com/weather/api/ and
apply for the free API Key.  Select 'Cumulus' and 'Developer.'  Once you
have the key, you need to go to SDT settings on LMS and enter it.  Also
make sure you enter the WU (location) Identifer after you enter your
key.  I think that's it.  If not, post again with details.



phred's Profile: http://forums.slimdevices.com/member.php?userid=52602
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread treble

Hi, I am using tcunning's plug in and works great, except how it is
displaying wind direction.  

It used to be abbreviated, like S for South, but now it seems to spell
it out, so South instead of S.  Most of the time at least, when it is
east north east or something it will display ENE.  

Can it be abbreviated all the time like it used to be?  Otherwise it
doesn't fit on my SB3 display :-)  No biggie, but thanks anyway.



treble's Profile: http://forums.slimdevices.com/member.php?userid=2797
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] iPeng support thread

2014-12-08 Thread pippin

No, only streaming. Downloading files to the device is a long-lasting
to-do item but no idea when I will have the time for it.



---
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 8, the Universal App for iOS 7 and iOS 8*

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

2014-12-08 Thread Deaf Cat

Hi 
Just wondering if the playback feature allows flac files to be stored on
the ipod, and played directly from the ipod, with no LMS running on a
pc?
Many thanks
dc



Deaf Cat's Profile: http://forums.slimdevices.com/member.php?userid=515
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: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread Loom

Location is correct, in Weather.com aswell as in WU.

I somehow missed the procedure with the API-key.

Where can I get one and how is it used? Sorry for sounding a little
dumb, just found this thread after several years of hazzle-free use ;)



Loom's Profile: http://forums.slimdevices.com/member.php?userid=35285
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: Spotify Premium Plugin (Beta)

2014-12-08 Thread Triode

cadfish wrote: 
> Hi all,
> 
> I can not seem to get the plugin to work. Browsing works, but no success
> to play a track.
> Same with the self test. All but the last test pass, then "Unable to
> authenticate player"
> 
> In the log I see
> 
> > 
Code:

  >   > 
  > [01:20:10.242] main:567 new connection
  > [01:20:10.244] main:619 req: stream.flc res: 
spotify:track:1blo7jFYjDyBkD43T4cvjY par: 
player=c6%3A5d%3A6e%3A5f%3A4f%3A2e&start=0&sync=1&id=2 prot: SPOTSTREAM/1.0 
auth: (null)
  > [01:20:10.244] main:702 relogging in as user: XX
  > [01:20:10.255] logged_in:54 logged in
  > [01:20:10.255] credentials_blob_updated:119 credentials blob updated
  > [01:20:11.255] main:813 newstream connection from 192.168.1.80
  > [01:20:11.255] main:849 streamid: 0 newid: 2 type: FLAC
  > [01:20:11.285] log_message:81 log: 00:20:11.285 I [ap:1752] Connecting to 
AP ap.gslb.spotify.com:4070
  > [01:20:11.370] log_message:81 log: 00:20:11.370 I [ap:1226] Connected to 
AP: 194.132.162.18:4070
  > [01:20:12.260] check_player:235 unable to create cli connection to 
127.0.0.1:9097
  > [01:20:12.260] main:871 unable to play on this player: -1
  > [01:20:12.281] credentials_blob_updated:119 credentials blob updated
  > [01:20:12.281] metadata_updated:86 new meta
  > [01:20:12.281] metadata_updated:86 new meta
  > [01:20:12.801] log_message:81 log: 00:20:12.801 E 
[c:/Users/spotify-buildagent/BuildAgent/work/1e0ce8a77adfb2dc/client/core/network/proxy_resolver_win32.cpp:215]
 WinHttpGetProxyForUrl failed
  > [01:20:22.281] log_message:81 log: 00:20:22.281 I [offline-mgr:2032] 0 
files are locked. 0 images are locked
  > [01:20:22.281] log_message:81 log: 00:20:22.281 I [offline-mgr:2058] 0 
files unlocked. 0 images unlocked
  > [01:20:44.560] main:567 new connection
  > [01:20:44.560] main:619 req: status.json res: (null) par: (null) prot: 
HTTP/1.0 auth: (null)
  > [01:20:44.560] process_status:1464 process status
  > 

> > 
> 
> And in the debug console it says
> 
> > 
Code:

  >   > 
  > [14-12-05 01:20:12.2702] 
Plugins::Spotify::ProtocolHandler::handleDirectError (366) stream failed - bad 
player: -1
  > 

> > 
> 
> I tried different CLI ports and disabled the firewall completely - no
> success.
> 
> Win 7, 32Bit, LMS 7.8
> 
> Any idea where to look for the reason?
> 
> Günther

It does look like the plugin is not able to connect to the cli port of
LMS.  Can you try changing the cli port on the server and restarting the
server?



Triode's Profile: http://forums.slimdevices.com/member.php?userid=17
View this thread: http://forums.slimdevices.com/showthread.php?t=79706

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread phred

Loom wrote: 
> I'm using the latest plugin from TCutting, and I'm wondering if
> Sunrise/Sunset times are supposed to work?
> %s and %S doesn't give *any* data at all. It just stays blank ...
I'm using it on my Touch and my Radio and I've got correct data.  I
assume you have a WU API Key.  Is your location set correctly?



phred's Profile: http://forums.slimdevices.com/member.php?userid=52602
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


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

2014-12-08 Thread mvordeme

Just want to say thanks once in a while for the maintenance-free
plug-in. :-)



scaleo home server 2105 | logitech media server 7.7.3 - 1355443035 |
server power control 20120427.163654 |
transporter & duet & boom & radio | rotel rc-995 & rmb-100 | phonar p-5

mvordeme's Profile: http://forums.slimdevices.com/member.php?userid=22892
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] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread Loom

I'm using the latest plugin from TCutting, but I'm wondering if
Sunrise/Sunset times are supposed to work?

%s and %S doesn't give *any* data at all. It just stays blank ...



Loom's Profile: http://forums.slimdevices.com/member.php?userid=35285
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread bearshare

Oh, my  failure. I've set DE instead DL, now it works. Many thanks!

bluetdi wrote: 
> These seem to be the wrong lines. Did you check the context of the code
> when inserting lang:DL?



bearshare's Profile: http://forums.slimdevices.com/member.php?userid=63669
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread bluetdi

bearshare wrote: 
> I tried to change the value, but it' without a change. In my plugin
> script is on Line 2993 and 3008...
These seem to be the wrong lines. Did you check the context of the code
when inserting lang:DL?



2x Odroid U3 + Max2play + LMS 7.9, 2x Touch, 2x Classic, 2x Boom, 2x
Radio & 3x iPeng 8

bluetdi's Profile: http://forums.slimdevices.com/member.php?userid=20633
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] WaveInput Setup Troubles

2014-12-08 Thread bpa

mike_b16 wrote: 
> I'd definitely like to share this with the community when it's
> completed.

If you plan to offer the completed plugin you'll need to learn LMS Perl
to rename and create your own plugin package and be able to provide
support.



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

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread bearshare

I tried to change the value, but it' without a change. In my plugin
script is on Line 2993 and 3008.
Now I get this result (seems like a basic error?) and the language of
outputs is still in EN...:

Slim::Utils::Misc::msg (1343) Warning: [17:22:02.8281] Using a hash as a
reference is deprecated at
C:\PROGRA~2\SQUEEZ~1\server\Plugins\SuperDateTime\lib/Plugins/SuperDateTime/Plugin.pm
line 2207.
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 1
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 2
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 3
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 4
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 5
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 6
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 7
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 8
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 9
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5943) error getting 
error count at 10
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5944) Cannot request
non-HTTP URL 
Plugins::SuperDateTime::Plugin::gotErrorViaHTTPmap (5946) Network error
count reached during getWeatherMapURL.

bluetdi wrote: 
> Yes. If you insert in the plugin
> 
> ...('wunder_apikey') . '/*lang:XX/*conditions/...
> 
> at line 3016 and 3031 and use for XX the countycode DL, the output is in
> german language.
> 
> Edit: Changed to german day/date by editing line 3506 to
> 
> > 
Code:

  >   > $wetData{$wetDay}{'date'} = 
($dailyfore[$dayindex-1]->{'date'}->{'day'}) . '. ' . 
($dailyfore[$dayindex-1]->{'date'}->{'monthname_short'});

> >



bearshare's Profile: http://forums.slimdevices.com/member.php?userid=63669
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread bearshare

Yes, but which  %-parameter should set in CCH? Here is not a default
value specified...

tcutting wrote: 
> I believe the query I am running provides some moon information (in the
> "astronomy" portion).
> From the wunderground docs, this should provide:
> "moon_phase": {
> "percentIlluminated": "81",
> "ageOfMoon": "10",
> "current_time": {
> "hour": "9",
> "minute": "56"
> },
> 
> The question would be what to do with this information?



bearshare's Profile: http://forums.slimdevices.com/member.php?userid=63669
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2014-12-08 Thread Mantis07

Hi, first post here. I wanted to find out if the Squeezelite plugin for
LMS will convert all PCM to DSD(128 preferably). If so what command line
options do I use in the local player/Additional options(advanced)
field?

Thanks very much in advance for any advice.

tony



Mantis07's Profile: http://forums.slimdevices.com/member.php?userid=63700
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

bearshare wrote: 
> I have found it - the switch for use external API in Squeezebox Server
> wasn't set. Now the PlugIn use the weather data from wunderground -
> happy :rolleyes:
> The only thing In don't like is the language output, for example "most
> cloudy", I would like to see in my preferred language german "meist
> bewölkt".
> In the API description I found "To modify the language that the API
> returns add the setting /lang:XY/, where XY is a two letter language
> code." But I don't found a way to set the language in CCH. Any ideas?
> And the next On Top feature "moon phase" - is it possible to request the
> values from API?

I believe the query I am running provides some moon information (in the
"astronomy" portion).
>From the wunderground docs, this should provide:
"moon_phase": {
"percentIlluminated": "81",
"ageOfMoon": "10",
"current_time": {
"hour": "9",
"minute": "56"
},

The question would be what to do with this information?



tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread phred

tcutting wrote: 
> I hope to post my latest updates soon. I added some additional "local"
> icons, and added the code to select the local "night" icons.  After
> trying some of the WU icons, I think I still prefer the local ones, but
> wanted to see the night icons.
Local night!  Nice.  Perhaps now I won't try so hard to get the WU set
working on the touch.  Although the tinkerer in me would really like to
figure out why my Touch is different than all the others.



phred's Profile: http://forums.slimdevices.com/member.php?userid=52602
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

bluetdi wrote: 
> @phred
> This might solve your issuue. The switch is set to Yes on my SDT
> settings page since beginning, so I was not aware of it. Give it a last
> try.
> 
> @tcutting
> LongWeather would be fine and also the other modifications you
> mentioned
> 
> Really new and something very special were the implemention of Weather
> maps from WU. Now that we use an APi-Key we can request the Radar +
> Satellite maps and in the CCH make use of the logotype
> stdweathermapicon. At the moment I use imageicon because I need to give
> the URL, which is possible there. stdweathermapicon uses a location
> filed, which could be used to transfer it in the API-request:
> 
> > 
Code:

  >   > 
http://api.wunderground.com/api/YOUR_WU_API_KEY_HERE/radar/satellite/q/YOUR_COUNTRY/YOUR_TOWN.gif?rad.width=200&rad.height=200&rad.rainsnow=1&sat.width=200&sat.height=200&sat.key=sat_ir4&sat.gtt=107&sat.timelabel=1

> > 
> 
> The picture I request is the same size as my covericon so it can be
> shown in sequence with it. If the request is embedded in the plugin it
> is not extra and is combined with the other ones so saves requests.
> What you think about it?

These unfortunately will be further down on my list of possible
updates.
The longweather previously in SDT uses a different sub-routine, and I
haven't studied it to try to understand what it is doing.
For the maps, I'll have to look into it. I believe SDT previously
provided map information, but again I haven't looked at what it was
doing, nor how it was doing it.



tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

bluetdi wrote: 
> Yes. If you insert in the plugin
> 
> ...('wunder_apikey') . '/*lang:XX/*conditions/...
> 
> at line 3016 and 3031 and use for XX the countycode DL, the output is in
> german language.
> 
> Edit: Changed to german day/date by editing line 3506 to
> 
> > 
Code:

  >   > $wetData{$wetDay}{'date'} = 
($dailyfore[$dayindex-1]->{'date'}->{'day'}) . '. ' . 
($dailyfore[$dayindex-1]->{'date'}->{'monthname_short'});

> > 

Nice catch. I will look into adding this as I work my recent updates.
Would require an entry addition to the Settings page. If it doesn't
break anything else, that would be good.
There are a couple "hard coded" text fields I've added to the recent
version, so those may stay in English, or trail behind in implementation
(unless I can figure out how to pull appropriate information out of the
weather data, which then would be handled by getting the weather
information returned in the appropriate language).



tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] WaveInput Setup Troubles

2014-12-08 Thread mike_b16

Ok, I'll have a look and let you know how it goes. Thanks for being
patient.

Cheers,

Michael



mike_b16's Profile: http://forums.slimdevices.com/member.php?userid=63606
View this thread: http://forums.slimdevices.com/showthread.php?t=102551

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


Re: [SlimDevices: Plugins] WaveInput Setup Troubles

2014-12-08 Thread bpa

mike_b16 wrote: 
> I do believe you. I understand that your plugin is expecting the audio
> at 16/44,1. I don't believe that I have enough knowledge to create a
> parseMetadata routine which can just automatically detect the source
> information. That's why I'm asking if I can just hardcode the values in
> and avoid having to try to learn Perl or find someone with enough
> expertise since I won't use any other formats than 24/192/2ch.

All you need to do is look in other plugin for the parseMetadata
routine, copy the code to the WAVIN.pm file, chop out the parsing code
from the other plugin  and hardcode the values you want in the returned
data.



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

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

phred wrote: 
> Thanks for finding yet another attempt to fix this issue.  But yet
> again, it didn't work.  
> 
> I have the Touch next to the Radio at this point, and as I change from
> local icon to WU icon in SDT, I can see that it takes 2-5 seconds to
> change on the Radio.  The Touch only changes when I power-cycle it.  But
> the Touch change is only from local to nothing, or nothing to local.  It
> still doesn't show the WU icons.  I even let it sit overnight set to WU
> icons in hopes that when I woke up they would have magically appeared. 
> But no.
> 
> I must say that I've used the local icons for two-plus years and I'm
> used to them.  But the WU icons are somewhat nicer.  Oh well...

I hope to post my latest updates soon. I added some additional "local"
icons, and added the code to select the local "night" icons.  After
trying some of the WU icons, I think I still prefer the local ones, but
wanted to see the night icons.



tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] WaveInput Setup Troubles

2014-12-08 Thread mike_b16

I do believe you. I understand that your plugin is expecting the audio
at 16/44,1. I don't believe that I have enough knowledge to create a
parseMetadata routine which can just automatically detect the source
information. That's why I'm asking if I can just hardcode the values in
and avoid having to try to learn Perl or find someone with enough
expertise since I won't use any other formats than 24/192/2ch.

Michael



mike_b16's Profile: http://forums.slimdevices.com/member.php?userid=63606
View this thread: http://forums.slimdevices.com/showthread.php?t=102551

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread tcutting

Berns wrote: 
> Fellows,
> I came here to find a solution to my recent problem: my 4xBoom devices
> and 1x classic don't display weather forecast anymore.
> Anybody tried the new solutions on a boom yet? - In the past I struggled
> to get the display in a crunched format (example "RN" instead of
> "Rain")
> If yes, please share the findings.
> 
> (If not I'm volunteering to give it a shot and document my experience.)

Have you tried SuperDateTime? With the recent updates, I have weather
working again on both Boom and SB3(Classic).  The SDT code crunches a
few key words for the Boom (as you mention, RN for Rain, Pr for Precip).



tcutting's Profile: http://forums.slimdevices.com/member.php?userid=17402
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] WaveInput Setup Troubles

2014-12-08 Thread bpa

mike_b16 wrote: 
> I had a look at the WAVIN.pm file. I see that there is a subfunction
> "getMetadatafor" where the bitrate for CD quality (16 bit, 44.1 kHz, and
> 2 channels I'm assuming) is hardcoded. All I ever want to pass to LMS is
> audio at 24 bits, 192 kHz, and 2 channels. Is there a way I could modify
> that subroutine to hardcode this new bitrate into the WAVIN.pm file? I
> feel like that would make life easiest here as I have no experience with
> Perl.

I've told you twice that you need to write/add a routine called
parseMetadata - why don't you believe me ?
The  "getMetadatafor" routine is called by the player display and
provides the info for the cosmetics on the player display screen such as
pretty picture and the text in the media format field - it is not used
by LMS to tell the player the format of the audio stream.



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

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


Re: [SlimDevices: Plugins] announce: squeeze2upnp, a bridge between LMS and uPNP devices

2014-12-08 Thread philippe_44

PaulinPosset wrote: 
> 0.1.3.2a works fine for flac pausing and re-positioning though only when
> seek_after_pause is set to 1. It's not entirely consistent and there was
> a crash which you should see in the logfile, but it does now work.
> 
> Logfile and note attached.
> 
> I've not tested fully but streaming flacs and local files play correctly
> so all looks good!

Thanks - if you have the time, at some point, I've made one version w/o
the checksum and one without the header. If you can tell me which one
does work and does not work for repositioning, that would identify the
"root" cause.



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

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


Re: [SlimDevices: Plugins] WaveInput Setup Troubles

2014-12-08 Thread mike_b16

Ok, I've spent some time wrapping my head around this. Also, I tried to
test the plugin at 24/192 by changing the rate and format on all 3 lines
which contained arecord (in the custom-convert.conf file). Just for
curiosity more than anything. When I tried to use the plugin, I got
static out of my speakers. I swear I heard music under that static
though.

I had a look at the WAVIN.pm file. I see that there is a subfunction
"getMetadatafor" where the bitrate for CD quality (16 bit, 44.1 kHz, and
2 channels I'm assuming) is hardcoded. All I ever want to pass to LMS is
audio at 24 bits, 192 kHz, and 2 channels. Is there a way I could modify
that subroutine to hardcode this new bitrate into the WAVIN.pm file? I
feel like that would make life easiest here as I have no experience with
Perl.

Thanks,

Michael



mike_b16's Profile: http://forums.slimdevices.com/member.php?userid=63606
View this thread: http://forums.slimdevices.com/showthread.php?t=102551

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


Re: [SlimDevices: Plugins] Spotify Family?

2014-12-08 Thread djavet

Thx! I've installed both plugin, the green "official" one with an
account and the orange with the other.
Great advise.



djavet's Profile: http://forums.slimdevices.com/member.php?userid=38607
View this thread: http://forums.slimdevices.com/showthread.php?t=102671

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


Re: [SlimDevices: Plugins] Spotify Family?

2014-12-08 Thread erland

Mnyb wrote: 
> 
> Wonder if the ickStream crew have some future ideas for spotify ?
> 
We definitely have ideas, but I can't promise that we will be allowed to
release them yet.



Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). 
If you like to encourage future presence on this forum and/or third
party plugin/applet development, 'consider purchasing some plugins'
(http://license.isaksson.info))

*Interested in the future of music streaming ? 'ickStream -  A world of
music at your fingertips'
(http://forums.slimdevices.com/showthread.php?98467-Pre-Announcement-ickStream&p=743516)*.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=102671

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


Re: [SlimDevices: Plugins] Spotify Family?

2014-12-08 Thread Mnyb

djavet wrote: 
> @21d6jg: I dont have a second nas.
> 
> @40Mnyb: thx for your feedback! It's the most cleaver way how to do it
> now. It come with basic feature regarding the Triode solution, but can
> be enough to start with. I dont understant why they drop the line, it's
> still advertise: https://www.spotify.com/ch-fr/squeezebox/ this link
> come direct from Logitech mysqueezebox.com.  If Triode solution is
> outdated, what will be the alternative if it give one? Something in
> developement?
> 
> Hope that my devices dont will break till an alternative is found. Sonos
> is so expensive... and unfriendly. I'm not aware of other product which
> can do the same. Do you?

Nope I'll stick with squeezeboxes AND triodes plugin due the fact that
it actually will continue to work when/if mysqueezebox.com shuttters and
it supports my old Boom .

Spotify themselfes are not that good on support either none of thier
implmentations works the same way on any platform a mess . I would
gladly swap music service if something better where acessible from where
i live .
It is also a piont that all my friends have spotify , how else to share
playlists ?




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

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

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

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread j.e.f.f

bluetdi wrote: 
>  Thanks to tcutting and BoomX2
> A big "Thank You" to both of you for your efforts to make SDT working
> again.

I second this!  Will be trying out BoomX2's release tonight.  Thanks for
all your hard work.

- Jeff



j.e.f.f's Profile: http://forums.slimdevices.com/member.php?userid=4346
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] WaveInput Setup Troubles

2014-12-08 Thread bpa

mike_b16 wrote: 
> Now, will I definitely need to modify your plugin to achieve this, or is
> it just a possibility? Does WaveInput have some kind of downsampling
> built in if the input is above that 16/44.1 mark?

I'm worried that you don''t understand how LMS works.   LMS does all the
audio processing to match and audio stream to a player capabilities
(i.e. transcode and/or downsample as necessary).  The "rules"in the
convert.,conf and custom-convert.conf file will tell LMS how to do the
necessary conversion. 

So 
1. When LMS wants to start an audio stream, it needs to be told the
stream format - the current WaveInput plugin uses the default 44.1/16. 
If you to have other values you need to provide the audio format info by
adding a parseMetadata routine that will be called by LMS.   You may
also need additional processing of the URL depending on how you encode
in the URL the stream formats characteristics. If you plan on supporting
mulitple formats from the card then I suspect you need let the
custom-convert.conf file call a shell script which analyses the
parameters (derived from the URL) and then calls arecord with the
relevant device and parameters. I suggest encoding the data format in
the wavin URL (e.g. wavin:my192-24 or wavin:hw:2,0?speed=192&size=24). 
If you are capturing multiplex streams to be forwarded I suspect you
will need extra wrapping of the data.  

2.I'm not too sure about downsampling and so you'll need to look at
other threads but  users tell LMS that downsampling is supported for a
rule using the "D" capability in the convert.conf/custom-convert.conf
and rates are passed using %d/%D.  You'll need to use these values to
enable and setup downsampling with something like sox.



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

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread phred

bluetdi wrote: 
> @phred
> This might solve your issuue. The switch is set to Yes on my SDT
> settings page since beginning, so I was not aware of it. Give it a last
> try.
Thanks for finding yet another untried solution.  But yet again, it
didn't work.  

I have the Touch next to the Radio at this point, and as I change from
local icon to WU icon in SDT, I can see that it takes 2-5 seconds to
change on the Radio.  The Touch only changes when I power-cycle it.  But
the Touch change is only from local to nothing, or nothing to local.  It
still doesn't show the WU icons.  I even let it sit overnight set to WU
icons in hopes that when I woke up they would have magically appeared. 
But no.

I must say that I've used the local icons for two-plus years and I'm
used to them.  But the WU icons are somewhat nicer.  Oh well...



phred's Profile: http://forums.slimdevices.com/member.php?userid=52602
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Spotify Family?

2014-12-08 Thread djavet

@21d6jg: I dont have a second nas.

@40Mnyb: thx for your feedback! It's the most cleaver way how to do it
now. It come with basic feature regarding the Triode solution, but can
be enough to start with. I dont understant why they drop the line, it's
still advertise: https://www.spotify.com/ch-fr/squeezebox/ this link
come direct from Logitech mysqueezebox.com.  If Triode solution is
outdated, what will be the alternative if it give one? Something in
developement?

Hope that my devices dont will break till an alternative is found. Sonos
is so expensive... and unfriendly. I'm not aware of other product which
can do the same. Do you?



djavet's Profile: http://forums.slimdevices.com/member.php?userid=38607
View this thread: http://forums.slimdevices.com/showthread.php?t=102671

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread Berns

Fellows,
I came here to find a solution to my recent problem: my 4xBoom devices
and 1x classic don't display weather forecast anymore.
Anybody tried the new solutions on a boom yet? - In the past I struggled
to get the display in a crunched format (example "RN" instead of
"Rain")
If yes, please share the findings.

(If not I'm volunteering to give it a shot and document my experience.)



Berns's Profile: http://forums.slimdevices.com/member.php?userid=60795
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Spotify Family?

2014-12-08 Thread Mnyb

You can also use the oficial Spotify app on mysqueezebox.com for Touch
and Radio ,have one account login in there and switch to
mysqueezebox.com when needed for the second account .

As i understands it Triodes uses an old old app and api "libspotify"
which spotify seems to abandonded , not many new features there .

And Logitech as we all know do not implement new features oficially ,
they also abandonded the product , best hope there is that the oficial
app fail completely then they have to fix it for waranty reasons :) and
new features could get in during such a bugfix .

Wonder if the ickStream crew have some future ideas for spotify ?

Or maybe i'm to pessimistic, try to push on logitech trough some oficial
channel thier suport or the oficial forum (not here )




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

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

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

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread bluetdi

bearshare wrote: 
> The only thing In don't like is the language output, for example "most
> cloudy", I would like to see in my preferred language german "meist
> bewölkt".
> In the API description I found "To modify the language that the API
> returns add the setting /lang:XY/, where XY is a two letter language
> code." But I don't found a way to set the language in CCH. Any ideas?

Yes. If you insert 

...('wunder_apikey') . '/*lang:DL/*conditions/...

in line 3016 and 3031 of the plugin the output is in german language.



2x Odroid U3 + Max2play + LMS 7.9, 2x Touch, 2x Classic, 2x Boom, 2x
Radio & 3x iPeng 8

bluetdi's Profile: http://forums.slimdevices.com/member.php?userid=20633
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Spotify Family?

2014-12-08 Thread d6jg

If you have a second PC/NAS running LMS then it will appear as a second
Library on Touch / Radio.
If both LMS have Triode Spotify plugin but with different accounts then
you can easily change library when required.



QNAP TS419P 4TB LMS7.7.2
*Living Room* - SB3 -> Onkyo TS606 connected Digitally - > Celestion
Ditton F20s - and connected Analogue for Zone 2 -> Sony TA FE 320 ->
Sennheiser RS 130
*Office* - SB3 -> Sony TA FE320 -> 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
Various iThingys with iPeng & Tablets etc

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

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-08 Thread bluetdi

bearshare wrote: 
> I have found it - the switch for use external API in Squeezebox Server
> wasn't set. Now the PlugIn use the weather data from wunderground 

@phred
This might solve your issuue. The switch is set to Yes on my SDT
settings page since beginning, so I was not aware of it. Give it a last
try.

@tcutting
LongWeather would be fine and also the other modifications you mentioned

Really new and something very special were the implemention of Weather
maps from WU. Now that we use an APi-Key we can request the Radar +
Satellite maps and in the CCH make use of the logotype
stdweathermapicon. At the moment I use imageicon because I need to give
the URL, which is possible there. stdweathermapicon uses a location
filed, which could be used to transfer it in the API-request:


Code:


http://api.wunderground.com/api/YOUR_WU_API_KEY_HERE/radar/satellite/q/YOUR_COUNTRY/YOUR_TOWN.gif?rad.width=200&rad.height=200&rad.rainsnow=1&sat.width=200&sat.height=200&sat.key=sat_ir4&sat.gtt=107&sat.timelabel=1



The picture I request is the same size as my covericon so it can be
shown in sequence with it. If the request is embedded in the plugin it
is not extra and is combined with the other ones so saves requests. What
you think about it?



2x Odroid U3 + Max2play + LMS 7.9, 2x Touch, 2x Classic, 2x Boom, 2x
Radio & 3x iPeng 8

bluetdi's Profile: http://forums.slimdevices.com/member.php?userid=20633
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Spotify Family?

2014-12-08 Thread djavet

I read that sonos has multiple account management since one month for
Spotify in Beta. Hope this will come to the LMS too...
https://ask.sonos.com/sonos/topics/spotify-ex1am



djavet's Profile: http://forums.slimdevices.com/member.php?userid=38607
View this thread: http://forums.slimdevices.com/showthread.php?t=102671

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