Re: [SlimDevices: Plugins] Snow Leopard and Execute Script

2009-09-04 Thread Michael Herger
> I can provide the crash log if anyone knows both the plugin and Macs
> well enough to see what's going on.

That's always helpful. server.log, crash report etc.
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: SqueezeIR - A Generic Infra-Red Remote Control Applet for the Duet's SBC

2009-09-04 Thread indifference_engine

Thanks, that makes sense and I'm glad you've got it working for you. I
got the protocol info from here:
http://www.hifi-remote.com/johnsfine/DecodeIr.html
It shows a number of flavours of NEC which only differ by the repeat
signal and the header pulse length. I didn't think the header pulse was
too critical so I made hybrid of them using the NECx header which works
with my toshiba DVD (NECx2 flavour) and Samsung TV (NEC2). The DENON
protocol is very similar to NEC but uses different pulse and space
lengths for encoding ones and zeroes (635us vs 564us iirc). I think
there are loads of things that are NEC-like but not strictly NEC and it
depends on just how fussy your kit is.  Obviously, your kit cares more
about the header pulse length than mine does and isn't too fussy about
the signal pulse/space lengths!

The next major release will be able to use LIRC files directly but in
the interim I'll add a second NEC protocol to the applet.


-- 
indifference_engine

indifference_engine's Profile: 
http://forums.slimdevices.com/member.php?userid=20698
View this thread: http://forums.slimdevices.com/showthread.php?t=66795

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


Re: [SlimDevices: Plugins] Announce: SqueezeIR - A Generic Infra-Red Remote Control Applet for the Duet's SBC

2009-09-04 Thread bluegaspode

Thanks for this information, I think I'm now able to match the captured
data to NEC, furthermore I think I even know how to interpret the
captured IR data.
Finally I think your current NEC implementation is not correct :)
But lets start from the beginning with analysing my captured data:

ANALYSING THE CAPTURED DATA

In each Byte the most significant determines the IR on or off-state.
8D = on for a 'time' of 0x0D  (13d) (='short on')
0A = off for a 'time' of 0x0A (10d) (='short off')
20 = off for a 'time' of 0x20 (32d) (='long off')

Also not that 0x20 (32d) is roughly three times 0x0A (10d) and 0x0D
(13d).

According to the NEC-protokol
(http://www.sbprojects.com/knowledge/ir/nec.htm) a 'short off' is also
three times faster than a 'long off' (see the picture under
'modulation') so these numbers make some sense. 

8D 20 thus indeed is 'short on, long off' = 1
8D 0A is 'short on, short off' = 0

Why do we have 0x20 and 0x0A ? I don't know ... but lets just guess:
In the protocol spec there is a sentence "Each pulse is a 560µs long
38kHz carrier burst (about 21 cycles)".
If a 'cycle' means one mark and one space
(http://www.sbprojects.com/knowledge/ir/ir.htm) in 21 cycles we will get
10 marks  :)

Anyway - this is not really important, if we just use a conversion
factor of 56 we microseconds (µs). 
0x0A times 56 = 560µs  (roughly the 'official' 564µs) 
0x20 times 56 = 1792µs (roughly the 'official' 1692µs)

INTERPRETING CAPTURED HEADERS 
All right so much for the theory to interpret the captured data.
Now lets look at the headers before the actual data. My Yamaha-remote
sends 'FF B6 59' while SqueezeIR currently sends 'DC 57'.

Lets start with captured Yamaha remote:
FF = MSB set, so this is 0x7F times 56 = 7112µs on
B6 = MSB set, this is 0x36 times 56 = 3024µs on
59 = MSB not set, this is 0x59 times 56 = 4984µs on

Together roughly a burst of 10ms on, 5ms off, which pretty much matches
the official documented NEC burst of 9ms on, 4.5ms off.

Now interpreting the current SqueezeIR header:
DC = MSB set = 0x5C times 56 = 5152µs on
57 = MSB not set = 0x57 times 56 = 4872µs off

This is 5ms on and 5ms off => a potentially wrong timed burst ?.

Phew ... so much for protocols :) ... lets go to the source-code.
By chance I realized that your 'DENONtoNATIVE' function already had a
burst looking like the thing I wanted, so I just tried DENON:122:133:26
in the config and BINGO !!! ... Volume Up + Down are working now.

