Re: [SlimDevices: Plugins] 7.3 and XM radio

2009-05-07 Thread cbenedikt

Thanks for your good work on the XM plugin Neil.


-- 
cbenedikt

cbenedikt's Profile: http://forums.slimdevices.com/member.php?userid=30139
View this thread: http://forums.slimdevices.com/showthread.php?t=56497

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


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

2009-05-07 Thread gharris999

nofuse;421486 Wrote: 
> Is there a command I can use on windows to shutdown to SN without
> accessing SvrPowerControl in squeezecenter?
> I know I can use c:\windows\system32\cmd.exe /C start /B
> scpowertool.exe --shutdown --log to shutdown the server and PC but I
> wish to switch to SN first.
> 
> ThanksYou can do this using SqueezeCenter's CLI. The SCCLITool.exe utility
would do the trick:

scclitool.exe srvrpowerctrl shutdown2sn message playermac -h serverip
-p 9090


-- 
gharris999

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

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


Re: [SlimDevices: Plugins] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread bpa

> 
> I agree squeezeslave is the no-gui player, it's just unfortunate that
> it has a major flaw and is not being developed any more.
> 
There has been more development recently on squeezeslave that
Softsqueeze.

> 
> I'd do it myself but I don't know either Java or what I'm really doing
> when it comes to compiling Java applications.
> 
Everybody starts with no knowledge of Java - I didn't about 3 months
ago.


-- 
bpa

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

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


Re: [SlimDevices: Plugins] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread rickwookie

I'd be really interested in seeing this issue resolved. I've had the
same problems reported here for a long time and I'd never considered
that it might be because I don't have X. I assumed that -Dskin=headless
would switch off all GUI routines.

If this could be fixed it would be great.


-- 
rickwookie

rickwookie's Profile: http://forums.slimdevices.com/member.php?userid=6397
View this thread: http://forums.slimdevices.com/showthread.php?t=63052

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


Re: [SlimDevices: Plugins] Announce: MLB Gameday Plugin 0.0.1 -- alpha testers wanted

2009-05-07 Thread jojopuppyfish

Tedjust wanted to say thanks for working on this.
We all love your plugin and hope you can get it working again.


-- 
jojopuppyfish

jojopuppyfish's Profile: http://forums.slimdevices.com/member.php?userid=9400
View this thread: http://forums.slimdevices.com/showthread.php?t=46832

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


Re: [SlimDevices: Plugins] libre.fm

2009-05-07 Thread pichonCalavera

I just found Libre.fm and it looks interesting as an alternative to
Last.fm, would be nice having support for 'gobbling' from Squeezebox.


-- 
pichonCalavera

*rip* (eac) > *convert* (flac) > *tag* (musicbrainz/mp3tag) >
*normalize* (replaygain/foobar2000) > *albumart* (www/firefox) >
*transport* (winscp) > *store* (debian) > *manage* (squeezecenter) >
*control* (ipodtouch/ipeng-app) >  *play* (squeezebox) > *preamplify*
(zpre2) > *amplify* (zampv3) > *listen* (axiomm2/sennheiser-hd595) >
*scrooble* (last.fm) > *enjoy* (me :)

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

pichonCalavera's Profile: http://forums.slimdevices.com/member.php?userid=13068
View this thread: http://forums.slimdevices.com/showthread.php?t=62527

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


[SlimDevices: Plugins] Custom Browse singles

2009-05-07 Thread badbob

Is no longer working. It used to work. Basically I want all CD singles
to be in a seperate menu, not in the artists & albums menu. Here's the
XML file

What's working..
Singles do not appear in artists & albums.
Singles are in the artists & singles menu

But what's not correct is that Artists & Singles also has albums. I
only want Singles to be in this menu.


  deepartists
Artists
and
Singlesvariousartist  
Various
Artists  sql
  select
contributors.id,contributors.name from
contributorswhere   
contributors.name='Various Artists'
and 
{property:server:variousArtistAutoIdentification}=1 
group by
contributors.id
album  
Songs  
album  
album  
sql  
select
albums.id,albums.title from albums  where   
albums.compilation =
1   group by albums.id  
order by albums.titlesort asc  

   
track  track  
track  
sql
  select
