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

2014-12-01 Thread tcutting

I spent some time this evening playing.  I addressed some of the bugs
noted, and added some fields which were missing.
The main change was to combine what were multiple wunderground queries
(2 currently) into a single one, which should lower the number of
counted "hits" by 1/2.
It should have fixed the unrounded/rounded wu temps.
Should have sunrise/sunset for current and today forecasts.

I am just uploading the updated Plugin.pm file - but I had to "zip" it
to get it to upload to the forum.


+---+
|Filename: Plugin.zip   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=16831|
+---+


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-01 Thread mbonsack

BoomX2 wrote: 
> As requested, I've spent a fair amount of my spare time investigating
> the changes to weather.com and learning about JSON and how to transfer
> it into perl data structures.  I've had more success than I expected. 
> (not a programmer)
> 
> I expect most of you will move on to use tcutting's WU API variant of
> SDT.  However, if there are any of you interested in a "resurrection" of
> a weather.com capable SDT I have attached a plugin.pm file with my
> initial results extracting and parsing weather.com JSON data into SDT.
> Still a lot to do.
> 
> What I have working seems to work as before.  The one big caveat is you
> need to change your weather.com city code to the complete city
> identifier.  
> i.e. - Olathe KS = 66062:4:US   
> London UK = UKXX0085:1:UK
> 
> Cheers... Don
> 
> PS - I expect weather.com may be more stable going forward since they
> moved to JSON data.  They can reformat the webpage all they want and
> still use the same JSON data files.

Thanks for another choice! I like this because I can change back to 5
minute updates for Sports scores.  However, upon startup I get:

[14-12-01 22:30:27.1533] Slim::bootstrap::tryModuleLoad (285) Warning:
Module [Plugins::SuperDateTime::Plugin] failed to load:
Can't locate JSON.pm in @INC (you may need to install the JSON module)

So, where do I get JSON.pm?

-mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread plympton

Getting this error on the JSON parsing version on my Linux VM:

[14-12-01 22:22:11.6046] Slim::Networking::IO::Select::__ANON__ (147)
Error: Select task failed calling
Slim::Networking::Async::HTTP::_http_read_body: Can't call method
"as_text" on an undefined value at
/var/lib/sbssvn/Cache/InstalledPlugins/Plugins/SuperDateTime/lib/Plugins/SuperDateTime/Plugin.pm
line 3241.
; fh=Slim::Networking::Async::Socket::HTTP=GLOB(0xdf8cec8)

A quick search yields a null check should be done first:

$a ? $a->as_text : '';

Which basically says "If $a exists, do the as_text of it, otherwise use
blank"



plympton's Profile: http://forums.slimdevices.com/member.php?userid=12955
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-01 Thread rayman1701

Just wanted to give a thanks to all the work that people who can
comprehend programming have done.  I got the WeatherUnderground version
working and so far so good on my Touch, heck there have been a few bugs
that I've been dealing with since the last time it broke that never
really got fixed, that are now working correctly, so I'm really happy
with that. Since I don't really use the scores part anymore, I'm just
glad to have the temp and forecast handy. It is amazing how used to
seeing it there you get and what a shock it is when it stops working!
Sure I could look it up on the iPad, but to just glance over and see the
temp, damn that's handy. So once again thanks to everyone who worked to
get SDT back up and running.



rayman1701's Profile: http://forums.slimdevices.com/member.php?userid=41326
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-01 Thread plympton

// PS - I expect weather.com may be more stable going forward since they
moved to JSON data. They can reformat the webpage all they want and
still use the same JSON data files. 

I read this and agree.  I was just getting tcutting's version going on
my linux VM, but I'll toss yours on instead and see how it goes.  No
problem in having 2 viable solutions! :-)



plympton's Profile: http://forums.slimdevices.com/member.php?userid=12955
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-01 Thread BoomX2

PeterGV wrote: 
> 
> 
> BoomX2 you've bailed us out before.  Any way we can do something to
> resurrect this?  Or do we just have to accept the sad fact that it's
> dead?
> 
> Peter

As requested, I've spent a fair amount of my spare time investigating
the changes to weather.com and learning about JSON and how to transfer
it into perl data structures.  I've had more success than I expected. 
(not a programmer)

I expect most of you will move on to use tcutting's WU API variant of
SDT.  However, if there are any of you interested in a "resurrection" of
a weather.com capable SDT I have attached a plugin.pm file with my
initial results extracting and parsing weather.com JSON data into SDT.
Still a lot to do.

What I have working seems to work as before.  The one big caveat is you
need to change your weather.com city code to the complete city
identifier.  
i.e. - Olathe KS = 66062:4:US   
London UK = UKXX0085:1:UK

Cheers... Don

PS - I expect weather.com may be more stable going forward since they
moved to JSON data.  They can reformat the webpage all they want and
still use the same JSON data files.


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


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-01 Thread mbonsack

phred wrote: 
> Click on Settings and the first item in the list is "DATA REFRESH
> INTERVAL Number of minutes before external data is refreshed."  (The
> third item is where your API Key goes.)  I have the refresh interval set
> for 15 minutes.  Take a look at PeterGV's post here, where he comments
> on the number of calls: 
> http://forums.slimdevices.com/showthread.php?14327-Announce-SuperDateTime-Current-Date-Temperature-and-or-Baseball-Screensaver&p=798521&viewfull=1#post798521

This is great for limiting queries to the WU API, but now sports scores
are way out of date.  Too bad there can't be more granularity for data
refresh (e.g. weather and everything else) now that we're saddled with
API restrictions...

-mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread mbonsack

tcutting wrote: 
> So you checked the "partlycloudy.png" icon and it is indeed a "partly
> cloudy" icon?
> It may be the way you have your player views configured (rather than
> anything I changed). There are seperate 'icon' values for current
> conditions and today's forecast, so your player settings may not be
> using the same one.

Yes, the partlycloudy.png file indeed represents a partly cloudy icon. 
I will check the player config; it's been so long but I don't recall
anything icon-specific and there's certainly the possibility I've had it
wrong all along.  Thanks again for the hard work!

-mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread tcutting