MY CONCLUSION
your current 'DENON'-format is the real NEC
whereever you got your current NEC config from - it doesn't match the
documented protocol (http://www.sbprojects.com/knowledge/ir/nec.htm) -
the initial burst is too short


-- 
bluegaspode

One SB-Duet+Receiver. Server running on Linkstation NAS (LS-CHL).
Needing one more device for bedroom and waiting for the radio :)

bluegaspode's Profile: http://forums.slimdevices.com/member.php?userid=31651
View this thread: http://forums.slimdevices.com/showthread.php?t=66795

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


Re: [SlimDevices: Plugins] Announce: Information Screen (a configurable screen saver)

2009-09-04 Thread erland

bluegaspode;455161 Wrote: 
> I can now install via applet installer and have it running.
> 
Great, then it has to be the redirect that caused the problems.

bluegaspode;455161 Wrote: 
>  SC: Server-Config-Screen/Manage Screens: if I click on 'Download last
> version of existing screens', I get a message 'You have to specify a
> template directory before you can download screen templates'. I have
> done so under 'various settings' but this doesn't help.
> 
You might need to restart the server after you have set it under
various settings.
However, download isn't supported yet anyway so please just ignore the
download button for now. I'm not sure the download functionality will be
available in the final release.

bluegaspode;455161 Wrote: 
> 
>   SC: configuration screen is not intuitive to me #1: I only realized
> by chance, that I can click on 'Default/Album cover' (its not rendered
> as a link) to see further settings. I guess there should be a button
> 'change' beside each configured screen to make this more obvious.
> 
Thanks, I hadn't noticed it looks like that in the Default skin. 

I'm using the Classic skin myself where they change to link when you
hover the mouse above them.

bluegaspode;455161 Wrote: 
> 
>   SC: configuration screen is not intuitive to me #2: I think that
> the 'Only show in state' and 'visible number of seconds' option should
> be rendered (maybe even editable?) on the main config-screen (beside the
> screen-names) as a small table. Thus it would be clear on first glance,
> which screens appear where. 
> 
Agreed.

However, I don't want to change this since I used the same code in my
other plugins which don't have similar needs. It might be possible to
make the information visible on the main list but I don't want to make
it editable.

bluegaspode;455161 Wrote: 
> 
>   SC: broken navigation in SC-settings: I'm on a configuration screen
> of a screen. There I don't have an option to cancel editing. 
> 
You can use the back button in the browser but I agree a Cancel, Back
or Close button might be suitable.

bluegaspode;455161 Wrote: 
> 
> In the top I see a navigation bar 'Main-Menu->Information Screen'.
> Clicking on 'Information Screen' gets me a blank page.
> 
Yes, that's old stuff that really shouldn't be there. It's there since
I use this in other plugins and at least one of them don't have its
configuration inside settings page so there I need the navigation bar.

The problem is that there always seems to be something more important
that needs attention, so it has been that way in all my plugins since
the 7.0 release.

bluegaspode;455161 Wrote: 
> 
>   Duet: The digital clock shown on idle doesn't match the Duets
> screen-size (see attached image). You can see that the time is over the
> currently selected (paused) song. Also the date needs to wrap to match
> the screen.
> 
Yes I know, the default sizes hasn't been completely verified on the
Duet yet, my focus has so far mainly been the new Touch and Radio
devices.

bluegaspode;455161 Wrote: 
> 
>   Feature Request: Would it be possible to configure one of the
> 'official' screensavers as a screen with a given time to show ?
> For instance when playing, I'd like to show the current time - as you
> might have read before I'm a fan of the analog clock :)
> 
I would love to but unfortunately I don't think it's possible. If I
switch to another applet I think I'll also hand over the control to it
so there is no way to automatically get back to the next screen provided
by Information Screen.
However, this is definitely something I want myself, so it's still on
the "to be investigated" list.