tracks.id,tracks.title from
tracks,albums   where   
tracks.audio=1
and tracks.album={album}
group by tracks.id  
order by
tracks.tracknum asc,tracks.titlesort
asc  
  trackdetails   
trackdetails   
track  
  
artistletter   
Artist
Groupsql
alpha  
select
substr(contributors.namesort,1,1),substr(contributors.namesort,1,1),substr(contributors.namesort,1,1)
from
contributors,contributor_album,albums   where   
contributor_album.contributor=contributors.id
and contributor_album.album=albums.id
and (   
albums.compilation is null or   
albums.compilation=0
or  
{property:server:variousArtistAutoIdentification}=0 
)   group
by substr(contributors.namesort,1,1)order by 
contributors.namesort
asc
artist Albums 
artist 
sql
alpha   
  select
contributors.id,contributors.name,substr(contributors.namesort,1,1) from
contributors,contributor_album,albums   where

contributor_album.contributor=contributors.id
and 
contributor_album.album=albums.id
and contributor_album.role in (1,5) 
and
(   
albums.compilation is null or   
albums.compilation=0
or  
{property:server:variousArtistAutoIdentification}=0 
)
and 
substr(contributors.namesort,1,1)='{artistletter}'  
group by
contributors.id order by 
contributors.namesort
asc
album  
Songs  
album  
album  
sql   

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

2009-05-07 Thread nofuse

Is there a command I can use on windows to shutdown to SN without
accessing SvrPowerControl in squeezecenter?
I know I can use c:\windows\system32\cmd.exe /C start /B
scpowertool.exe --shutdown --log to shutdown the server and PC but I
wish to switch to SN first.

Thanks


-- 
nofuse

nofuse's Profile: http://forums.slimdevices.com/member.php?userid=22297
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


[SlimDevices: Plugins] AlienBBC, mplayer, Napster & SB1 ?

2009-05-07 Thread ijwoo1

I've tried searching for answers but I'm guessing there are not too many
of us left running SB1 and even less that want to stream Napster to
it:)

As per the title, should I be able to play Napster streams on an SB1 ?


I'm assuming that it would require AlienBBC with mplayer with an
appropriate convert.conf file to transcode the WMA stream on the fly to
MP3 or FLAC ?

I can play Deezer, BBC streams and other internet streams but not
Napster. No matter what I do I always get an "invalid credentials"
message.

I have set up my napster account in Squeeze network, I can browse my
personal Napster library on the SB1, so I know the credentials are
correctly set up but it refuses to play any tracks.

Is there a fundamental incompatibility or just incompetence on my part
?

I should also say that I'm running Squeezecenter 7.3.3 on a Synology DS
NAS using SSODS - is the fact I'm not running windows the problem ?

Tks


-- 
ijwoo1

ijwoo1's Profile: http://forums.slimdevices.com/member.php?userid=30151
View this thread: http://forums.slimdevices.com/showthread.php?t=63124

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


Re: [SlimDevices: Plugins] Announce: Wave Input plugin v1.00

2009-05-07 Thread bpa

The slow buffering issue sounds like no audio is being captured probably
because you haven't changed thre WaveInput capture device according to
the new order as a result of the new card.

Going back to the old audio will probably only work if you remove the
new card as audio driver order will have changed which affects which
wavin device you capture audio from.

Did you check that audio can be captured from the new card and what is
the capture device numbering using the "wavin2cmd -l" command ?.


-- 
bpa

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

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


Re: [SlimDevices: Plugins] Which guide to follow for MusicIP setup in Ubuntu Linux?

2009-05-07 Thread signor_rossi

raven22;421435 Wrote: 
> > signor_rossi;421405 Wrote: 
> > > > raven22;421394 Wrote: 
> > > Why?
> > > 
> > > I understand, but i guess (hope) you have a backup? So just try it, i
> > > never had problems with archiving the analysis in the files itself.
> > > 
> > > Really, MusicIP and Sugarcube make listening very enjoyable, a true
> > > journey through your music> > > > 
> > 
> > I do have a backup on another PC, but I would have to check/listen
> > to 7000 tracks to be sure that all tracks are okay, otherwise I
> > could write damaged files back to my backup disk and then...(or is
> > there an easier way to check, my backup isn't incremental). And the
> > GUI app really seems to be very unstable and the rest of MusicIP on
> > Linux too, I simply don't trust it enough. :)
> > As for the benefits MusicIP provides, I really wanted to try it out
> > because I could need a new way to browse my collection. :) Maybe I
> > will try again when a new version comes out...
> > 
> > SignorRossi.