mbonsack wrote: 
> Ok, here's what I've seemed to deduce regarding the icons on the various
> devices.  The SB2 seems to be using the *forecast* sky conditions, and
> the Radio seems to be using *observed* conditions.  This is borne out by
> visiting the actual website for the WU station I'm using, which shows
> "Clear" for the current conditions (it's not) and "Overcast" for the
> "today" part of the forecast.  Is that what's in the code?

So you checked the "partlycloudy.png" icon and it is indeed a "partly
cloudy" icon?
It may be the way you have your player views configured (rather than
anything I changed). There are seperate 'icon' values for current
conditions and today's forecast, so your player settings may not be
using the same one.



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-01 Thread tcutting

atlslim wrote: 
> Anyone with an SB3 or Boom on Linux/Ubuntu seeing sports scores/ticker? 
> I'm not but I don't see any output in the log indicating a problem.  The
> Monday Night NFL game should be there.
> 
> Thanks!

I don't use the sport scores... but I don't believe I touched anything
related to those.



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-01 Thread atlslim

Anyone with an SB3 or Boom on Linux/Ubuntu seeing sports scores/ticker? 
I'm not but I don't see any output in the log indicating a problem.  The
Monday Night NFL game should be there.

Thanks!



atlslim's Profile: http://forums.slimdevices.com/member.php?userid=3054
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-01 Thread bpa

mike_b16 wrote: 
>  Any ideas? Also, thanks for all of the help so far bpa. It's gotten me
> this far?

You're doing a lot of work generating a PCM stream that is not
44.1kHz/16 but I have a feeling that you need tell LMS the stream format
before you start stream audio data so that LMS know whether the player
can play it the stream native or whether some processing is needed (e.g.
if play is Sb3 and stream is 192kHz  - LMS needs to set up resampling).
So I think the plugin needs modification for non 44.1khz / 16 bit
streams and offhand I do not know what needs to be changed.



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-01 Thread mbonsack

mbonsack wrote: 
> > One should be named partly cloudy.png
> 
> Indeed it's there, and can confirm that the Radio is using the Sunny
> icon.  I don't know why the SB2 is using the correct (partly cloudy)
> one, but the two devices are definitely displaying different icons. 
> Would the Radio be displaying the "forecasted" sky conditions rather
> than current?  Or vice-versa with the SB2?
> 
> The two smaller icons on the Radio, (which both now indicate rain) seem
> to be correct for future forecast periods.
> 
> 

Ok, here's what I've seemed to deduce regarding the icons on the various
devices.  The SB2 seems to be using the *forecast* sky conditions, and
the Radio seems to be using *observed* conditions.  This is borne out by
visiting the actual website for the WU station I'm using, which shows
"Clear" for the current conditions (it's not) and "Overcast" for the
"today" part of the forecast.  Is that what's in the code?



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread treble

tcutting wrote: 
> There's still room to "improve" things.  Were the %e and %r strings from
> the wunderground temperatures? I was getting temps "unrounded" in my
> screensaver, which I believe were previously rounded, so I went ahead
> and rounded the returned temps.  In my update, I set the same values to
> both the standard and wunderground fields (since all the data is coming
> from one place). I don't think the weather today data had digits past
> the decimal point. This may be an easy change.
> 
> IF I get time to make another pass, I'll try to pick up the comments
> made in this thread.

The rounded temperature from wunderground was %r, unrounded (and I think
default) %e...  At least %r was added later.

wunderground.com:
Temperature (°F) = %e (%r - rounded)

Thank you so much for bringing SDT back to life!



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] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-01 Thread phred

tcutting wrote: 
> Were the %e and %r strings from the wunderground temperatures?
>From the 'Player' tab on the GUI:
wunderground.com:
Temperature (°F) = %e (%r = rounded)
Temperature (°C) = %E (%R = rounded)



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-01 Thread tcutting

mbonsack wrote: 
> > One should be named partly cloudy.png
> 
> Indeed it's there, and can confirm that the Radio is using the Sunny
> icon.  I don't know why the SB2 is using the correct (partly cloudy)
> one, but the two devices are definitely displaying different icons. 
> Would the Radio be displaying the "forecasted" sky conditions rather
> than current?  Or vice-versa with the SB2?
> 
> The two smaller icons on the Radio, (which both now indicate rain) seem
> to be correct for future forecast periods.
> 
> -mark
> 
> -mark

The icons themselves are completely different, but they both use the
same 'icon' field to reference.  For the Radio/Touch/Controller icons,
there are .png icons in a plugin sub-directory, and they are named to
correspond to the 'icon' text (clear, cloudy, partlycloudy, etc.). I
probably just named the wrong icon to "partlycloudy.png". The SB2 (and
classic, boom, transporter) have icons which are text-based within the
plugin code itself, but they are selected using the same 'icon' data
field.



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-01 Thread mike_b16

I have been somewhat successful!

After going with the solution in post 47 of this thread (the snd-aloop
method) and overclocking my Pi's, I was able to play the stream with no
problems to my clients. I essentially used arecord to grab my line in
(with -D hw:0) and then pipe it to the virtual soundcard with the syntax
"aplay -D hw:2,0"

So I'm about halfway to my solution with this. Now, I just need to bring
the audio recording/streaming up to 24 bits and 192 kHz sampling.
However, if I try to set my format to S24_LE in the command line
"arecord", it complains that it is not an acceptable format for aplay.
When I change it to S32_LE, it apparently records fine. Then, I record
from the looped soundcard and play it back on hw:0 and it plays fine out
of my speakers (so I know the audio is recording/playing correctly).
However, when I try to use the plugin in LMS, no sound comes out, and it
goes from the pause icon back to the play icon after a few seconds. When
I change the sample format back to S16_LE, it works fine. Same thing
happens when I try to edit the format in the custom-convert.conf file.
If I set it at S24_LE or S32_LE, the plugin responds the same way as I
described before. I can modify the sample rate though with no issue (I
have set it as high as 192 kHz with no problems). Does anyone have any
ideas?

To be explicit, I'll write out the commands I use/procedure I use
below:

1. I type the statement "arecord -d0 -c2 -r44100 -fS16_LE -D hw:0 |
aplay -D hw:2,0" into the terminal
2. I then use the favorite I named "Stream" with the URL "wavin:hw:2,1"
3. I get playback on my devices
4. If I change the "-f" field to S24_LE, I get an "aplay:
set_params:1081: Sample format non available" error. However, I can
definitely record and playback on my hw:0 card with S24_LE
5. If I change that "-f" field to S32_LE, it doesn't complain anymore
6. If I then use arecord -d0 -c2 -r44100 -fS32_LE -D hw:2,1 | aplay -D
hw:0", I hear the music I'm recording play back out of my speakers
fine.
7. When I use the WaveInput plugin, the button goes back to play a
second or two after I push it
8. Changing settings in the custom-convert.conf file provides the same
results

I tried to check the log, but I see nothing unusual come up when I use
the plugin. Just doesn't work.

Any ideas? Also, thanks for all of the help so far bpa. It's gotten me
this far?

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] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-01 Thread tcutting