-- 
erland

Erland Isaksson
'My homepage' (http://erland.isaksson.info) (Install my plugins through
Extension Downloader)
(Developer of 'TrackStat, SQLPlayList, DynamicPlayList, Custom Browse,
Custom Scan,  Custom Skip, Multi Library, Title Switcher and Database
Query plugins'
(http://wiki.erland.isaksson.info/index.php/Category:SlimServer))

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

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


Re: [SlimDevices: Plugins] BBC 128k Streaming

2009-09-04 Thread bpa

The BBC will only deliver 48kbps streams to non UK IP addresses.


-- 
bpa

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

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


Re: [SlimDevices: Plugins] BBC 128k Streaming

2009-09-04 Thread JPatten

Hi BPA, my home ISP in Ireland is Eircom and my IP location is showing
as Dublin. I am playing the 128k streams but getting 48k. If there is no
other way around it I suppose I could use a proxy.


-- 
JPatten

JPatten's Profile: http://forums.slimdevices.com/member.php?userid=9215
View this thread: http://forums.slimdevices.com/showthread.php?t=67492

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


Re: [SlimDevices: Plugins] BBC 128k Streaming

2009-09-04 Thread bpa

Who is your network operator

It is possible that the internet connection for your iPhone is
backhauled to the UK and so you are allowed a UK speed connection.  Your
PC has a non-UK IP address and so only get the non UK speeds.


Check your locations as seen by Internet by browsing on PV and iPHone
to the site http://www.hostip.info/


-- 
bpa

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

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


Re: [SlimDevices: Plugins] BBC 128k Streaming

2009-09-04 Thread bpa

Are you sure you are playing a 128k*stream.  In most instances the BBC
will replace the UK feed by the non UK feed when the user is outside the
UK.

The only way to be sure is to count the number of packets/bytes being
received by your player in a a period of time when playing the stream.


-- 
bpa

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

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


Re: [SlimDevices: Plugins] BBC 128k Streaming

2009-09-04 Thread JPatten

Yes. When i connect I get 48k streams. The feed options available seem
fewer than using it on my iPhone.


-- 
JPatten

JPatten's Profile: http://forums.slimdevices.com/member.php?userid=9215
View this thread: http://forums.slimdevices.com/showthread.php?t=67492

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


Re: [SlimDevices: Plugins] Announce: Information Screen (a configurable screen saver)

2009-09-04 Thread bluegaspode

I can now install via applet installer and have it running.

Here's what I found so far:

- SC: Server-Config-Screen/Manage Screens: if I click on 'Download
  last version of existing screens', I get a message 'You have to
  specify a template directory before you can download screen
  templates'. I have done so under 'various settings' but this doesn't
  help.
-  SC: configuration screen is not intuitive to me #1: I only
  realized by chance, that I can click on 'Default/Album cover' (its not
  rendered as a link) to see further settings. I guess there should be a
  button 'change' beside each configured screen to make this more
  obvious.
-  SC: configuration screen is not intuitive to me #2: I think that
  the 'Only show in state' and 'visible number of seconds' option should
  be rendered (maybe even editable?) on the main config-screen (beside
  the screen-names) as a small table. Thus it would be clear on first
  glance, which screens appear where. 
  I see that the screen-order used on the main config screen which is
  very nice.
-  SC: broken navigation in SC-settings: I'm on a configuration
  screen of a screen. There I don't have an option to cancel editing. 
  In the top I see a navigation bar 'Main-Menu->Information Screen'.
  Clicking on 'Information Screen' gets me a blank page.
  In the lower end I see a 'Weiter'-Button (don't know the english
  translation), this will safe the settings and I'm back at the
  entry-configuration-screen.
-  Duet: The digital clock shown on idle doesn't match the Duets
  screen-size (see attached image). You can see that the time is over
  the currently selected (paused) song. Also the date needs to wrap to
  match the screen.


+---+
|Filename: Bild092.jpg  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=8073|
+---+

-- 
bluegaspode

One SB-Duet+Receiver. Server running on Linkstation NAS (LS-CHL).
Needing one more device for bedroom and waiting for the radio :)

bluegaspode's Profile: http://forums.slimdevices.com/member.php?userid=31651
View this thread: http://forums.slimdevices.com/showthread.php?t=67422

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


Re: [SlimDevices: Plugins] BBC 128k Streaming

2009-09-04 Thread bonze

Have you tried Radiofeeds?


-- 
bonze

TranquilPC T2-WHS-A3 - SqueezeCenter Version: 7.4 - 28143
3 x wireless SB3 + a Duet

bonze's Profile: http://forums.slimdevices.com/member.php?userid=6150
View this thread: http://forums.slimdevices.com/showthread.php?t=67492

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


Re: [SlimDevices: Plugins] michael hergers plug-ins

2009-09-04 Thread mozzer503

Hey Michael
hope you can help with this one. I've just done a complete delete /
reinstall of Squeezecenter and am now running 7.4.0 / r28429 on Snow
Leopard using the iPod Touch iPeng app as the interface.

After completing the installation, I went to settings and activated
some of your plugins - biography being the main one. But whenever I use
it (via iPeng) the returned information is littered with HTML tags.

any ideas?


-- 
mozzer503

mozzer503's Profile: http://forums.slimdevices.com/member.php?userid=20682
View this thread: http://forums.slimdevices.com/showthread.php?t=55267

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


[SlimDevices: Plugins] BBC 128k Streaming

2009-09-04 Thread JPatten

Hi, My iPhone can access the BBC 128k streams via Radiofeeds. The
fastest BBC streams I see through Slimserver is 48k vis either BBC alien
or the BBC iPlayer (I am in Ireland). Does anybody know how to get the
higher quality feeds? I know the URL is
mms://wmlive.bbc.co.uk/wms/bbc1/hi_s1 but this does not work in the Tune
in URl setting. Any ideas?

Thanks


-- 
JPatten

JPatten's Profile: http://forums.slimdevices.com/member.php?userid=9215
View this thread: http://forums.slimdevices.com/showthread.php?t=67492

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


[SlimDevices: Plugins] Snow Leopard and Execute Script

2009-09-04 Thread danco

It looks as though Mac OS X Snow Leopard has broken the Execute Script
plugin.

At any rate, some scripts that are ok, as they work when I double-click
them on my computer, just produce a crash when I run Execute Script.

I can provide the crash log if anyone knows both the plugin and Macs
well enough to see what's going on.


-- 
danco

danco's Profile: http://forums.slimdevices.com/member.php?userid=210
View this thread: http://forums.slimdevices.com/showthread.php?t=67488

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


Re: [SlimDevices: Plugins] Radio 4 'More or Less' missing from iPlayer plugin

2009-09-04 Thread bpa

Previous weeks - 30/8
> 
> 
>  end="2009-09-06T19:32:00Z"/>
>  imi="imi:bds.tv/125708625" start="2009-08-30T19:00:00Z"
> end="2009-08-30T19:30:00Z" duration="1800"/>
> −
> 
> More or Less
>


-- 
bpa

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

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


Re: [SlimDevices: Plugins] Radio 4 'More or Less' missing from iPlayer plugin

2009-09-04 Thread bpa

How appropriate the program is not available as the topic is

"Investigating estimates of the number of people who illegally share
files on the internet."


-- 
bpa

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

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


Re: [SlimDevices: Plugins] Radio 4 'More or Less' missing from iPlayer plugin

2009-09-04 Thread SuffolkPunch

Triode;455104 Wrote: 
> I player gets its menu from the following bbc feed - can't create it if
> it is not there:
> http://www.bbc.co.uk/radio/aod/availability/radio4.xml

It _is_ there, isn't it:
--

f7d1b7553f00291e87f42862a31bba3eca9cf4f8
b00m74g6
bbc_radio_fourfm
More or Less, 28/08/2009
−

Is Britain's record on prosecuting rape is as bad as headlines
suggest?



−

More or Less

--


-- 
SuffolkPunch

SuffolkPunch's Profile: http://forums.slimdevices.com/member.php?userid=15289
View this thread: http://forums.slimdevices.com/showthread.php?t=67484

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


Re: [SlimDevices: Plugins] Radio 4 'More or Less' missing from iPlayer plugin

2009-09-04 Thread Triode

I player gets its menu from the following bbc feed - can't create it if
it is not there:
http://www.bbc.co.uk/radio/aod/availability/radio4.xml


-- 
Triode

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

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


Re: [SlimDevices: Plugins] Announce: Headphone Switcher for Squeezebox Duet

2009-09-04 Thread Kuben72

Okay. That is weird. I must admit that I haven't tried to listen to
radio on the SBC so I did a quick test and it worked without any
problems.

But that is for another thread. The Headphone switcher can't help you
there. It only controls the output not the stream.


-- 
Kuben72

/Kuben72

1 Duet, 1 SBR, 1 SB3 and 1 Boom

Kuben72's Profile: http://forums.slimdevices.com/member.php?userid=15308
View this thread: http://forums.slimdevices.com/showthread.php?t=67139

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


Re: [SlimDevices: Plugins] Radio 4 'More or Less' missing from iPlayer plugin

2009-09-04 Thread RobertCL

Same here, missing from IPlayer plugin, appears in Alien BBC.  (I've not
tried playing it.)

[Why is it always the things you want to listen to that are missing
:-)]