-- 
signor_rossi

signor_rossi's Profile: http://forums.slimdevices.com/member.php?userid=11941
View this thread: http://forums.slimdevices.com/showthread.php?t=63027

___
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

2009-05-07 Thread Dermaplex

Is there any way to make SuperdateTime work on Squeezenetwork (i.e.
without the need of Squeezecenter) ? 

Dx.


-- 
Dermaplex

Dermaplex's Profile: http://forums.slimdevices.com/member.php?userid=20183
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] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread rjg_scotland

I agree squeezeslave is the no-gui player, it's just unfortunate that it
has a major flaw and is not being developed any more. Well, if you could
build a version, just for testing, it'd be really appreciated - but no
pressure :). 

Perhaps someone else might take up an interest in persuing the no-gui
version further if it tests sucessful. I'd do it myself but I don't know
either Java or what I'm really doing when it comes to compiling Java
applications.


Thanks again.


-- 
rjg_scotland

rjg_scotland's Profile: http://forums.slimdevices.com/member.php?userid=30114
View this thread: http://forums.slimdevices.com/showthread.php?t=63052

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


Re: [SlimDevices: Plugins] Which guide to follow for MusicIP setup in Ubuntu Linux?

2009-05-07 Thread raven22

signor_rossi;421405 Wrote: 
> > raven22;421394 Wrote: 
> > Why?> > > > > 
> > > 
> > > Too risky. I currupted some files once with some other not directly
> > > tagging related software. It simply took too long to tag everything
> > > properly. :)> > > > 
> > 
> > I understand, but i guess (hope) you have a backup? So just try it,
> > i never had problems with archiving the analysis in the files
> > itself.


-- 
raven22

raven22's Profile: http://forums.slimdevices.com/member.php?userid=16511
View this thread: http://forums.slimdevices.com/showthread.php?t=63027

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


Re: [SlimDevices: Plugins] Are you willing to pay for a Sirius Radio plug-in?

2009-05-07 Thread MOMENTUM

I have been hoping to get this to work on 7.3.2 for a while now..
Hopefully we can get some help soon.
I will pay to get this going
- - - mo


-- 
MOMENTUM

MOMENTUM's Profile: http://forums.slimdevices.com/member.php?userid=20589
View this thread: http://forums.slimdevices.com/showthread.php?t=20621

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


Re: [SlimDevices: Plugins] no musicip mix via lazy search

2009-05-07 Thread ks10

so you're right, stuart. all non-keyword searches are successful.
thanks.ks10


-- 
ks10

ks10's Profile: http://forums.slimdevices.com/member.php?userid=10566
View this thread: http://forums.slimdevices.com/showthread.php?t=62889

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


Re: [SlimDevices: Plugins] Announce: CDplayer plugin

2009-05-07 Thread pippin

bpa;420695 Wrote: 
> Attached is a replacement for the CDhandler.pm file with a fix for
> accented chars in CDDB record.  
> 
> Download and unzip so it can replace the current CDhandler.pm file. SC
> needs to be restarted after replacement. 
> 
> Can you check if it fixes the accented issue.

Works fine.
Cool.
Thanks!


-- 
pippin

---
see iPeng, the Squeezebox iPhone remote, at penguinlovesmusic.com

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

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


Re: [SlimDevices: Plugins] Announce: Wave Input plugin v1.00

2009-05-07 Thread thorbjorn78

I had the wave input plugin working fine, but after installing a
soundblaster live card and attempting to stream sound from that instead,
the squeezebox suddenly says "buffering" forever when I try to connect.
It takes maybe 5 seconds between each additional % on the buffering in
the display.. 

I got it to work with sound from the soundblaster, and then I don't
know what I did (if anything) but now I've got this buffering issue.
I've rebooted both server and cut the power to the squeezebox and also
updated to latest firmware and version of squeezecenter. Any idea what I
may have done/configured wrong?