treble wrote: 
> Yup, that worked indeed (I used dos2unix strings.txt on my Linux
> thingy).
> 
> The only thing that doesn't work for me is the %r option (rounded).  It
> seems that $e is automatically rounded now.  There is no 'unrounded'
> option.  So when temperature is for example 68.4F, with %e it will show
> 68, while it used to show 68.4.  The %r option doesn't show anything,
> while it used to show 68. Not a biggy, glad it all does seem to work
> again now.  
> 
> API is the way to go, so you are not dependent on website layout
> changes.

There's still room to "improve" things.  Were the %e and %r strings from
the wunderground temperatures? I was getting temps "unrounded" in my
screensaver, which I believe were previously rounded, so I went ahead
and rounded the returned temps.  In my update, I set the same values to
both the standard and wunderground fields (since all the data is coming
from one place). I don't think the weather today data had digits past
the decimal point. This may be an easy change.

IF I get time to make another pass, I'll try to pick up the comments
made in this thread.



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-01 Thread phred

jallison wrote: 
> Thanks. I wasn't loading the updated plugin. My SDT lives in C:\Program
> Files (x86)\Squeezebox\server\Plugins, which is quite different from the
> path shown earlier. Don't know why it's this way, but that's where I
> need to do updates and I didn't do it properly.
> 
> Working correctly now for weather. 
> 
> - Jeff

Glad to hear you've got it running.  You can always find your plugins
directory by looking at the Information tab in the LMS GUI.  Down near
the bottom of the page is "Plugin Folders"



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-01 Thread jallison

treble wrote: 
> See attached screen shot

Thanks. I wasn't loading the updated plugin. My SDT lives in C:\Program
Files (x86)\Squeezebox\server\Plugins, which is quite different from the
path shown earlier. Don't know why it's this way, but that's where I
need to do updates and I didn't do it properly.

Working correctly now for weather. 

- Jeff



jallison's Profile: http://forums.slimdevices.com/member.php?userid=1465
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] Max2Play Webinterface for Mediaclients (Audioplayer, Squeezeserver, Airplay, XBMC)

2014-12-01 Thread doctor_big

Got it, Flysurfer.  I shall stop wrestling.   

Now, about USB dacs.  What option should I use for a USB DAC -- "Direct
HW no conversions (USB)"?  I noted on the Picoreplayer website that the
Audioquest Dragonfly DAC should use this string
"front:CARD=DragonFly,DEV=0" which I assume goes into the Command Line
Options.  When I do this I can't restart Squeezelite - debug info not
particularly useful as follows:

 SQUEEZELITE VERSION 
Squeezelite v1.6.5, Copyright 2012-2014 Adrian Smith. See -t for license
terms


 AUDIOPLAYER CONFIG 
SQUEEZELITE_PARAMETER=-o hw:CARD=Device,DEV=0
front:CARD=DragonFly,DEV=0
SHAIRPORT_PARAMETER=-d plug:dmixer
USE_USB_DAC=0

Is the DEV=0 looking for the dac in a particular USB socket?

Thanks,
Jason



doctor_big's Profile: http://forums.slimdevices.com/member.php?userid=15196
View this thread: http://forums.slimdevices.com/showthread.php?t=101856

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


Re: [SlimDevices: Plugins] iPeng support thread

2014-12-01 Thread Morbeas

Thanks prabbit, I e-mailed Erland about this as well. I just fail to
understand pippin's insistence on not implementing a 10 star rating
system. It really boggles the mind.



Morbeas's Profile: http://forums.slimdevices.com/member.php?userid=53547
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-01 Thread treble

jallison wrote: 
> First off, many thanks to tcutting for providing these fixes! I'm
> confused as to where I am supposed to put the wunderground API key,
> though. There's a reference up-thread to the "city" field, but I don't
> see that anywhere. What am I missing?
> 
> Thanks.
> 
> - Jeff

See attached screen shot


+---+
|Filename: Screen Shot 2014-12-01 at 2.08.43 PM.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=16828|
+---+


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] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-01 Thread treble

jallison wrote: 
> First off, many thanks to tcutting for providing these fixes! I'm
> confused as to where I am supposed to put the wunderground API key,
> though. There's a reference up-thread to the "city" field, but I don't
> see that anywhere. What am I missing?
> 
> Thanks.
> 
> - Jeff

See attached screen shot...


+---+
|Filename: Screen Shot 2014-12-01 at 2.05.40 PM.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=16827|
+---+


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] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-01 Thread jallison

First off, many thanks to tcutting for providing these fixes! I'm
confused as to where I am supposed to put the wunderground API key,
though. There's a reference up-thread to the "city" field, but I don't
see that anywhere. What am I missing?

Thanks.

- Jeff



jallison's Profile: http://forums.slimdevices.com/member.php?userid=1465
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-01 Thread treble

twynne wrote: 
> Good find... sure enough that fixed it.  I used TextWrangler on Mac to
> get rid of these and that seems to have worked.

Yup, that worked indeed (I used dos2unix strings.txt on my Linux
thingy).

The only thing that doesn't work for me is the %r option (rounded).  It
seems that $e is automatically rounded now.  There is no 'unrounded'
option.  So when temperature is for example 68.4F, with %e it will show
68, while it used to show 68.4.  The %r option doesn't show anything,
while it used to show 68. Not a biggy, glad it all does seem to work
again now.  