Squeezecenter Version: 7.3.3 - 27044 @ Mon Jun 15 15:04:06 PDT 2009
BBC IPlayer 0.9a
Operating system: Linux - EN - iso-8859-1
Platform Architecture: i686-linux
Perl Version: 5.8.8 - i686-linux


-- 
RobertCL

RobertCL's Profile: http://forums.slimdevices.com/member.php?userid=30022
View this thread: http://forums.slimdevices.com/showthread.php?t=67484

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


[SlimDevices: Plugins] Radio 4 'More or Less' missing from iPlayer plugin

2009-09-04 Thread SuffolkPunch

Today's (Fri Sep 4th) FM radio 4 broadcast of "More of Less" at 1:30pm
is missing from the BBC iPlayer plugin, but appears in the Alien BBC
plugin. It appears on the BBC web site.

Is this just me? Or do other people find this?

My system's details:

BBC iPlayer v0.9a
Alien BBC v2.3b1-7.3 


Version: 7.3.3 - 27044 @ Mon Jun 15 15:14:08 PDT 2009
Operating system: Windows XP - EN - cp1252
Platform Architecture: 586
Perl Version: 5.8.8 - MSWin32-x86-multi-thread
MySQL Version: 5.0.22-community-nt


-- 
SuffolkPunch