-- 
thorbjorn78

thorbjorn78's Profile: http://forums.slimdevices.com/member.php?userid=23367
View this thread: http://forums.slimdevices.com/showthread.php?t=35718

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


Re: [SlimDevices: Plugins] Which guide to follow for MusicIP setup in Ubuntu Linux?

2009-05-07 Thread signor_rossi

raven22;421394 Wrote: 
> Why?
> 
> Too risky.


-- 
signor_rossi

signor_rossi's Profile: http://forums.slimdevices.com/member.php?userid=11941
View this thread: http://forums.slimdevices.com/showthread.php?t=63027

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


Re: [SlimDevices: Plugins] Which guide to follow for MusicIP setup in Ubuntu Linux?

2009-05-07 Thread raven22

signor_rossi;420781 Wrote: 
> 
> Seems I have found a way now to set things up, it is just a little
> trickier when you don't want to save the MusicIP info in the file tags
> (which I never will ;)

Why?

I let my main (windows) computer do the analyzing, and then archive the
analysis to the tags.
Then headless installed MIP server on the linux SC server is quite fast
with adding the new tracks to the database.


-- 
raven22

raven22's Profile: http://forums.slimdevices.com/member.php?userid=16511
View this thread: http://forums.slimdevices.com/showthread.php?t=63027

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


Re: [SlimDevices: Plugins] iPeng support thread

2009-05-07 Thread pippin

Gazjam;421377 Wrote: 
> ALBUMREVIEW / CUSTOM SKIP / BIOGRAPHY plugins installed not showing up
> in Ipeng 1.1
> 
> Hey Pippin, jus installed these plugins..showing in SC web interface
> but not in IPENG?
> 
> Any ideas please?
> 
> 
> Thanks.

Don't know about Custom Skip.
AR and Bio are in the TrackInfo menu: do a "hold" gesture on a single
track.


-- 
pippin

---
see iPeng, the Squeezebox iPhone remote, at penguinlovesmusic.com

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

2009-05-07 Thread Gazjam

ALBUMREVIEW / CUSTOM SKIP / BIOGRAPHY plugins installed not showing up
in Ipeng 1.1

Hey Pippin, jus installed these plugins..showing in SC web interface
but not in IPENG?

Any ideas please?


Thanks.


-- 
Gazjam

Gazjam's Profile: http://forums.slimdevices.com/member.php?userid=18604
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] Which guide to follow for MusicIP setup in Ubuntu Linux?

2009-05-07 Thread signor_rossi

I give up! Too cumbersome, too buggy!
Not that I paid money for it... ;)


-- 
signor_rossi

signor_rossi's Profile: http://forums.slimdevices.com/member.php?userid=11941
View this thread: http://forums.slimdevices.com/showthread.php?t=63027

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


Re: [SlimDevices: Plugins] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread bpa

I am only doing basic maintenance on Softsqueeze to keep it runnig with
new version of Java and Squeezecenter. If I build a no GUI version would
be only to test headless issue to isolate the problem. 

However, this does not stop anybody else from doing so but as I see it
squeezeslave is the no GUI player and there is no point in creating yet
another player and spreading resources even thinner.


-- 
bpa

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

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


Re: [SlimDevices: Plugins] no musicip mix via lazy search

2009-05-07 Thread ks10

hi stuart,

thank you for your answer. in fact i used the keyword search to start
the musicip mix. i havn't tried to use artist or album search. i will
try and post the result tonight when i'm at home.

thanks a lot for your work.
ks10


-- 
ks10

ks10's Profile: http://forums.slimdevices.com/member.php?userid=10566
View this thread: http://forums.slimdevices.com/showthread.php?t=62889

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


Re: [SlimDevices: Plugins] AlienBBC 2.4a5 for 7.3.x beta available for testing

2009-05-07 Thread Sb42

Installed under Win/XP happily and seems to be working fine
thanks!


-- 
Sb42

Sb42's Profile: http://forums.slimdevices.com/member.php?userid=10692
View this thread: http://forums.slimdevices.com/showthread.php?t=60368

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