API is the way to go, so you are not dependent on website layout
changes.



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] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-01 Thread mbonsack

tcutting wrote: 
> There are indeed different icons for touch/radio/controller vs older
> squeezeboxes. The radio icons are stored in a directory in the plugin
> files. I changed how these work... One should be named partlycloudy.png
> - maybe I have the sunny icon there instead?
> 
> Sent from my HTC6525LVW using Tapatalk

> One should be named partly cloudy.png

Are these per device?  I take it I should see a "partly cloudy.png" for
Radio/Touch and a different one for SB2/3?

-mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread tcutting

mbonsack wrote: 
> OK; solved the problem with the strings file; it was created on Windows
> and has Windows-style newlines.  Simply go into vi and remove all the ^M
> symbols.  Restart, and things look much better, but still get:
> 
> [14-12-01 12:39:21.7070] Slim::Networking::IO::Select::__ANON__ (147)
> Error: Select task failed calling
> Slim::Networking::Async::HTTP::_http_read_body: Can't use an undefined
> value as an ARRAY reference at
> /home/mbonsack/Utilities/squeezebox/LMS-7.8/Cache/InstalledPlugins/Plugins/SuperDateTime/lib/Plugins/SuperDateTime/Plugin.pm
> line 3229.
> ; fh=Slim::Networking::Async::Socket::HTTP=GLOB(0x9838808)
> 
> at startup, but thankfully nothing else.
> 
> So -- this is huge to say the least.  Everything's back, including
> forecasts!  But some questions:
> 
> 1.  The forecast and current conditions are perfect on the SB2.  Partly
> cloudy (here in SoCal), forecast good, current temp/dewpoint good.  But
> on the Radio -- shows sunny, when it's not (and the SB2 display/icon
> confirms that).  Why would the current condition icon be different for
> the Radio?  Maybe there isn't one for partly cloudy on the Radio?
> 
> 2.  How often does the plugin query the API?  Hopefully far under the
> 500/day limit.
> 
> Thanks again for all of the hard work!
> 
> -mark
> 
> HTH, -mark

There are indeed different icons for touch/radio/controller vs older
squeezeboxes. The radio icons are stored in a directory in the plugin
files. I changed how these work... One should be named partly cloudy.png
- maybe I have the sunny icon there instead?

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-01 Thread twynne

mbonsack wrote: 
> OK; solved the problem with the strings file; it was created on Windows
> and has Windows-style newlines.  Simply go into vi and remove all the ^M
> symbols.  Restart, and things look much better, 

Good find... sure enough that fixed it.  I used TextWrangler on Mac to
get rid of these and that seems to have worked.



1 SB Touch, 2 x Booms, 1 x SB3, 1 x SB Radio

twynne's Profile: http://forums.slimdevices.com/member.php?userid=1326
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-01 Thread phred

mbonsack wrote: 
> But on the Radio -- shows sunny, when it's not (and the SB2 display/icon
> confirms that).  Why would the current condition icon be different for
> the Radio?  Maybe there isn't one for partly cloudy on the Radio?
FWIW, running LMS on Windows with a Radio and a Touch here in New
England.  Earlier today both showed the 'sunny' icon.  Now they're both
showing the 'overcast' icon.  Both were/are correct at the time I
looked.  Although I never noticed a 'party cloudy' icon when in fact it
was.  Which is not to say the device wasn't showing it.  I just wasn't
looking.  I will try to pay attention to it as tom'w is supposed to be
party cloudy all day.

> 
> 2.  How often does the plugin query the API?  Hopefully far under the
> 500/day limit.  
Again, on Windows, the LMS GUI under Plugins look for SuperDateTime. 
Click on Settings and the first item in the list is "DATA REFRESH
INTERVAL Number of minutes before external data is refreshed."  (The
third item is where your API Key goes.)  I have the refresh interval set
for 15 minutes.  Take a look at PeterGV's post here, where he comments
on the number of calls: 
http://forums.slimdevices.com/showthread.php?14327-Announce-SuperDateTime-Current-Date-Temperature-and-or-Baseball-Screensaver&p=798521&viewfull=1#post798521



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: ShairTunes Plugin

2014-12-01 Thread emilio-p

Hi all,

I followed Slackerini's guide and ran in to the some problem as a lot of
other people.
> Plugins::ShairTunes::Plugin::handleSocketRead: Expected port number from
> decoder; got at
> /Users/emilo/Library/Caches/Squeezebox/InstalledPlugins/Plugins/ShairTunes/Plugin.pm
> line 342.
> ; fh=IO::Socket::INET6=GLOB(0x7fd9e68915b8)

So I upgraded perl, upgraded LMS, googled a lot, cursed a lot, drank
even more coffee, etc. To no avail.
Then I decided to try some debugging myself.
So I tried:

Code:

/Library/PreferencePanes/Squeezebox.prefPane/Contents/server 


and:
> ./slimserver.pl
And then it worked.
A lot of these, tho:

> SENDTO failed: Invalid argument
> 
> RR[W:57433 R:57354 first=57386 last=57386
> 
> SENDTO failed: Invalid argument
> 
> RR[W:57433 R:57354 first=57386 last=57386
> 
> SENDTO failed: Invalid argument

But what the heck: there is sound.
When trying:
> ./slimserver.pl --daemon
There is no sound, and I'm back at the original problem. So I guess it
has something to with running slimserver as a daemon (both in 7.8 and
7.9), but I don't what to try next.
So. Anyone with some smart pointers on how to proceed from here?
Thx!



emilio-p's Profile: http://forums.slimdevices.com/member.php?userid=63662
View this thread: http://forums.slimdevices.com/showthread.php?t=100379

___
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-01 Thread mbonsack

treble wrote: 
> Another 'me too', on vortexbox

OK; solved the problem with the strings file; it was created on Windows
and has Windows-style newlines.  Simply go into vi and remove all the ^M
symbols.  Restart, and things look much better, but still get:

[14-12-01 12:39:21.7070] Slim::Networking::IO::Select::__ANON__ (147)
Error: Select task failed calling
Slim::Networking::Async::HTTP::_http_read_body: Can't use an undefined
value as an ARRAY reference at
/home/mbonsack/Utilities/squeezebox/LMS-7.8/Cache/InstalledPlugins/Plugins/SuperDateTime/lib/Plugins/SuperDateTime/Plugin.pm
line 3229.
; fh=Slim::Networking::Async::Socket::HTTP=GLOB(0x9838808)

at startup, but thankfully nothing else.

HTH, -mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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] Qobuz.com streaming plugin

2014-12-01 Thread axelwin

Mnyb wrote: 
> Yes it's hard to know if it is the same master , some of the aviable HD
> files from other vendors seems to be in some cases a better master than
> the usual CD version or at least a different version , if you pay it got
> to be different rigth ;). Archimago who frequent these forums did a
> public blind test .
> 
> http://archimago.blogspot.it/2014/06/24-bit-vs-16-bit-audio-test-part-ii.html
> In which many from here participated .
> 
> What you can do as a blir test ( it really has to be blind otherwise any
> conclusion drowns in our usual very human biases ) .
> Is to make 16/44.1 versions of some of your own 24/96 files then you
> know it's the same master .
> I tried that on several ocasion and can not hear a difference , you may
> notice my investment in DVDA ready equipment :/
> 
> Another thing to think of if you want to test this is to use modern very
> well made digital recordings not an old noisy tape from the 1970's
> normal reedbook cd is more than capable of encoding that .

Interesting article !
And as you say, I am pretty sure that main differences are coming from
masters, which  are different between cd and hd to justify overcost, and
make people ready to invest in new hd ready system / audio file and so
on... As if they could have provide to listeners 99% of those
improvments with current "SD system" ! But everything is good to make
business (as in Image /TV Industry ( ie. 3D or UHD "revolution" ...)





axelwin's Profile: http://forums.slimdevices.com/member.php?userid=60811
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

___
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-01 Thread treble

Another 'me too', on vortexbox

mbonsack wrote: 
> Bingo; exactly the same symptoms.  For some reason, it's not reading the
> strings.txt file for the proper locale (EN in my case).  I'm on Ubuntu
> 14.04 LTS running LMS 7.8 from a local directory.
> 
> -mark



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] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-01 Thread mbonsack

twynne wrote: 
> No, both the plugin settings and the player settings are missing all
> labels (just unlabelled fields showing).  See screenshot.  Guessing one
> of the other users above is referring to the same issue, so I'm not the
> only one.  This is on a Mac OS server if that makes any difference.  
> 
> For reference, I've completely removed any old version of the plugin
> from my server.  Now, under server Settings > Plugins, rather than
> SuperDateTime I see PLUGIN_SCREENSAVER_SUPERDATETIME (v5.10.1a) as the
> plugin description.  When accessing Player Settings, the dropdown list
> beside player name shows just blank space instead of SuperDateTime. 
> Once selected, it shows the fields with no labels, and no key to the
> switches as it used to.
> 
> 16824

Bingo; exactly the same symptoms.  For some reason, it's not reading the
strings.txt file for the proper locale (EN in my case).  I'm on Ubuntu
14.04 LTS running LMS 7.8 from a local directory.

-mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread twynne

tcutting wrote: 
> I think what you're looking for is on the player settings page (which I
> didn't touch)
> 
> Sent from my HTC6525LVW using Tapatalk

No, both the plugin settings and the player settings are missing all
labels (just unlabelled fields showing).  See screenshot.  Guessing one
of the other users above is referring to the same issue, so I'm not the
only one.  This is on a Mac OS server if that makes any difference.  

For reference, I've completely removed any old version of the plugin
from my server.  Now, under server Settings > Plugins, rather than
SuperDateTime I see PLUGIN_SCREENSAVER_SUPERDATETIME (v5.10.1a) as the
plugin description.  When accessing Player Settings, the dropdown list
beside player name shows just blank space instead of SuperDateTime. 
Once selected, it shows the fields with no labels, and no key to the
switches as it used to.

16824


+---+
|Filename: SB3 SDT Player Settings.jpg  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=16824|
+---+


1 SB Touch, 2 x Booms, 1 x SB3, 1 x SB Radio

twynne's Profile: http://forums.slimdevices.com/member.php?userid=1326
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-01 Thread mbonsack

mbonsack wrote: 
> I take it for Linux it would be pathed similarly from Squeezebox on. 
> Thanks!
> 
> -mark

I get a slew of errors at startup, and no data anywhere:

mbonsack@mbonsack-ubuntu:~/Utilities/squeezebox/LMS-7.8$ ./slimserver.pl

[14-12-01 11:34:42.5781] main::init (369) Starting Logitech Media Server
(v7.8.0, 1387542508, Sun Jan  5 19:18:21 PST 2014) perl 5.018002
[14-12-01 11:34:42.7005] Slim::Utils::Strings::parseStrings (353) Error:
Parsing line 4: PLUGIN_SCREENSAVER_SUPERDATETIME
[14-12-01 11:34:42.7008] Slim::Utils::Strings::parseStrings (353) Error:
Parsing line 11: SETUP_GROUP_SUPERDATETIME
[14-12-01 11:34:42.7010] Slim::Utils::Strings::parseStrings (353) Error:
Parsing line 16: PLUGIN_SUPERDATETIME_PLAYER_SETTINGS

Furthermore, when setting the plugin via the GUI there's no description
of the fields to be filled in, and the pulldown label (for per-device
settings) is blank.  Must have something very wrong.

-mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread mbonsack

phred wrote: 
> In Windows XP navigate to C:\Documents and Settings\All
> Users\Application
> Data\Squeezebox\Cache\InstalledPlugins\Plugins\SuperDateTime\ and unzip
> everything to that subdirectory, overwriting what's there.  I zipped up
> everything that was there before overwriting it.
> 
> Windows 7 would be C:\Users\All
> Users\Squeezebox\Cache\InstalledPlugins\Plugins\SuperDateTime\

I take it for Linux it would be pathed similarly from Squeezebox on. 
Thanks!

-mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread phred

mbonsack wrote: 
> Now we're not just replacing plugin.pm as with the 5.9.14 trick.  So,
> could someone remind me of where all of this needs to live in the
> filesystem and/or how to otherwise install this package?
> Thanks!  -mark
I'm using Windows XP for LMS. Navigate to C:\Documents and Settings\All
Users\Application
Data\Squeezebox\Cache\InstalledPlugins\Plugins\SuperDateTime\ and unzip
everything to that subdirectory, overwriting what's there.  I zipped up
everything that was there before overwriting it.

Windows 7 would be C:\Users\All
Users\Squeezebox\Cache\InstalledPlugins\Plugins\SuperDateTime\



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-01 Thread mbonsack

tcutting wrote: 
> Updated to v5.10.1a - added mappings to the "legacy squeezebox" icons.

Now we're not just replacing plugin.pm as with the 5.9.14 trick.  So,
could someone remind me of where all of this needs to live in the
filesystem and/or how to otherwise install this package?

Thanks!  -mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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] Help with Multi-Library Plugin

2014-12-01 Thread erland

arthurb wrote: 
> 
> I have been staggering, or perhaps blundering on, and have, probably,
> set up Custom Scan to return ALBUMARTIST, COMPOSER and CONDUCTOR (I am
> using FLAC files only).  Then I have set up some menus with Custom
> Browse so that I can view the following:  Composer --> Genre --> Album
> --> Album Artist.  All of my classical files are tagged with the Album
> as the Work (e.g. Piano Concerto No 5), and Album Artist as the basic
> description of all the main protagonists (e.g. Barenboim - Klemperer -
> New Philharmonia Orch.).
> 
> I did this by setting up a menu that I called 'Classical by Composer'
> which should have four levels.  That is: on the 'menu parameters' panel
> I have defined 'Level 1 Tag Name' as COMPOSER, 'Level 2 Tag Name' as
> GENRE, 'Level 3 Tag Name' as ALBUM, and lastly 'Level 4 Tag Name' as
> ALBUMARTIST.  This does roughly work, allowing me to step down through
> the layers as defined in paragraph 2, above, and this is a great
> improvement on my earlier efforts (I have removed some scans amongst
> other things).
> 
> However, I have a problem: I have duplicate entries in the 1st and 4th
> layers.  That is to say: each composers name is repeated and also works
> to direct me to a lower level, and the performers (i.e. Album Artists)
> names are also repeated although each does give the correct track list
> (i.e. song titles); Genre and Album seem to work OK except for one other
> issue which can wait for now. Does anyone know what is happening here?
> 
The reason you get duplicate entries for COMPOSER is probably because
it's scanned both by Custom Tag and Mixed Tag scanning module. If you
are happy with the way LMS standard scanning scans for composers, keep
it in Mixed Tag scanning module settings in the "Composer tags" field.
If you want the Custom Scan scanning, keep it in the "Tags to Scan"
field on Custom Tag scanning module settings. You need to perform a
rescan with both Custom Tag and Mixed Tag scanning module for the
changes to take effect.

arthurb wrote: 
> 
> However the other issue remains: at level 3, using the Album Tag, I get
> an entry for each of the lower level entries. That is to say: I may have
> two versions of Brahms Violin Concerto, by say Bloggs and the XPO and
> Smith and the YPO, but that causes two entries in level 3 saying 'Violin
> Concerto'.  I know they are identical because they are put into the same
> folder when I use dBpoweramp's Arrange Audio function, and in any case I
> have just checked. Is there a bug here or have I just missed another
> option I should add/delete/alter?
> 
Hopefully this is also caused by the same problem as above. 
Generally you should either mention a tag in the Custom Tag scanning
module or the Mixed Tag scanning module but not in both.

arthurb wrote: 
> 
> It would appear that these plugins are very unstable, and from the lack
> of responses I assume hardly anyone uses them, which would seem
> understandable.  What is infuriating is that there is basically very
> good stuff here that I think many, many people would find useful if only
> it was stable and easy to set up. 
> 
They are technical and was intended as a temporary solution until
Logitech implemented the real thing, unfortunately Logitech never
prioritized it and even though I try to do as much as possible the time
is limited when you also have to handle day job, family, ickStream and
other things. I know they are technical and confusing and hard to setup,
the advantage is that you can do pretty much whatever you want when you
understand them but the disadvantage is that it can be a bit challenging
in the beginning until you start to understand how it works.



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

___
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-01 Thread phred

tcutting wrote: 
> I believe I can get sunrise/sunset for the CURRENT day (that's available
> from wunderground), but not as straightforward for future days.
Speaking strictly for myself, current day is all I'm requesting.  And
again, thanks.



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] Help with Multi-Library Plugin

2014-12-01 Thread erland

arthurb wrote: 
> 
> starting with the folder specifications: what do they mean?  
> 
It will only look at folders within the Music folder which you have
configured in LMS Settings/Basic tab, the Multi Library library will be
a subset of all music within the folder you have configured in LMS
Settings/Basic tab.

The "Included Directory x" parameters will help you specify that any
files within any of these directories should be included in the
library.
The "Excluded Directory x" parameters will help you specify that the
files in these directories should not be included.

So as an example, if you specify:
Included Directory 1: /mnt/music/folder1
Included Directory 2: /mnt/music/folder2
Excluded Directory 1: /mnt/music/folder1/subfolder1

It means that all music in /mnt/music/folder2 will be included and also
all music in /mnt/music/folder1 besides the file inside
/mnt/music/folder1/subfolder1

Another example is if you only define:
Excluded Directory 1: /mnt/music/folder1
This means that all music in the folder specified in LMS Settings/Basic
will be included except the files inside the /mnt/music/folder1
directory.

arthurb wrote: 
> 
> Further to that, what is the purpose of the Only Include and Exclude
> tracks by Artists boxes: it seems that one cannot do anything with them,
> certainly not clear them, and there is no 'ignore this feature' tick
> box. Am I alone in finding this definition page extremely confusing?  
> 
If you don't select any artists it means that the library won't be
affected.
If you select some artists in the "Only include tracks for selected
artists" list, it means that ONLY music from artists which have been
selected will be included.
If you select some artists in the "Exclude tracks for selected artists"
list, it means that all artists except the ones which have been selected
will be included.