SuffolkPunch's Profile: http://forums.slimdevices.com/member.php?userid=15289
View this thread: http://forums.slimdevices.com/showthread.php?t=67484

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


Re: [SlimDevices: Plugins] Announce: SqueezeIR - A Generic Infra-Red Remote Control Applet for the Duet's SBC

2009-09-04 Thread indifference_engine

>From comparing the captured SBC codes with the known protocol it looks
like '8D 09' represents a 0 in the ir stream whereas '8D 20' represents
a 1.  There is a little bit of error in capturing which is why some
pairs of numbers in the stream are a little larger or smaller than the
above. The 'DC 57' is the AGC pulse sent at the start to wake the
detector up.  I don't know exactly what the numbers mean, the NEC
protocol uses a frequency of 38400Hz with a one coded as 564us on then
1692us off, a zero is 564us on then 564us off so how this correlates to
8D 09 and 8D 20 is beyond me. I also don't know what the string of 7F
represents or the 'FF B6 59' header in the real remote's captured code. 
The fact that it consists of three numbers worries me.

Anyway, using the above assumptions and the captured code from the real
remote it looks like the vol-up key is sending NEC:122:133:26.  What
model is your amp and remote?


-- 
indifference_engine

indifference_engine's Profile: 
http://forums.slimdevices.com/member.php?userid=20698
View this thread: http://forums.slimdevices.com/showthread.php?t=66795

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