Re: [SlimDevices: Plugins] iPeng support thread

2009-05-07 Thread Acey

Receiver was connected to SC first.  Actually have not tried with iPeng
yet - only using my laptop to control for now.  Need to purchase iPeng
soon after hearing so much good about it!  Just wanted to share my
success in getting a controller-less receiver working on SN.


-- 
Acey

Acey's Profile: http://forums.slimdevices.com/member.php?userid=30169
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] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread nowork

Hi,

I vote for a non GUI version of SoftSqueeze, or at least being able to
invoke SoftSqueeze without a GUI that runs continuously with no
problems.

I too am running a minimal Fedora linux installation without X
installed (booting from a 8Gig Compact Flash Card). I don't want the
overhead of a GUI, and I hope this will be a set-and-forget box.

I'm happy to move from SqueezeSlave to SoftSqueeze on this box if
SoftSqueeze can solve the chipmunk problem, and run non GUI
as-a-service.

Thanks for your help.


-- 
nowork

nowork's Profile: http://forums.slimdevices.com/member.php?userid=20453
View this thread: http://forums.slimdevices.com/showthread.php?t=63052

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


Re: [SlimDevices: Plugins] Announce: New WeatherTime Screensaver adds graphical forecasts

2009-05-07 Thread ModelCitizen

Hello,

I've set up this great plugin for my Boom and it works pretty well
using only Weather.com (the small exceptions being that text can be too
long if using alarms and use up/down keys usually produce a blank
screens).

I'd like to use the local Wunderground.com weather stations as they are
much nearer to me (IENGLAND188 or IENGLAND65) but when I add the codes
to the SDT I receive a display that is not populated with data. Examples
can be seen here:

http://img27.imageshack.us/img27/9361/sdtxhn.jpg - sdt Wunderground
display
http://img89.imageshack.us/img89/9261/2arrowsdown.jpg - sdt
Wunderground display with "Currently"

Any suggestions as to what the problem might be would be welcome
(including suggestions for what to search for in this thread). Thanks

MC


-- 
ModelCitizen

On average people have fewer than two feet.

Last.fm/user/ModelCitizen

ModelCitizen's Profile: http://forums.slimdevices.com/member.php?userid=446
View this thread: http://forums.slimdevices.com/showthread.php?t=21989

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


Re: [SlimDevices: Plugins] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread rjg_scotland

bpa;421305 Wrote: 
> It's a possibility and worth checking but it may require creating a
> special headless build with no GUI libraries to test.

Well, if you want I could install X (but not sure if/when I could get
round to it today) however I'd rather avoid it. It depends how much of a
bother it is for you (or I) to compile a version without the GUI
libraries.

Thanks for your help so far!


-- 
rjg_scotland

rjg_scotland's Profile: http://forums.slimdevices.com/member.php?userid=30114
View this thread: http://forums.slimdevices.com/showthread.php?t=63052

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


Re: [SlimDevices: Plugins] AlienBBC 2.4a5 for 7.3.x beta available for testing

2009-05-07 Thread kesey

2.4a5 for 7.3x beta (26407) installed without a hitch on Windows 7 RC,
and is playing away merrily.


-- 
kesey

kesey's Profile: http://forums.slimdevices.com/member.php?userid=10786
View this thread: http://forums.slimdevices.com/showthread.php?t=60368

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


Re: [SlimDevices: Plugins] Announce: New WeatherTime Screensaver adds graphical forecasts

2009-05-07 Thread cparker

cparker;418875 Wrote: 
> Hi guys
> 
> A feature request for this great plugin.  As the data provider has a
> habit of disappearing, I assume to high levels of traffic??  Could the
> plugin cache the current weather report and if the site isnt available
> to provide an update to just display what it currently holds in its
> cache.
> 
> I think it would be better to have a weather report that is an hour out
> rather than just displaying a question mark and no weather report at
> all.
> 
> Cheers

As a follow up to those that are interested, commenting out lines 2180
to 2194 in the plugin.pm code will stop it wiping the forecast and leave
the current forecast displaying.

So the code looks something like this;
# make "die" errors in Weather::Wunderground non fatal
if ($@) {
warn $@;
$log->error("Weather Fetch Failed");
return;
}