You can unselect an artist by holding Ctrl when clicking it.

Genres checkboxes works the same as the artists list.

Generally, if you leave all parameters at the default you will get a
library with your whole music library but if you check/select/specify
parameters the library will be more restricted in which files it
includes.



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

___
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-01 Thread mbonsack

bluetdi wrote: 
> As I wrote in Post 2776: in Custom Clock Helper you can use appleticon
> and applettext instead of Stdicon when the Weather-applet is installed
> on the Touch or Radio. If you ever used CCH before, you know how to do
> it, it's as easy as using the other parameters. Just try it. 
> 
> Hopefully tcutting and PeterGV have sucess with their work and give us
> an updated plugin. Thanks in advance, the community will appreciate your
> work as not many are able to do it. Me not as well.

I have not tried tcutting's new plugin, but even with Greg's 5.9.14
version WU displayed just fine on the SB 2.  However, on the Radio I get
nothing.  Various folks have suggested tweaking the Custom Clock plugin
to get this data to display.  So, what exactly do I need to tweak in SDT
vs. CustomClockHelper, and what if anything do I need to tweak in CCH
(for the Radio) if I use tcutting's plugin?

Thanks! -mark



mbonsack's Profile: http://forums.slimdevices.com/member.php?userid=1398
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-01 Thread tcutting

phred wrote: 
> First of all, thanks very (very!!) much to *tcutting* for getting this
> going again.  Your work is truly appreciated.  
> 
> Is the intent to eventually get sunrise and sunset data going again?

I believe I can get sunrise/sunset for the CURRENT day (that's available
from wunderground), but not as straightforward for future days.



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-01 Thread phred

tcutting wrote: 
> Sunrise/sunset are not yet implemented.
First of all, thanks very (very!!) much to *tcutting* for getting this
going again.  Your work is truly appreciated.  

Is the intent to eventually get sunrise and sunset data going again?



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-01 Thread tcutting

PeterGV wrote: 
> Brilliant, *tcutting*.  Absolutely wonderful job.  Bravo for your
> service to the community and thank you!
> 
> It's cool that you wrote this with no additional libraries, either. 
> Makes it super-easy to install/use.
> 
> Please correct me if I'm wrong, but people should be aware that there
> are *two* requests made for each period.  One for "conditions" and other
> for "10dayforecast" -- so, you don't want to update your wx info any
> more frequently than once ever seven minutes or so, or you'll hit the
> free limit of your API.  I'm currently using a forecast interval of 10
> minutes with *tcutting*'s code.
> 
> Note that you can see the API data (how frequently you've invoked the
> API) on the Wunderground API page.
> 
> Anyone who's interested in advancing *tcutting*'s work, in case you're
> not aware, you can combine multiple requests into one as follows:
> 
> 
http://api.wunderground.com/api//conditions/forecast10day/q/03057.json
> 
> I've been assuming this counts as one API invocation (because it's all
> done in one call) for the purposes of metering... but I'm not certain.
> 
> Now that *tcutting *has blessed us with a short-term solution that meets
> many of my requirements, I'm going to chill about this for a while. 
> Then I'll determine whether I help advance *tcutting*'s work to date, or
> continue down my own path (which is *significantly* more disruptive to
> the structure of Greg's original code).
> 
> One final time for now: Thank you *tcutting*.  Thanks for your work on
> this problem, and thanks for sharing.

I realized late that you can combine multiple "feature" queries into
single call. That's an obvious area for improvement. I was worried about
the number of queries per day.

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-01 Thread tcutting

bluetdi wrote: 
> Great! Thank you so much, tcutting.
> 
> Works right out of the box. I get data for at least 5 days (did not try
> more yet). Everything is there: (long) day, date, temperature, high,
> low, pressure, humidity, wind, windspeed, rain, skycondition. And there
> is more I have to try, sunrise and sunset for example.
> 
> Icons on the Touch seem to be ok, but I am not shure for the 4. and 5.
> day. May not be implemented yet. Boom is as before, great, Classic I did
> not try.
> 
> Long day used to be short, is there a file where I can change the
> translations?
> 
> At the settings page I do not get the contents of the string.txt file.
> You have to fill in the WU-key where you suppose it is right.
> Settingspages of the players are blank also except for the boxes to fill
> in the parameters.
> 
> Thanks again. If I can help with testing let me know.

Sunrise/sunset are not yet implemented.

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-01 Thread get.amped

A considerable improvement! Thanks so much for the work. Just to give
you some feedback, here's how it works on older SB devices.

On my Classic and Boom I have the same settings:

Icon: On
3-Line: Off
Line 1: %e %H %j
Line 2: %y %v

The devices display:

[temp] [hum] [wind]
[cloud icon] [current day of week] [one word forecast]

The first line periodically changes, so I know it's getting updates. The
second line does not change. Not sure what will be necessary to get it
to cycle through current and future forecasts. I'm guessing on the Touch
it shows all of them on the screen at the same time. I have switched the
line 1 and line 2 parameters and the only difference is the positioning
and font size (line one font is smaller than line 2).



Win7Pro(x64)[3.3Ghz i5, 8GB RAM, 120GB SSD system, 15TB storage], LMS
7.9.0 -> Logitech Squeezebox Classic V.3 -> Cambridge Audio DacMagic ->
NAD C160 -> 2 x NAD C272 -> Quad 22L2

get.amped's Profile: http://forums.slimdevices.com/member.php?userid=10022
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-01 Thread PeterGV

Just a quick note to add:  Unlike other services, Wunderground is _very_
strict with their API limits.  Very, very, strict.

They start you off with 3 "raindrops" which are exception allowances. 
Each time you exceed your limit (calls per day or calls per hour) you're
charged a raindrop.  After you hit zero raindrops, if you exceed your
allowance they disable your API access for the remainder of the day in
which your excess occurred.

At least they send you email (almost in real-time) when they detect an
overage.

Ugh.



PeterGV's Profile: http://forums.slimdevices.com/member.php?userid=31531
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-01 Thread PeterGV

Brilliant, *tcutting*.  Absolutely wonderful job.  Bravo for your
service to the community and thank you!

It's cool that you wrote this with no additional libraries, either. 
Makes it super-easy to install/use.

Please correct me if I'm wrong, but people should be aware that there
are *two* requests made for each period.  One for "conditions" and other
for "10dayforecast" -- so, you don't want to update your wx info any
more frequently than once ever seven minutes or so, or you'll hit the
free limit of your API.  I'm currently using a forecast interval of 10
minutes with *tcutting*'s code.

Note that you can see the API data (how frequently you've invoked the
API) on the Wunderground API page.

Anyone who's interested in advancing *tcutting*'s work, in case you're
not aware, you can combine multiple requests into one as follows:


http://api.wunderground.com/api//conditions/forecast10day/q/03057.json

I've been assuming this counts as one API invocation (because it's all
done in one call) for the purposes of metering... but I'm not certain.