Re: [SlimDevices: Plugins] Spicefly Sugarcube revisited

2009-09-04 Thread MeSue

The only problem I have with the plugin is that it often just stops
queuing new tracks to play. When it stops it is always on track #6. I
have Sugarcube set to keep 5 played tracks in the playlist. I work
around it by just starting it off with more than 6 tracks.


-- 
MeSue

SUE

1 Duet | 2 Booms | 1 SB2 | HP MediaSmart Server
Find me on 'Last.FM' (http://www.last.fm/user/MeSue) | 'Twitter'
(http://twitter.com/suechastain)

MeSue's Profile: http://forums.slimdevices.com/member.php?userid=985
View this thread: http://forums.slimdevices.com/showthread.php?t=67219

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


Re: [SlimDevices: Plugins] Announce: Information Screen (a configurable screen saver)

2009-09-04 Thread erland

snarlydwarf;454846 Wrote: 
> Hrrm.. doesn't work for me.  At the 'Downloading Applets' stage, it gets
> stuck, apparently the 302 redirect is annoying Squeezeplay, it doesn't
> seem to follow it.  This is the last I see:
> 
> T 213.112.33.27:80 -> 192.168.2.17:41894 [AP]
> HTTP/1.1 302 Found..Date: Fri, 04 Sep 2009 05:49:36 GMT..Server:
> Apache/2.2.8 (Ubuntu) mod_jk/1.2.25 PHP/5.2.4-2ubuntu5.
> 6 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g..Location:
> http://erland.homeip.net/download/do/downloadapplication?na
> (etc)
> 
> And then nothing more on port 80.
> 
I'm guessing the Squeezebox Server plugin worked but you got problem
with the applet ?

If that's is the case there seems like the Applet Installer in
Squeezeplay isn't able to handle redirects, I've now changed to a direct
url so I would appreciate if you could try if it works better.


-- 
erland

Erland Isaksson
'My homepage' (http://erland.isaksson.info) (Install my plugins through
Extension Downloader)
(Developer of 'TrackStat, SQLPlayList, DynamicPlayList, Custom Browse,
Custom Scan,  Custom Skip, Multi Library, Title Switcher and Database
Query plugins'
(http://wiki.erland.isaksson.info/index.php/Category:SlimServer))

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

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


Re: [SlimDevices: Plugins] Announce: Headphone Switcher for Squeezebox Duet

2009-09-04 Thread callesoroe

Kuben72;455046 Wrote: 
> So if you use the SBR as a player you can listen to radio?

Yes without any problems.


-- 
callesoroe

callesoroe's Profile: http://forums.slimdevices.com/member.php?userid=22693
View this thread: http://forums.slimdevices.com/showthread.php?t=67139

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


Re: [SlimDevices: Plugins] Announce: Headphone Switcher for Squeezebox Duet

2009-09-04 Thread Kuben72

So if you use the SBR as a player you can listen to radio?


-- 
Kuben72

/Kuben72

1 Duet, 1 SBR, 1 SB3 and 1 Boom

Kuben72's Profile: http://forums.slimdevices.com/member.php?userid=15308
View this thread: http://forums.slimdevices.com/showthread.php?t=67139

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


[SlimDevices: Plugins] good news for wow players

2009-09-04 Thread hebe

If anyone play wow,that would be a a good news, Now S5 Deadly Gladiator
, Emblems of Triumph , of Conquest, of Valor, of Heroism are Ready for
you,try here http://www.elygame.com/


-- 
hebe

hebe's Profile: http://forums.slimdevices.com/member.php?userid=32604
View this thread: http://forums.slimdevices.com/showthread.php?t=67472

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


Re: [SlimDevices: Plugins] iPeng support thread

2009-09-04 Thread prometheus

anyone know if its possible using the UDAP config software to set up the
reciever using a batch type command, to save sending idividual commands


-- 
prometheus

prometheus's Profile: http://forums.slimdevices.com/member.php?userid=32602
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: Headphone Switcher for Squeezebox Duet

2009-09-04 Thread callesoroe

bluegaspode;454843 Wrote: 
> Maybe you should temporarly try to install squeezecenter on a laptop and
> if even that doesn't help should ask official logitech support. 
> As it is working for me, I guess it's just some simple configuration or
> networking issue that can be solved by someone who has more knowledge
> about the inner workings.

Have tried but since the headphone function only is BETA, there is no
support from Logitech


-- 
callesoroe

callesoroe's Profile: http://forums.slimdevices.com/member.php?userid=22693
View this thread: http://forums.slimdevices.com/showthread.php?t=67139

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


[SlimDevices: Plugins] AlienBBC, iPlayer & Listen Again...

2009-09-04 Thread Adlopa

For last few years, I've had SlimServer/SqueezeCenter set up to play the
previous afternoon's BBC London Danny Baker show as that morning's alarm
(Monday's 3pm show played on Tuesday at 8.00am, for example). 

This used the old BBC RealAudio Listen Again streams
"rtsp://rmv8.bbc.net.uk/london/aod/dannybaker_mon.ra", and so on — the
contents of each stream was updated with the show from the following
week and the URLs remained static.

Last week, the BBC switched the Listen Again shows to iPlayer and while
the new streams still work with AlienBBC, those old static URLs are no
longer being updated.

Now, as usual for iPlayer, there's a unique URL for each day's Listen
Again that's live for seven days. These are unique — last Monday's show
isn't replaced by this Monday's.

Since there are no longer five static URLs whose contents are updated
each day, this has broken my daily alarm set-up and I'm being denied a
DIY Danny Baker breakfast show. 

Interestingly, in addition to their static daily URLs, those old RTSP
streams also had their own unique IDs (see
http://www.bbc.co.uk/programmes/p001d7kl/episodes/2009), but I can't
find the equivalent for the new iPlayer streams.

So, have any iPlayer experts got any ideas for a way around this..?
Have any Danny Baker fans found a new daily iPlayer URL for the iPlayer
streams..?


-- 
Adlopa

Adlopa's Profile: http://forums.slimdevices.com/member.php?userid=358
View this thread: http://forums.slimdevices.com/showthread.php?t=67455

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


Re: [SlimDevices: Plugins] Spicefly Sugarcube revisited

2009-09-04 Thread Phil Meyer
>Can you confirm the version that you tried?
I am currently using 1.8.4.  I tried 1.9b.

>Can you also confirm whether you upgraded from a repository version to this 
>version?
>
I usually install plugins manually.  I think I upgraded to 1.9b manually (i.e. 
delete previous plugin folder, unzip new plugin version to plugins folder).  I 
may have tried using ED, but if so, I would have definitely removed the 
manually installed plugin first.

I can't remember exactly what issues I was seeing, but I know there were 
problems with interaction with Erland's Dynamic Playlist plugin, which I use to 
run SugarCube as music for my morning alarm clock.  I believe there was also an 
issue with MusicIP filters not working.
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Information Screen (a configurable screen saver)

2009-09-04 Thread bluegaspode

same here - log from Duet while downloading applet:

Code:


  Sep  4 08:40:26 squeezeplay: INFO   applet.SetupAppletInstaller - 
SetupAppletInstallerApplet.lua:229 downloading: 
http://erland.isaksson.info/download/do/downloadapplication?name=slimserver-informationscreen&filename=InformationScreenApplet-0.4.2735.
  Sep  4 08:40:29 squeezeplay: WARN   net.thread - NetworkThread.lua:146 
network thread timeout for Task(SocketHttp {steffi_Request}(R))
  



If I manually put the url in the browser a get '[ServletException
in:/WEB-INF/tiles/viewapplicationversions.jsp] Cannot find bean
applicationPB in any scope' '


-- 
bluegaspode

One SB-Duet+Receiver. Server running on Linkstation NAS (LS-CHL).
Needing one more device for bedroom and waiting for the radio :)

bluegaspode's Profile: http://forums.slimdevices.com/member.php?userid=31651
View this thread: http://forums.slimdevices.com/showthread.php?t=67422

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