Seems to work ok without any repercussions that I've seen so far.

Cheers


-- 
cparker

www.spicefly.com - Visit for an enhanced Interface for MusicIP and
integration tips and tricks, Plugin coding tips, Spicefly SugarCube the
MIP AutoDJ plugin and Spicefly Weather!

cparker's Profile: http://forums.slimdevices.com/member.php?userid=2083
View this thread: http://forums.slimdevices.com/showthread.php?t=21989

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


Re: [SlimDevices: Plugins] iPeng support thread

2009-05-07 Thread pippin

Acey;421230 Wrote: 
> Just figured out last night to register a Receiver with SqueezeNetwork
> without a Controller.  Download SqueezePlay for your OS from here:
> downloads.slimdevices.com/nightly/?ver=7.3 and install it (I've only
> tried the Windows build).  Run SqueezePlay - it emulates a Controller. 
> From the SqueezePlay menu select Choose Player and pick your Receiver. 
> Then choose Settings, Music Source and select SqueezeNetwork.  You'll be
> provided with a PIN to enter on the SqueezeNetwork page.  Do so, give
> your Receiver a name and then it should be connected to SqueezeNetwork. 
> You can delete the Controller it adds to your SqueezeNetwork account
> without worry - the Receiver will still work just fine with
> SqueezeNetwork.  Enjoy the tunes! (I know I am!)

Thanks for the hint.
One thing: Was your receiver connected to SC before you registered it
with SN?
And did moving it to SN NOT work with iPeng (it's supposed to I
understand as long as your SN account settings are configured correctly
in SC).


-- 
pippin

---
see iPeng, the Squeezebox iPhone remote, at penguinlovesmusic.com

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] Moose installation problems

2009-05-07 Thread Dr Lovegrove
2009/5/6 ckllrvlk :
>
> I am running slimserver on a ReadyNas+ and am attempting to install
> Moose on an xp machine. I get teh message that the database has been
> unbound. At that point I restart the ReadyNas and try to scan the
> library to no avail. I get the message 'Problem connecting to MySql
> server: Unable to connect to any of the Mysql hosts'
>
> I checked the my.tt file and commented out the line
> # bind-address          = [% bindAddress %]
>
> that did not help. I am running squeezecenter 7.2 and Moose .070
>
> I tried changing the user to root and slimserver, I also tried changing
> the port from 9092 to 3306 - no luck.
>
> Anyone have any other ideas?

Hi,

Most likely thing is the firewall. For DB access on a remote machine you have
to open the port on the server machine rather than the moose machine.
ReadyNAS boxes usually default to 3306, so you'd have to open that on the
server.

Also make sure Moose is talking to 3306 for DB access..

I've updated  slightly with
some details on DB settings..

Presumably the non-DB stuff all works ok in Moose ?

HTH,

-- 
- Dr Lovegrove
http://www.rusticrhino.com/drlovegrove
http://groups.google.com/group/moosenews
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread bpa

> 
> Could that be causing problems with SoftSqueeze even in headless mode
> do you think?
> 
It's a possibility and worth checking but it may require creating a
special headless build with no GUI libraries to test.


-- 
bpa

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

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


Re: [SlimDevices: Plugins] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread rjg_scotland

It's ALSA I'm using. I don't actually have X installed on the box I'm
afraid - it's very minimal just for playing audio. Could that be causing
problems with SoftSqueeze even in headless mode do you think?


-- 
rjg_scotland

rjg_scotland's Profile: http://forums.slimdevices.com/member.php?userid=30114
View this thread: http://forums.slimdevices.com/showthread.php?t=63052

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


Re: [SlimDevices: Plugins] SoftSqueeze headless with squeezecenter problems

2009-05-07 Thread bpa

Can you run Softsqueeze without the "-Dskins=headless" and then  ignore
the display and use as if headless (i.e. do not do anything at all with
Softsqueeze UI) to see if problems happen. Make sure after Softsqueeze
starts you select a different window and do no SoftSqueeze UI action
whatsoever (e.g. no minimise)

This is needed to check if headless skin is the problem or whether some
part of UI initialisation is the problem.


-- 
bpa

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

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