Now that *tcutting *has blessed us with a short-term solution that meets
many of my requirements, I'm going to chill about this for a while. 
Then I'll determine whether I help advance *tcutting*'s work to date, or
continue down my own path (which is *significantly* more disruptive to
the structure of Greg's original code).

One final time for now: Thank you *tcutting*.  Thanks for your work on
this problem, and thanks for sharing.



PeterGV's Profile: http://forums.slimdevices.com/member.php?userid=31531
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: squeeze2upnp, a bridge between LMS and uPNP devices

2014-12-01 Thread bakker_be

philippe_44 wrote: 
> I've checked on Windows Media Player for Win7. It works as long as you
> enable the remote control of Media Player (located I think under
> "stream", "allow remote control of my player"). I do not have a WinPhone
> 8.1 so I cannot check for that precise case. I will try to get one for
> test in the coming days. I've updated the "compatibility" file on
> github. As I wrote in the "compatibility" file it seems that WMP wants
> to read the whole file before playing it ... there might a parameter I
> can tweak to avoid that ( this is really stupid :-( )
> 
> NB: general comment : I've pushed 0.1.2.0 on github
I've got 2 daughters with Windows Phone, I'll use them as guinea pigs
for you :p



Main System: Touch; Marantz SR-5004; TMA Premium 905; TMA Premium 901;
BK Monolith+ FF; HDI Dune Smart D1; Pioneer PDP-LX5090H
iPad 32GB Wifi + Squeezepad (local playback activated)
Acer Iconia Tab A700 + Squeezeplayer
Wandboard Duallite + CSOS, integrated LMS activated

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

2014-12-01 Thread bluetdi

Great! Thank you so much, tcutting.

Works right out of the box. I get data for at least 5 days (did not try
more yet). Everything is there: (long) day, date, temperature, high,
low, pressure, humidity, wind, windspeed, rain, skycondition. And there
is more I have to try, sunrise and sunset for example.

Icons on the Touch seem to be ok, but I am not shure for the 4. and 5.
day. May not be implemented yet. Boom is as before, great, Classic I did
not try.

Long day used to be short, is there a file where I can change the
translations?

At the settings page I do not get the contents of the string.txt file.
You have to fill in the WU-key where you suppose it is right.
Settingspages of the players are blank also except for the boxes to fill
in the parameters.

Thanks again. If I can help with testing let me know.



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: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2014-12-01 Thread twynne

tcutting wrote: 
> Updated to v5.10.1a - added mappings to the "legacy squeezebox" icons.

Thanks for this.  The one thing I can't see in the plugin settings now
is any kind of 'key' that shows what the various switches are.  Can you
include a list here if not possible to show in the plugin settings?

Thanks

Tom



1 SB Touch, 2 x Booms, 1 x SB3, 1 x SB Radio

twynne's Profile: http://forums.slimdevices.com/member.php?userid=1326
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] Soundcloud plugin for squeezeserver

2014-12-01 Thread 505

rsiebert wrote: 
> With the version 0.8.2.20 I had the following problems:
> - Adding a song from the dashboard list adds always the first song to
> the playlist
> - Showing the playlists, tracks, favorites of a friend does not show up
> correctly
> - No default icon was shown in case no artist/track icon was provided
> - Small other issues.
> 
> I have forked the plugin and made some changes to fix this. 
> You can get the new version 0.8.3 from my github repo:
> github.com/rsiebert/SqueezeCloud
> 
> Best regards
> Robert

Thanks. Can you send a pull request, then I can add it to the repo. My
repo is included in the default repo list for LMS, so it will then
roll-out to all users.



My patch: 'Reduce brightness when screen saver is active'
(http://server.vijge.net/squeezebox/) for Touch (and maybe Radio)

505's Profile: http://forums.slimdevices.com/member.php?userid=44967
View this thread: http://forums.slimdevices.com/showthread.php?t=92723

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


Re: [SlimDevices: Plugins] Max2Play Webinterface for Mediaclients (Audioplayer, Squeezeserver, Airplay, XBMC)

2014-12-01 Thread flysurfer

Hi Jason,

thanks for your feedback! We always test the WiFi-USB-sticks we sell to
make sure they work with the device. It is not that easy to install the
missing drivers. If you want to upgrade to a newer version of Max2Play
this might become a problem.
As a solution, I would suggest that you get the WiFi dongle directly
from the hardkernel website rather than investing a lot of time in
adepting the current Image for your WiFi dongle. Problems are: drivers
for ARM-platform, power-save mode of wifi device, etc...

Anyway - if you want to know more about your current (not working)
wifi-dongle: use putty to ssh to the max2play device. User is "root" and
password is "max2play". Then plugin in the dongle and type "dmesg". This
will get you an output of the device name and maybe more helpful
information.



2 x Max2Play on ODROID U2/U3 with LMS, Squeezelite, Shairport, XBMC
1 x Squeezebox Receiver
1 x Denon 1713 AVR + Nubert 5.1 System
iPeng

Max2Play-Image for ODROID: http://shop.max2play.com/de/image-max2play

flysurfer's Profile: http://forums.slimdevices.com/member.php?userid=61064
View this thread: http://forums.slimdevices.com/showthread.php?t=101856

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