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

2010-05-12 Thread kaja69

indifference_engine;546922 Wrote: 
> oops, I was doing it from memory and forgot the most important line of
> xml, try this :o
> > 
Code:

  >   > 
  > 
  > Now it works! Thanks a lot for your help! I press back+home and the volumen 
buttoms then control volumen on the receiver. Sweet :). All I want to do is 
volumen control and turn on/off the receiver. I hope the last thing is possible 
too. Do you know how?
  > 
  > BTW pressing the hotkey combination again doesn't cancel it. What do I do 
if I want to get back to controlling the volumen on the Duet it self?


-- 
kaja69

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

2010-05-12 Thread indifference_engine

sbellon;546924 Wrote: 
> It works very nicely for pressing the button. However, when holding
> nothing happens, and when releasing then one single "press" action
> happens. Can I configure the "hold" action to constantly emit the
> action while holding the key?
hmm, that's odd. It should and always has repeatedly sent codes if you
hold the button down and it does for me.  One thing to bear in mind
with a hold is that nothing will happen for about 2 seconds and then
the ir should repeatedly fire.  The two second pause is just part of
how the controller works.  One thing to try is adding
all just after the override line.  Shouldn't make
a difference as all is the default but you never know...
Does anybody else have this issue?

sbellon;546924 Wrote: 
> Another question: Is something like stateful toggling possible or
> planned for the future? So that you can use the same key to send two
> alternating sequences (i.e. to make Power On / Power Off the same key).
I suppose it's possible but it's not something that I've looked at so
far.


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

2010-05-12 Thread indifference_engine

kvn.inbox;546891 Wrote: 
> Thank you for fast update! But it's not fix for me..
> my setup still not working..
> Will try to capture IrDA codes from original remote..
I've gone through the source code and the Pronto codes that you posted
are being interpreted correctly by SqueezeIR (your codes use the NECx
protocol by the way).  All I can think of is that they are not the
correct ones for your amp.


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

2010-05-12 Thread Paden

indifference_engine;545798 Wrote: 
> Confirmed: There is indeed a trivial-to-fix bug with the Pronto
> converter that means it won't work.  I'll get it sorted tonight.  For
> anyone that's interested I had missed a space out. Apologies for the
> inconveniance :o
> ... and fixed. v0.61 is available from the top of the thread.  Remember
> to backup your config before upgrading.

Oodles of v0.61 goodness here!
Many thanks for the quick fix indifference_engine.

Cheers, Paul


-- 
Paden

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

2010-05-12 Thread Stefan Bellon
On Wed, 12 May, indifference_engine wrote:

> Hold your breath for 0.61 ;)

I've just installed the SqueezeIR plugin on my Controller, downloaded
SR6.lirc, set up a small and simple SqueezeIR.xml file, uploaded both to
the controller and ... everything works as advertised. :-)

Cool! Thanks for this plugin!

Just two minor things, the first of which most likely is a
misconfiguration on my side. Part of my configuration looks like this:




true


NAD_SR6
vol+




true


NAD_SR6
vol+






It works very nicely for pressing the button. However, when holding
nothing happens, and when releasing then one single "press" action
happens. Can I configure the "hold" action to constantly emit the
action while holding the key?

Another question: Is something like stateful toggling possible or
planned for the future? So that you can use the same key to send two
alternating sequences (i.e. to make Power On / Power Off the same key).

-- 
Stefan Bellon
___
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

2010-05-12 Thread indifference_engine

kaja69;546894 Wrote: 
> Thanks a lot for your help! I did as you wrote (also correcting
> "RC-232M.lirc to "RC-632M.lirc") but it
> doesn't work for me. I see Squeeze IR under Settings but when I click
> it nothing happens. Also the hotkey (back+home) doesn't do anything.
> Any input?
oops, I was doing it from memory and forgot the most important line of
xml, try this :o

Code:


  
  66
  
  
  
  lirc 
  
  RC-632M.lirc 
  Onkyo_RC-632M 
  
  
  
  
  

  
  
  
  
  true
  
  
  onkyo  
  VOL+ 
  
  
  
  
  true
  
  
  onkyo  
  VOL+ 
  
  
  
  
  
  
  
  
  true
  
  
  onkyo  
  VOL- 
  
  
  
  
  true
  
  
  onkyo  
  VOL- 
  
  
  
  
  
  
  
  
  
  
  



-- 
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] Meteo (Switzerland) plugin, (how) does it works ?

2010-05-12 Thread Michael Herger
> I have copied the MHCPAN files into
> /volume1/SSODS4/var/home/SqueezeboxServer/Plugins/MHCPAN.

The MHCPAN files are for Windows only. You'll need to install the correct 
version for your platform.

-- 

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


Re: [SlimDevices: Plugins] iPlayer plugin missing prorammes

2010-05-12 Thread Triode

Bug/feature at the BBC end - it does not appear in the xml feed the
plugin uses:
http://www.bbc.co.uk/radio/aod/availability/worldservice.xml


-- 
Triode

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

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


Re: [SlimDevices: Plugins] Meteo (Switzerland) plugin, (how) does it works ?

2010-05-12 Thread paf

Hello

I have tried to install the plugin (SBS 7.5.0 on Synology NAS with
SSODS 4.8, SB Touch).

I have copied the MHCPAN files into
/volume1/SSODS4/var/home/SqueezeboxServer/Plugins/MHCPAN.

When selecting EXTRAS/METEO/submenu on the SB Touch, nothing happens.

When doing the same with iPeng it answers: "[SERVER] Server returned
Error: request failed with error: Bad dispatch!"

I would be glad if somebody could help...

Thanks 

Patrick


-- 
paf

paf's Profile: http://forums.slimdevices.com/member.php?userid=37577
View this thread: http://forums.slimdevices.com/showthread.php?t=51119

___
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

2010-05-12 Thread kaja69

indifference_engine;545155 Wrote: 
> Hi,
> 
> I found this:
> http://www.hifi-remote.com/forums/dload.php?action=file&file_id=5407
> I'm not completely familiar with the format but it looks like the codes
> are the same as the RC-632M from the LIRC database.  Try Downloading the
> RC-632M lirc file and stick it in SqueezeIR\data on your controller
> using WinSCP.  Next you'll need to modify SqueezeIR\data\SqueezeIR.xml
> - start with something simple.  The code below will map the volume
> buttons of the controller to control the Onkyo and can be pasted over
> any existing contents.
> 
> Once all the files are in place, restart your controller, go to
> Settings>SqueezeIR and set 'default profile' to 'onkyo' then exit the
> settings screen.  You should now be able to control the volume of your
> amp!  Once you see how that works you can start doing fancy stuff like
> defining your own menus, controlling multiple devices, macros, auto
> profile selection etc...
> > 
Code:

  >   > 
  > 
  > 
  > 66
  > 
  > 
  > 
  > 
  > RC-232M.lirc 
  > Onkyo_RC-632M 
  > 
  > 
  > 
  > 
  > 
  >   
  > 
  > 
  > 
  > 
  > true
  > 
  > 
  > onkyo  
  > VOL+ 
  > 
  > 
  > 
  > 
  > true
  > 
  > 
  > onkyo  
  > VOL+ 
  > 
  > 
  > 
  > 
  > 
  > 
  > 
  > 
  > true
  > 
  > 
  > onkyo  
  > VOL- 
  > 
  > 
  > 
  > 
  > true
  > 
  > 
  > onkyo  
  > VOL- 
  > 
  > 
  > 
  > 
  > 
  > 
  > 
  > 
  > 
  > 
  > 

> > 

Thanks a lot for your help! I did as you wrote (also correcting
"RC-232M.lirc to "RC-632M.lirc") but it
doesn't work for me. I see Squeeze IR under Settings but when I click
it nothing happens. Also the hotkey (back+home) doesn't do anything.
Any input?


-- 
kaja69

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

2010-05-12 Thread kvn.inbox

indifference_engine;545798 Wrote: 
> 
> ... and fixed. v0.61 is available from the top of the thread.  Remember
> to backup your config before upgrading.

Thank you for fast update! But it's not fix for me..
my setup still not working..
Will try to capture IrDA codes from original remote..


-- 
kvn.inbox

kvn.inbox's Profile: http://forums.slimdevices.com/member.php?userid=37876
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: BBCiPlayer Plugin (UK only)

2010-05-12 Thread robt2379

Triode;544742 Wrote: 
> Which settings do you have set on the iplayer settings page - this is
> found on under advanced settings from the web interface.  You may want
> to try with "prefer wma" set.

Ive tried both selected and not but no difference.


-- 
robt2379

robt2379's Profile: http://forums.slimdevices.com/member.php?userid=38068
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

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


[SlimDevices: Plugins] iPlayer plugin missing prorammes

2010-05-12 Thread SuffolkPunch

At 07:07am on Mon 10th May, the plugin BBC iPlayer v 1.1.6 doesn't list
the following programme which is available to play again on the BBC web
site:

BBC World Service "The Interview" which played  at 7:32 am on Sun 9th
May.

Why is this?

My setup:

SB Server Version: 7.5.0 - r30464 @ Thu Apr 1 05:51:56 PDT 2010
Operating system: Windows 7 - EN - cp1252
Platform Architecture: 586
Perl Version: 5.10.0 - MSWin32-x86-multi-thread
MySQL Version: 5.0.22-community-nt

Martin


-- 
SuffolkPunch

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

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


Re: [SlimDevices: Plugins] Is it possible to execute linux commands from the Squeezebox?

2010-05-12 Thread aubuti

I should have thought of this before, but if you're mostly interested in
commands like shutdown, pm-suspend, or pm-hibernate, you should look at
the SrvrPowerControl plugin. It's a brilliant addition to SBS.


-- 
aubuti

aubuti's Profile: http://forums.slimdevices.com/member.php?userid=2074
View this thread: http://forums.slimdevices.com/showthread.php?t=78516

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread Triode

Byday will just create byday menus of the results - may do what you
want, but I am not sure


-- 
Triode

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

___
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

2010-05-12 Thread Sunnysekot

indifference_engine;545158 Wrote: 
> Glad you got it working and nice job with the xml!  I like the custom
> keycodes that you used.  ...
> PS: I hate to rain on your parade but there is a lirc file for the SB3
> which would have made life a bit easier for you although I'm not sure
> it is comprehensive:
> http://lirc.sourceforge.net/remotes/slim_devices/Squeezebox3

Well, well, I have suspected, there might be such a file, but didnt
really want to use it, for I was so proud of my csv-file I handmade, so
I was keen on converting it to the xml format. It simply felt good, when
it worked out! And wouldnt it be nice for all users, if you integrated
it into the SqueezeIR.xml? (okok, that was just for my ego ;) )

For the next versions:
- I like the idea of an "all" Action, but maybe you better call it
"both", might be easier understandable and more open for future
actions.
- I have a whish, but dont know if its easy or far out of reach:
when in the controller menu "other player" and selected another player,
I´d like to be able to use the Buttons Vol+,Vol-,play, pause, fwd,Prev
to control the selected player - but - by the original Logitech
WLAN-COMMANDs (not via Infrared). So I could make my kitchen-player
make also silent when sitting in the living room without direct
sight-contact). But maybe I should suggest this idea to logitech, not
to you?

ok, I have to go challenging my next windmill, the Teac SL-D900
RC-1023. (I have tried out all existing teac-lirc-files (nothing
worked), but as bluegaspode correctly said: many dragons may look the
same when a witch is in the game and here the witch is teac. But today
the witch sent me a code-table for the RC 1023 with Nec Codes, so maybe
there are also nice witches?


-- 
Sunnysekot

QNAP TS119 Version 3.2.6 build 0427T (1,2GHz,512MB)
SSOTS 4.8, Squeezecenter 7.5.1 r30720 , 3x Boom 2 x Classic 1 x Duett,
1 x Roku Soundbridge

Sunnysekot's Profile: http://forums.slimdevices.com/member.php?userid=20990
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] Is it possible to execute linux commands from the Squeezebox?

2010-05-12 Thread peterw

aubuti;545059 Wrote: 
> I should have thought of this before, but if you're mostly interested in
> commands like shutdown, pm-suspend, or pm-hibernate, you should look at
> the SrvrPowerControl plugin.

I had the same realization after my post. I think with SB3 / Boom /
Transporter, SrvrPowerControl even gives you the option of setting it
such that merely holding the Sleep button on the IR remote would shut
down your server -- though with power usage as low as the Sheevaplug,
I'm not sure why you'd want to. :-)


-- 
peterw

http://www.tux.org/~peterw/ 
Free plugins:  'AllQuiet'
(http://www.tux.org/~peterw/slim/AllQuiet.html) 'Auto Dim/AutoDisplay'
(http://www.tux.org/~peterw/slim/AutoDisplay.html) 'BlankSaver'
(http://www.tux.org/~peterw/slim/BlankSaver.html) 'ContextMenu'
(http://www.tux.org/~peterw/slim/ContextMenu.html) 'DenonSerial'
(http://www.tux.org/~peterw/slim/DenonSerial.html)
'FuzzyTime' (http://www.tux.org/~peterw/slim/FuzzyTime.html) 'KidsPlay'
(http://www.tux.org/~peterw/slim/KidsPlay.html) 'KitchenTimer'
(http://www.tux.org/~peterw/slim/KitchenTimer.html) 'PlayLog'
(http://www.tux.org/~peterw/slim/PlayLog.html)
'PowerCenter/BottleRocket'
(http://www.tux.org/~peterw/slim/PowerCenter.html) 'SaverSwitcher'
(http://www.tux.org/~peterw/slim/SaverSwitcher.html)
'SettingsManager'
(http://www.tux.org/~peterw/slim/SettingsManager.html) 'SleepFade'
(http://www.tux.org/~peterw/slim/SleepFade.html) 'StatusFirst'
(http://www.tux.org/~peterw/slim/StatusFirst.html) 'SyncOptions'
(http://www.tux.org/~peterw/slim/SyncOptions.html) 'VolumeLock'
(http://www.tux.org/~peterw/slim/VolumeLock.html)

peterw's Profile: http://forums.slimdevices.com/member.php?userid=2107
View this thread: http://forums.slimdevices.com/showthread.php?t=78516

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread Triode

garym999;544964 Wrote: 
> 
> seems to give me an instant listing to all the shows from Pete Tong but
> I cannot see how I refine the list further such that I can get a link
> that always takes me to his 2100 Friday show??
> 

Sorry I don't see an easy way to do that as there's nothing in the xml
feed which can be easily filtered on to say it is Friday...  You would
need to write an addtional perl parser to do this which looks at the
date field and converts it to the day of the week.


-- 
Triode

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

___
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

2010-05-12 Thread kaja69

I have a Duet and an Onkyo TX-SR805 receiver. Can anybody confirm that
they can get SqueezeIR to work with Onkyo?


-- 
kaja69

kaja69's Profile: http://forums.slimdevices.com/member.php?userid=27737
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] iPlayer plugin missing prorammes

2010-05-12 Thread SuffolkPunch

Thanks.  Where is your "Extra" plugin?

Martin


-- 
SuffolkPunch

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

___
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

2010-05-12 Thread indifference_engine

kvn.inbox;545518 Wrote: 
> Hi, I just downloaded new version of plugin (0.6), and it's work's on
> SBS7.6. 
That's good to know, I wasn't 100% certain that it would work on 7.6!
kvn.inbox;545518 Wrote: 
> I still can't enter the menu in Extras, but HARDKEYs VOL+|- are
> redefined, and i see IR blinking when KEYs pressed.
Unless you define a menu structure in the xml there isn't anything in
Extras>SqueezeIR so that's not a problem.  As you only wanted to
control the volume you don't need that feature.
kvn.inbox;545518 Wrote: 
> But now i have the trouble with my IR-codes..:) whey not work..:(
Did they work with a previous version of SqueezeIR?  I think I may have
borken the Pronto protocol (See Paden's post) so hold fire until I get a
good look at it tonight.  Are you still using the xml file that I posted
for you?  If you've modified it sinse can you post your version please?
kvn.inbox;545518 Wrote: 
> Now main question is: how to read hex-codes of AMP-remote on PC?You need an 
> ir receiver (usually on a serial port but some use the
parallel port, there may even be fancy USB ones if you shop araound). 
You can buy or make one, sometimes they come with TV cards.  Then you
need some software.  I suggest you look at the lirc project
(http://winlirc.sourceforge.net/ or http://www.lirc.org/  The files
that these projects generate can be used by SqueezeIR.


-- 
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] iPlayer plugin missing prorammes

2010-05-12 Thread SuffolkPunch

That works. Many thanks!


-- 
SuffolkPunch

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

___
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

2010-05-12 Thread indifference_engine

Sunnysekot;545705 Wrote: 
> Well, well, I have suspected, there might be such a file, but didnt
> really want to use it
mm, feel that warm glow of achievement! Of course, the older
versions didn't support lirc and, yes, I'll use your file as the sample
if you don't mind.
Sunnysekot;545705 Wrote: 
> I like the idea of an "all" Action, but maybe you better call it "both",
> might be easier understandable and more open for future actions.
meaybe even "PRESS|HOLD" ???
Sunnysekot;545705 Wrote: 
> I have a whish, but dont know if its easy or far out of reach:
> when in the controller menu "other player" and selected another player,
> I´d like to be able to use the Buttons Vol+,Vol-,play, pause, fwd,Prev
> to control the selected player - but - by the original Logitech
> WLAN-COMMANDs (not via Infrared). So I could make my kitchen-player
> make also silent when sitting in the living room without direct
> sight-contact). But maybe I should suggest this idea to logitech, not
> to you?
If I'm understanding you correctly then you can do this already!! If
you give your  the same ID as one of your players then
whenever you connect the controller to that player it is used.  BUT,
when you switch to another player the default profile is used. So, you
need two profiles one of which is empty, the other contains all your
juicy codes. In SqueezeIR>settings, set the empty one as the default
and check "use player profiles".  The xml will look like this:

Code:


  
   
   
  
  
  
  




Sunnysekot;545705 Wrote: 
> ok, I have to go challenging my next windmill, the Teac SL-D900 RC-1023.
> (I have tried out all existing teac-lirc-files (nothing worked), but as
> bluegaspode correctly said: many dragons may look the same when a witch
> is in the game and here the witch is teac. But today the witch sent me a
> code-table for the RC 1023 with Nec Codes, so maybe there are also nice
> witches?
> ... but well, she gave me a riddle to be solved: whats the device or
> subdevice code? I was provided with a data code for every command and a
> custom code 00FFh which is for all commands the same. Is this cusom code
> the device number or a necX addendum?
> Questions over questions again...
I have a TEAC MC-DX40 DAB that uses NEC codes, my homemade lirc file is
in the applet zip file, you could try that.  For your example, 00 would
be the device and FF (255) is the subdevice (or maybe vice-versa).  For
"true" NEC, the subdevice is simply 255-device but there are many
variants.  If your commands are also 2 bytes (4 hex chars) then just
use the first two (in decimal) with SqueezeIR as the last two would be
a checksum.


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


[SlimDevices: Plugins] Is it possible to execute linux commands from the Squeezebox?

2010-05-12 Thread DrewSB

Are there any plugins available that will execute a linux command on the
Squeezebox Server from the player's UI? For example, could I have an
option in my player's ui to restart my server, which would execute the
command
shutdown -r now
?
I am running 7.5.1 on a Sheevaplug.


-- 
DrewSB

DrewSB's Profile: http://forums.slimdevices.com/member.php?userid=26817
View this thread: http://forums.slimdevices.com/showthread.php?t=78516

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


Re: [SlimDevices: Plugins] iPlayer plugin missing prorammes

2010-05-12 Thread bpa

I think it should appear as a 3rd party plugin "BBC iPlayer Extras".

It is described here although now it should be part of main repository
so install instructions need to be updated.
http://forums.slimdevices.com/showpost.php?p=479606&postcount=72

The program only shows up under the World Service Schedule at the very
end under "Yesterday".  Under the A-Z menu it is missing as only The
"Interview" of 7th May shows up.


-- 
bpa

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

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


Re: [SlimDevices: Plugins] Connecting Squeezeplay to Remote Server

2010-05-12 Thread jameswendt

Is there any alternative?

Squeezeslave is not working for me and is beyond my technical
abilities.

Softsqueeze worked great but it crashed and got corrupted but since I
upgraded to 7.5, there is not way to get it back.  (I would normally
just re-download it from my Squeezebox server)

Anything that just works and allows me to play music on my laptop when
I am remote?

Jim


-- 
jameswendt

jameswendt's Profile: http://forums.slimdevices.com/member.php?userid=5318
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

___
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

2010-05-12 Thread jasell

bstromberg1;545064 Wrote: 
> @GoCubs
> 
> With weather.com's recent changes I see the program is having a tough
> time fetching the data.  I was wondering if you have ever tried
> wunderground?  I have a program I made out of php that grabs the
> weather from them and it works great.  Wunderground allows you to grab
> all the data via XML files so you don't have to worry about making the
> program look for the values through the web page's source code, you can
> just select what you want from the tags.
> 
> Take a look at this page:
> http://wiki.wunderground.com/index.php/API_-_XML
> 
> Hope this helps.  Feel free to send me a message if you need some help
> :)
> -Bstromberg1

There is another App using wunderground, however its not suitable to
display on a Boom, however it has language support for the forecasts
which I appreciate (living in Sweden and having two kids that don't
know english, yet). Wunderground has more local weather stations as
well (in Sweden anyway). So combining these two would be the best for
me.
The current wunderground support is kind of limited to a few data
points only, no forecast etc.


-- 
jasell

NAS: QNAP TS-209 II pro -fw 3.1 build 0708- (2x 1TB, RAID1)
Services: SC- 7.5.0-,  SSOTS- 4.8-
Squeezebox:  2x Duet (controller+reciever), 3x Boom, 2x SB3 Classic
Other:  1x iPhone w iPeng, 1x iPod Touch w iPeng, 1x Popcorn A-110

jasell's Profile: http://forums.slimdevices.com/member.php?userid=17817
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: BBCiPlayer Plugin (UK only)

2010-05-12 Thread Triode

garym999;544927 Wrote: 
> There a couple of stations that I regualy timeshift by using the listen
> again feature of the wonderful iPlayer (Thanks Triode!)
> 
> I'd like to save these as a favorite or preset but when I do this is
> saves the full link, which makes sense, but of course that link changes
> with the next edition of the show. Is there a way around this?

You probably can but its quite involved and requires edditing of the
menu.opml file which is part of the Iplayer plugin. You can add menu
entries which are the main listing for a channel filtered by some
criteria - for instance you will see the Radio4 FM listing is:

Code:


  http://www.bbc.co.uk/radio/aod/availability/radio4.xml?fm";
 
icon="http://www.bbc.co.uk/iplayer/img/radio/bbc_radio_four.gif";
 
parser="Plugins::BBCiPlayer::BBCXMLParser?byday&bykey&reversedays&reverse&filter:service=fm"
 />
  



Which is the full radio4 listing, filtered by service=fm, to exclude
all the LW programmes which the bbc usefully put in the same xml feed.

To create a menu for a specific program on within a specific channel
you could try:

Code:


  http://www.bbc.co.uk/radio/aod/availability/radio4.xml?today";
 
icon="http://www.bbc.co.uk/iplayer/img/radio/bbc_radio_four.gif";
 
parser="Plugins::BBCiPlayer::BBCXMLParser?filter:title=Today" />
  



Note the server caches the parsed list so if you are playing with this
then you need to empty Cache/FileCache each time.  Also note the param
on the end of the availability url is a dummy one to ensure this menu
is not cached in place of the main radio4 one.

Once you have a menu which does what you want you should be able to
turn this into a favorite from the web interface.  (not sure if this
still works)

The params on the end of the parser definition define how it parses the
list and you can have multiple ones separated by &  Other than
filter, they mainly describe which types of menus to build.  (you will
end up reading the perl code if you get to this point!)


-- 
Triode

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

___
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

2010-05-12 Thread indifference_engine

bluegaspode;545125 Wrote: 
> The installer in 7.5 doesn't support subdirectories in an applet if I
> remember correctly.
> I think this was fixed some time, but I don't know the exact version.
Ah, thanks for that.  It won't be hard to get a version that uses a
flat directory structure.  My concern then is that every time the
applet is re-installed it will zap the xml & lirc files.  There must be
a way to get the applet to download the files from your server (json???)
but I can't figure it out.  If I could then that would work pretty well
- create the xml on your server and leave it there. When the controller
restarts it could download the file from SBS and from there continue as
normal. No more SCP! I'll stick a post in the developers forum and see
what happens.


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

2010-05-12 Thread kaja69

I am not a tech expert and could use some input please. I can't get it
to work with my Onkyo TX-SR805 receiver. The remote is a RC-690M but I
can't seem to find the LIRC file. Can anybody confirm that Onkyo
remotes should work? Thanks in advance!


-- 
kaja69

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


[SlimDevices: Plugins] SlimNas for Squeezcenter 7.5.0

2010-05-12 Thread Default

Hi, 

does anyone have Squeezcenter 7.5.0 running on SlimNAS 2.0.1? Just
wanted to make sure this is compatible so I don't ruin my system. 

Max


-- 
Default

Default's Profile: http://forums.slimdevices.com/member.php?userid=16316
View this thread: http://forums.slimdevices.com/showthread.php?t=78591

___
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

2010-05-12 Thread GoCubs

madpatrick;545643 Wrote: 
> Greg,
> 
> On my SB Touch is noticed that "High" is misformed in "Hi H". Is this a
> weather.com or SDT bug.
> I'm using v5.9.0BETA3 with CustomClocks as a screensaver
I haven't seen that.  Where exactly are you seeing it?  Is it always
reproducible?  What weather identifier?

Thanks
-Greg


-- 
GoCubs

GoCubs's Profile: http://forums.slimdevices.com/member.php?userid=312
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: BBCiPlayer Plugin (UK only)

2010-05-12 Thread garym999

There a couple of stations that I regualy timeshift by using the listen
again feature of the wonderful iPlayer (Thanks Triode!)

I'd like to save these as a favorite or preset but when I do this is
saves the full link, which makes sense, but of course that link changes
with the next edition of the show. Is there a way around this?


-- 
garym999

garym999's Profile: http://forums.slimdevices.com/member.php?userid=4943
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-05-12 Thread Daverz

erland;544791 Wrote: 
> I it's possible, it would be great to get a server.log file where you
> have enabled "INFO" level debugging on "plugin.customscan" in SBS
> Settings/Advanced/Logging. 
> 
> Is there any other scanning module that's enabled to run after rescan
> than Custom Tag and Mixed Tag ?

No, just Custom and Mixed.  Trackstat is not installed.  I'm using SBS
7.6 with SQLITE now, which seems to be quite a bit faster than SBS
7.4/5 with older CustomScan versions.  If it's useful to you, I can
downgrade and test, but it does take a day or so to run.


-- 
Daverz

Daverz's Profile: http://forums.slimdevices.com/member.php?userid=32335
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread bstrulo

Triode;544121 Wrote: 
> I'd actually be interested in feedback on the live stream text.  Do
> people see this as worth having?  For classic players do you like it on
> the top line of the screen?  There is an option to put it on the lower
> line, how many people use that?

I like it: it's not a huge deal but it is occasionally useful and never
annoying.


-- 
bstrulo

bstrulo's Profile: http://forums.slimdevices.com/member.php?userid=15997
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

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


Re: [SlimDevices: Plugins] Announce: muso (beta)

2010-05-12 Thread jezbo

paltomare;543696 Wrote: 
> New beta released, good till July 2010.
> 
> Anyone else never get the confirmation email when attempting to join
> the klarita forum?

Join the forum with an email address that looks like a personal address
rather than one which will attack the site with spam, and it will be
accepted.


-- 
jezbo

jezbo's Profile: http://forums.slimdevices.com/member.php?userid=9888
View this thread: http://forums.slimdevices.com/showthread.php?t=57629

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread Triode

As its working you can changed the logging level back to error or warn
rather than debug, otherwise it will fill the disk up with debugging
messages.


-- 
Triode

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

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread Triode

robt2379;544729 Wrote: 
> 
> The iplayer live streams work fine and the listen again entries can be
> found, with the text and even the Album art is found but it tries to
> buffer for 10 seconds a couple of times, nothing happens and the
> message on the screen says stopped. Have changed settings, rebooted the
> NAS etc but no change.

Which settings do you have set on the iplayer settings page - this is
found on under advanced settings from the web interface.  You may want
to try with "prefer wma" set.


-- 
Triode

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

___
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

2010-05-12 Thread indifference_engine

Sunnysekot;545769 Wrote: 
> I want to use the funktion Extras->Other Players->Kitchen to turn down
> the volume of kitchen. But there are still the buttons of player (and
> profile)"living room" active (Problem 1) AND I would like to control
> Kitchen via WLAN-Commands (for player kitchen) (without changing player
> to kitchen!). This means, I´d need commands for sending predefined
> Logitech-WLAN-Commands. And this should depend not on which player is
> active, but which menupoint I am in on the SC. Well, even as I re-read
> this I see, that it sounds complicated...
Ah, I see now and that would be cool!
I don't think the controller can send any commands to a player that it
is not connected to so that is definately one for Logitech (or the
OtherPlayers applet developer). If it could then I would need some way
of temporarily disabling SqueezeIR while that (imaginary) facility is
being used which shouldn't be too hard.  If the ability to control a
player without connecting to it is ever added I'll be sure to make
SqueezeIR compatible with it - can't say fairer than that :)


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

2010-05-12 Thread Paden

Hi indifference_engine
Thanks for all your efforts in keeping this plugin up to date!
I've just installed v0.6 from v0.41 after upgrading to 7.5.0 & although
it appears to have installed correctly none of my Pronto commands now
work???
I replaced the existing .xml file in the newly installed version of
SqueezeIR with my file from the previous version, is there anything
else I should've done?

Cheers, Paul


-- 
Paden

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

2010-05-12 Thread indifference_engine

indifference_engine;545674 Wrote: 
> I may have broken something as there were a lot of "under the hood"
> tweaks and I can't fully test all of the protocols.  I'll have a look
> tonight and see what the problem is.  Hold your breath for 0.61 ;)
Confirmed: There is indeed a trivial-to-fix bug with the Pronto
converter that means it won't work.  I'll get it sorted tonight. 
Apologies for the inconveniance :o


-- 
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] Connecting Squeezeplay to Remote Server

2010-05-12 Thread jameswendt

Thank you for all of your help!

I downloaded Softsqueeze and got it to show up in Extras again. 
Awesome!  

I really appreciate it.

Boo to Slim Devices for making this as hard as it was.  Should be a
non-brainer.  Unless they want to discourage non-device streaming...

I'm a long-time Squeezer and plan on Squeezing for a long, long time.

Squeeze on!

Jim


-- 
jameswendt

jameswendt's Profile: http://forums.slimdevices.com/member.php?userid=5318
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

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


Re: [SlimDevices: Plugins] Connecting Squeezeplay to Remote Server

2010-05-12 Thread jameswendt

aubuti;545460 Wrote: 
> SoftSqueeze is, and always has been, software developed and contributed
> by the SB community. It has never been a Slim Devices or Logitech
> product. For a while it was available under Extras in the web ui, but
> then they took it off when changes to SqueezeCenter/Squeezebox Server
> made it incompatible with SoftSqueeze. Volunteer developers have now
> made the changes to SoftSqueeze to restore compatibility.
> 
> You can boo Slim Devices (which no longer exists) or Logitech for
> taking it off the Extras menu, but the reason is simple. SoftSqueeze is
> 3rd party software, like 3rd party plugins, for which Logitech's support
> is pretty much limited to making it available via the Extension
> Downloader. While they don't necessarily discourage software players,
> clearly hardware players is the place where they make their money. And
> really, how hard was it to download via the Extension Downloader?

You make a very good point, and you're right, it wasn't hard once I
knew where to go.  I think the Squeezebox is one of the best kept
secrets in the industry.  I've been a customer since 2006 and plan on
staying a customer for a long time.  I was frustrated (and a little
worried) that I lost my Softsqueeze but am glad that, with your help, I
was able to get it back.  

I wonder if Logitech would consider creating a more "retail" type
software player they could either sell or use to push ads for the
Squeezebox hardware?  

I'd love to see a Squeezebox in everybody's home.  This thing should be
like an iPod but it seems that very few people are as enlightened as you
and I.

Thank you.


-- 
jameswendt

jameswendt's Profile: http://forums.slimdevices.com/member.php?userid=5318
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

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


Re: [SlimDevices: Plugins] iPlayer listern again and Alarms

2010-05-12 Thread Triode

I'm not alarms will work with listen again anymore I am afraid.


-- 
Triode

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

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread robt2379

Hi all

This is my first post having just bought a Boom, its replaced a Pure
Evoke Flow and so far it is much better, I could never play my music
(flac) via the Flow. No comparison with sound quality either.

My only problem is listen again via the Iplayer plugin. I am running
the Squeezecentre software (version 7.4.2 I think) on my Synology CS407
NAS. Im using a wirless connection and some distance from the router but
no problems with dropouts etc.

The iplayer live streams work fine and the listen again entries can be
found, with the text and even the Album art is found but it tries to
buffer for 10 seconds a couple of times, nothing happens and the
message on the screen says stopped. Have changed settings, rebooted the
NAS etc but no change. Am I missing something obvious?

Rob


-- 
robt2379

robt2379's Profile: http://forums.slimdevices.com/member.php?userid=38068
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

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


Re: [SlimDevices: Plugins] Connecting Squeezeplay to Remote Server

2010-05-12 Thread aubuti

jameswendt;545464 Wrote: 
> I wonder if Logitech would consider creating a more "retail" type
> software player they could either sell or use to push ads for the
> Squeezebox hardware?  
I think that was the plan with SqueezePlay, and that was a sensible
plan, since it is basically a port of the software that runs the
hardware players themselves. That requires much less additional, or
tangential, development effort than something like SoftSqueeze. But
apparently even that is too much for the unit's strained development
resources, so they announced that they don't plan to make it
consumer-grade software. If it didn't happen with SP, I don't see it
happening with anything else real soon, unless a 3rd party does it.

Even though the software players are great tools for those who want to
try-before-buy, to some degree they do also canibalize hardware sales.
I would guess that on net SoftSqueeze generated more SB sales than it
replaced, but that's no more than a guess.

jameswendt;545464 Wrote: 
> ...it seems that very few people are as enlightened as you and I.
ain't it the truth  ;o)


-- 
aubuti

aubuti's Profile: http://forums.slimdevices.com/member.php?userid=2074
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

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


Re: [SlimDevices: Plugins] Connecting Squeezeplay to Remote Server

2010-05-12 Thread jameswendt

If I type in the IP address I used to use with softsqueeze and it
doesn't work.

Isn't there any way to go back to Softsqueeze?

Also, when I try squeezeplay from my office, the connection to
Mysqueezebox.com fails and I do not have access to any of the other
options in squeezeplay.

Jim


-- 
jameswendt

jameswendt's Profile: http://forums.slimdevices.com/member.php?userid=5318
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

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


Re: [SlimDevices: Plugins] Auto select stereo or multi-channel

2010-05-12 Thread Mr_Orange

A little bump.

Does everybody think this is a bad idea, not useful or just impossible?
Can't believe I'm the only one with this sort of setup!

Suggestion copied across from the other thread for ease of reference:

***
Background - I own 2 SB3s which are both connected via SPDIF. One to an
AV processor and the other to a stereo pre-amp with built-in DAC. I
always rip my multi-channel albums twice, once to stereo and once to
multi-ch, so that I can choose which I play depending on which system I
am using. This results in a duplication of the album in SBS and false
count of the number of albums I own.

Idea - Add a setting to the Player tab that allows you tell SBS how the
SB is connected to the amp. There would be 3 options, 1. analogue, 2.
digital - stereo DAC and 3. digital - multic-ch DAC. SBS would then
need to recognise a custom tag called, say "MultiCh" with a value of
"1" to differentiate the multi-channel version from the stereo version.
So long as all other tags are identical then SBS need only display the
album once when using the web interface and the overall album count
would not be affected and the scan would recognise the duplication and
understand the reason why there is duplication through the "MultiCh"
tag. The files could be named differently in the same folder or be in
different folders, it shouldn't matter.

In action - when I am browsing music on the SB3 connected to the stereo
DAC, I only see the stereo version of the album and vice-versa. I think
this would be a particular advantage when using synchronisation and
would prevent white noise being squirted out of ones speakers
accidentally.

I would love to go off and write a plug-in to implement this, but I'm
afraid I don't know my a**e from my elbow when it comes to
programming.

Does the above make sense and does it sound possible?

What do others think, would it a be a useful plug-in or addition to
SBS?

***


-- 
Mr_Orange

Mr_Orange's Profile: http://forums.slimdevices.com/member.php?userid=37785
View this thread: http://forums.slimdevices.com/showthread.php?t=78126

___
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

2010-05-12 Thread bluegaspode

indifference_engine;544992 Wrote: 
> I had a look at getting a repo for installation but I've not had much
> success so far.  I can get SqueezeIR to appear in the list of
> installable applets but when I select it the controller just creates
> the SqueezeIR folder without any of the files.  I'll continue trying
> though...

The installer in 7.5 doesn't support subdirectories in an applet if I
remember correctly.
I think this was fixed some time, but I don't know the exact version.


-- 
bluegaspode

1x SB-Controller+Receiver (Duet), 1xSB-Boom. 1xSB-Radio
Server (7.4.1) running on SheevaPlug (Ubuntu) with attached Western
Digital MyBook Essential.
Secondary 7.4 Server on Debianized Buffalo Linkstation LS-CHL.

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: New versions of erlands plugins

2010-05-12 Thread erland

Daverz;542799 Wrote: 
> I played around a bit with things.  The huge scan times seem to only
> occur if I use "Automatic rescan" or "Scan All".  If I do separate
> Custom Tag and Mixed Tag scans, the Custom Tag scan takes only a couple
> hours.  A Mixed Tag scan only takes 10 minutes or so in any case.  Maybe
> there's some kind of race condition going on?
> 
I it's possible, it would be great to get a server.log file where you
have enabled "INFO" level debugging on "plugin.customscan" in SBS
Settings/Advanced/Logging. 

Is there any other scanning module that's enabled to run after rescan
than Custom Tag and Mixed Tag ?


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

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


Re: [SlimDevices: Plugins] SlimNas for Squeezcenter 7.5.0

2010-05-12 Thread Default

thanks!


-- 
Default

Default's Profile: http://forums.slimdevices.com/member.php?userid=16316
View this thread: http://forums.slimdevices.com/showthread.php?t=78591

___
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

2010-05-12 Thread indifference_engine

So far I've got:
- SIRC12 protocol support for Sony devices.
- New "ALL" event that can be used instead of the "PRESS" and "HOLD"
events so that you don't have to duplicate large chunks of xml when
both events are identical.
- New  element at  level so that ir commands can be
fired when entering the profile's root menu.  All other SqueezeIR menus
can do this so why not the root?
- Repository install (maybe - could be tricky).
- Better documentation (maybe - I'm lazy!).

Open to suggestions (within reason) :)


-- 
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: Moose 0.73

2010-05-12 Thread tamanaco

While playing with the most recent SC 7.6 builds I experienced some
issues with foreign characters during the pre-caching artwork process
of the scanner. For some reason this does not affect the album
descriptions or Album Art in the SC Web UI, but it affects Moose. Using
7.6 all the tracks with names with foreign characters are now displayed
with weird characters in Moose 7.3a. This was not the case with earlier
builds. I started a thread about this issue in the Beta section of the
forum, but I have yet to get an answer. Does Moose gets its Album and
Track info using a different method than that used by the SC Web UI? If
so, why doesn't it use the same method?


-- 
tamanaco

tamanaco's Profile: http://forums.slimdevices.com/member.php?userid=4620
View this thread: http://forums.slimdevices.com/showthread.php?t=76700

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


Re: [SlimDevices: Plugins] Is it possible to execute linux commands from the Squeezebox?

2010-05-12 Thread peterw

Also search here for SqueezeCLIHandler, a plugin I just released in my
test repository a few days ago that would let you save playlists
containing commands. You'll probably want to apply my patch for bug
16188 to make it work well. And you'll need to figure out how to make
privileged commands like "shutdown" work, since SBS does not run as
root.


-- 
peterw

http://www.tux.org/~peterw/ 
Free plugins:  'AllQuiet'
(http://www.tux.org/~peterw/slim/AllQuiet.html) 'Auto Dim/AutoDisplay'
(http://www.tux.org/~peterw/slim/AutoDisplay.html) 'BlankSaver'
(http://www.tux.org/~peterw/slim/BlankSaver.html) 'ContextMenu'
(http://www.tux.org/~peterw/slim/ContextMenu.html) 'DenonSerial'
(http://www.tux.org/~peterw/slim/DenonSerial.html)
'FuzzyTime' (http://www.tux.org/~peterw/slim/FuzzyTime.html) 'KidsPlay'
(http://www.tux.org/~peterw/slim/KidsPlay.html) 'KitchenTimer'
(http://www.tux.org/~peterw/slim/KitchenTimer.html) 'PlayLog'
(http://www.tux.org/~peterw/slim/PlayLog.html)
'PowerCenter/BottleRocket'
(http://www.tux.org/~peterw/slim/PowerCenter.html) 'SaverSwitcher'
(http://www.tux.org/~peterw/slim/SaverSwitcher.html)
'SettingsManager'
(http://www.tux.org/~peterw/slim/SettingsManager.html) 'SleepFade'
(http://www.tux.org/~peterw/slim/SleepFade.html) 'StatusFirst'
(http://www.tux.org/~peterw/slim/StatusFirst.html) 'SyncOptions'
(http://www.tux.org/~peterw/slim/SyncOptions.html) 'VolumeLock'
(http://www.tux.org/~peterw/slim/VolumeLock.html)

peterw's Profile: http://forums.slimdevices.com/member.php?userid=2107
View this thread: http://forums.slimdevices.com/showthread.php?t=78516

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread robt2379

Triode;544849 Wrote: 
> As its working you can changed the logging level back to error or warn
> rather than debug, otherwise it will fill the disk up with debugging
> messages.

Thanks - will do

Rob


-- 
robt2379

robt2379's Profile: http://forums.slimdevices.com/member.php?userid=38068
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread Triode

robt2379;544759 Wrote: 
> Ive tried both selected and not but no difference.

Try the following:
1) make sure you have iplayer 1.1.6 (latest version)
2) select "mp3", but disable "prefer wma" and "aac"
3) on the settings, advanced, logging page set plugin.bbciplayer.rtmp
logging to debug

Try to play a listen again stream and post what appears in the server
log.  (you can see this from the url at the top of the logging page)


-- 
Triode

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

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


Re: [SlimDevices: Plugins] iPlayer plugin missing prorammes

2010-05-12 Thread bpa

I am outside UK so my comments have to take that into consideration as
BBC offers different menu / programs depending on whether PC is inside
or outside UK.

Seems to be a BBC menu problem - it is not in the feed which BBCiPlayer
uses ( http://www.bbc.co.uk/radio/aod/availability/worldservice.xml  )

With my "Extra" plugin which uses a different top level menu feed - the
program appears and can be played.


-- 
bpa

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

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


Re: [SlimDevices: Plugins] Official WebLogger Thread

2010-05-12 Thread Bixby

Danny,

Thanks for all your work on this. Do you know if Weblogger is
compatible with 7.5.x?


-- 
Bixby

Bixby's Profile: http://forums.slimdevices.com/member.php?userid=9411
View this thread: http://forums.slimdevices.com/showthread.php?t=61751

___
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

2010-05-12 Thread brucegrr

SDT has wunderground functionality already.  I have never used it but it
is available in the settings.


-- 
brucegrr

brucegrr's Profile: http://forums.slimdevices.com/member.php?userid=3964
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: SqueezeIR - A Generic Infra-Red Remote Control Applet for the Duet's SBC

2010-05-12 Thread Sunnysekot

indifference_engine;544655 Wrote: 
> can you zip it?  Try opening the xml file in your web browser, it may
> point you to any syntax errors, I know IE8 does.
1.
Well, thank you for this tips!
(I saw them as soon as I was ready with debugging)
Found about 13 hard to find bugs and they all had to to with unclosed
events or something likt that, only one real syntax-error.
But NOW: It works!!!
and I am really happy!
2.
Wow. Everything works and a new SqueezeIR-Version is out. I´ll try it,
when I am upgrading to SC 7.6 (as soon as thats announced to be stable.
Should bring more performance, shoudnt it?)
3.
As I didnt find any definitions for the Squeezebox (Classic or Boom) in
the supplied SqueezeIR.xml I can share mine here. Maybe someone else
wants to control the boxes also via Infrared? (Maybe all my work then
wasnt only for me, would make me happy  ;)

With best regards!


+---+
|Filename: IR-Squeeze-Boom-Classic.xml.txt  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=9893|
+---+

-- 
Sunnysekot

QNAP TS119 Version 3.2.6 build 0427T (1,2GHz,512MB)
SSOTS 4.8, Squeezecenter 7.5.1 r30720 , 3x Boom 2 x Classic 1 x Duett,
1 x Roku Soundbridge

Sunnysekot's Profile: http://forums.slimdevices.com/member.php?userid=20990
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: Custom Clock applet for Touch/Radio/Controller

2010-05-12 Thread madpatrick

Hello Erland,

Is it possible to sort the styles on device. Now there is a big list
with style s for 3 sort of devices (touch, controller and radio. Is it
possible to show only styles for the selected device from the section
"Music System".
i'm afraid when the list of styles grows it will be hard to get a good
overview, espacially when the syles are online stored.


-- 
madpatrick

-
Patrick

madpatrick's Profile: http://forums.slimdevices.com/member.php?userid=4929
View this thread: http://forums.slimdevices.com/showthread.php?t=68269

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


Re: [SlimDevices: Plugins] Auto select stereo or multi-channel

2010-05-12 Thread Kiwi

Yes, this is an issue for me also so I will be watching these threads
for any activity.


-- 
Kiwi

SB Receiver, 3 x SB Boom, SB Touch, SqueezeCommander running on Samsung
Moment Android device.

Kiwi's Profile: http://forums.slimdevices.com/member.php?userid=2169
View this thread: http://forums.slimdevices.com/showthread.php?t=78126

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


Re: [SlimDevices: Plugins] Announce: NPR Radio plugin

2010-05-12 Thread nhannidog

bpa,
Thanks so much for your NPR plug-in, it works fabulously!

How much time does it take to create such a thing?  100's of hours??


-- 
nhannidog

nhannidog's Profile: http://forums.slimdevices.com/member.php?userid=32950
View this thread: http://forums.slimdevices.com/showthread.php?t=51002

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-05-12 Thread dip

Erland, did you already find the reason for the bad performace on the
controller? 

And back to my first question: Will there be the same performance
problem on a Squeezbox Touch or will that work like the Classic?


-- 
dip

dip's Profile: http://forums.slimdevices.com/member.php?userid=902
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] SlimNas for Squeezcenter 7.5.0

2010-05-12 Thread mherger

Yes, this should work just fine.


-- 
mherger

Michael

-
http://www.herger.net/slim-plugins - AlbumReview, Biography,
MusicInfoSCR

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=78591

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


Re: [SlimDevices: Plugins] Keymappings of Squeezeplayer

2010-05-12 Thread erland

ebk71;543747 Wrote: 
> And you use it to control squeezeplay? Or a squeezebox?
> I just tested it: mce receiver responds but no activity on
> squeezeplay.
> HIP is not activated.
> 
I'm talking about real hardware Squeezebox'es, like a Squeezebox Touch
(based on the Squeezeplay software) or a Squeezebox Classic. 

If you are talking about controlling the desktop version of Squeezeplay
running on a computer it's a different scenario.


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

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread robt2379

Ive made those changes and guess what?

It now works perfectly! The stream starts playing in just a couple of
seconds. Have tried several streams from different channels over
several days and all work fine.

Thanks very much. Now my boom does everything I want it too.

Brilliant! 

Rob


-- 
robt2379

robt2379's Profile: http://forums.slimdevices.com/member.php?userid=38068
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

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


Re: [SlimDevices: Plugins] Announce: Custom Clock applet for Touch/Radio/Controller

2010-05-12 Thread erland

madpatrick;545644 Wrote: 
> Hello Erland,
> 
> Is it possible to sort the styles on device. Now there is a big list
> with style s for 3 sort of devices (touch, controller and radio. Is it
> possible to show only styles for the selected device from the section
> "Music System".
> i'm afraid when the list of styles grows it will be hard to get a good
> overview, espacially when the syles are online stored.
> 
Are you talking about the list in the Touch/Radio/Controller menus
Settings/Screen/Screensavers/Custom Clock Settings ?
Or are you talking about the list in the SBS web interface in Custom
Clock Helper ?

The style list on the devices should already be limited to the styles
supported on the particular device. The style list in Custom Clock
Helper contains styles for all type of devices.


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

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-05-12 Thread MillmoorRon

I've recently upgraded to 7.5.0 and noticed that the lastFM module of
Custom Scan does not appear to be working anymore.

If I do a manual scan the log has this:


Code:


  [10-05-11 21:18:00.8638] Plugins::CustomScan::Scanner::moduleRescan (741) 
Performing module rescan
  [10-05-11 21:18:00.8653] Plugins::CustomScan::Scanner::refreshData (1828) 
Refresh triggered by module: Custom Tag
  [10-05-11 21:18:00.8659] Plugins::CustomScan::Scanner::refreshData (1839) 
CustomScan: Synchronizing Custom Scan data, please wait...
  [10-05-11 21:18:00.8664] Plugins::CustomScan::Scanner::refreshData (1841) 
Starting to update musicbrainz id's in custom scan artist data based on names
  [10-05-11 21:18:01.3479] Plugins::CustomScan::Scanner::refreshData (1865) 
Finished updating musicbrainz id's in custom scan artist data based on names, 
updated 0 items : It took 0.481543 seconds
  [10-05-11 21:18:01.3515] Plugins::CustomScan::Scanner::refreshData (1871) 
Starting to update custom scan artist data based on musicbrainz ids
  [10-05-11 21:18:01.3602] Plugins::CustomScan::Scanner::refreshData (1894) 
Finished updating custom scan artist data based on musicbrainz ids, updated 0 
items : It took 0.008645 seconds
  [10-05-11 21:18:01.3605] Plugins::CustomScan::Scanner::refreshData (1901) 
Starting to update custom scan artist data based on names
  [10-05-11 21:18:01.6986] Plugins::CustomScan::Scanner::refreshData (1924) 
Finished updating custom scan artist data based on names, updated 0 items : It 
took 0.337966 seconds
  [10-05-11 21:18:01.6994] Plugins::CustomScan::Scanner::refreshData (1931) 
Starting to update musicbrainz id's in custom scan album data based on titles
  [10-05-11 21:18:01.7005] Plugins::CustomScan::Scanner::refreshData (1955) 
Finished updating musicbrainz id's in custom scan album data based on titles, 
updated 0 items : It took 0.000999 seconds
  [10-05-11 21:18:01.7008] Plugins::CustomScan::Scanner::refreshData (1961) 
Starting to update custom scan album data based on musicbrainz ids
  [10-05-11 21:18:01.7019] Plugins::CustomScan::Scanner::refreshData (1984) 
Finished updating custom scan album data based on musicbrainz ids, updated 0 
items : It took 0.000901 seconds
  [10-05-11 21:18:01.7021] Plugins::CustomScan::Scanner::refreshData (1990) 
Starting to update custom scan album data based on titles
  [10-05-11 21:18:01.7030] Plugins::CustomScan::Scanner::refreshData (2013) 
Finished updating custom scan album data based on titles, updated 0 items : It 
took 0.000692 seconds
  [10-05-11 21:18:01.7033] Plugins::CustomScan::Scanner::refreshData (2019) 
Starting to update musicbrainz id's in custom scan track data based on urls
  [10-05-11 21:18:01.8472] Plugins::CustomScan::Scanner::refreshData (2043) 
Finished updating musicbrainz id's in custom scan track data based on urls, 
updated 0 items : It took 0.143753 seconds
  [10-05-11 21:18:01.8478] Plugins::CustomScan::Scanner::refreshData (2049) 
Starting to update custom scan track data based on musicbrainz ids
  [10-05-11 21:18:01.8500] Plugins::CustomScan::Scanner::refreshData (2128) 
Finished updating custom scan track data based on musicbrainz ids, updated 0 
items : It took 0.002091 seconds
  [10-05-11 21:18:01.8503] Plugins::CustomScan::Scanner::refreshData (2134) 
Starting to update custom scan track data based on urls
  [10-05-11 21:18:01.9742] Plugins::CustomScan::Scanner::refreshData (2157) 
Finished updating custom scan track data based on urls, updated 0 items : It 
took 0.123747 seconds
  [10-05-11 21:18:01.9751] Plugins::CustomScan::Scanner::refreshData (2159) 
CustomScan: Synchronization finished
  [10-05-11 21:18:02.0456] Plugins::CustomScan::Scanner::initArtistScan (1077) 
Got 2953 artists
  [10-05-11 21:19:19.1829] Plugins::CustomScan::Scanner::exitScan (1009) Rescan 
finished of Plugins::CustomScan::Modules::LastFM
  



however, when I use the (latest) Custom Browse menu in the web
interface it says:

No matching songs, albums or artists were found

and an SQL playlist only returns songs by the SAME artist.

Has something changed in 7.5.0?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

___
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

2010-05-12 Thread indifference_engine

Sunnysekot;544424 Wrote: 
> Unfortunately I cant upload my xml because it exceeds the upload limit
> of 20kb.can you zip it?  Try opening the xml file in your web browser, it 
> may
point you to any syntax errors, I know IE8 does.


-- 
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: BBCiPlayer Plugin (UK only)

2010-05-12 Thread garym999

Thanks for the quick reply but my knowledge is limited so I'm just
running blind really. However using the code below...

http://www.bbc.co.uk/radio/aod/availability/radio1.xml";
icon="http://www.bbc.co.uk/iplayer/img/radio/bbc_radio_one.gif";
parser="Plugins::BBCiPlayer::BBCXMLParser?filter:Brand=Pete Tong" />

seems to give me an instant listing to all the shows from Pete Tong but
I cannot see how I refine the list further such that I can get a link
that always takes me to his 2100 Friday show??

Cheers Gary


-- 
garym999

garym999's Profile: http://forums.slimdevices.com/member.php?userid=4943
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

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


Re: [SlimDevices: Plugins] Is it possible to execute linux commands from the Squeezebox?

2010-05-12 Thread DrewSB

Thanks, svrpowercntl works for me. I really wanted to be able to restart
Squeezebox Server if I need to, and once in a while shutdown the whole
system if I need to unplug it. You are right about the low power draw
of the Sheevaplug. I am measuring it at 4 watts while playing from a
USB powered hard drive.


-- 
DrewSB

DrewSB's Profile: http://forums.slimdevices.com/member.php?userid=26817
View this thread: http://forums.slimdevices.com/showthread.php?t=78516

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


[SlimDevices: Plugins] Connecting Squeezeplay to Remote Server

2010-05-12 Thread jameswendt

Was using Softsqueeze to play music from my home Squeezebox server when
I traveled.

Softsqueeze is no longer available and I installed Squeezeplay last
night.

It works fine in my house where it can find the server, but what do I
do at remote locations?  I don't see anyplace where I can manually
enter a server URL or IP address.

Help!  Help!  Help!  I'm on the road again soon and don't want to be
without my tunes!  

Jim


-- 
jameswendt

jameswendt's Profile: http://forums.slimdevices.com/member.php?userid=5318
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

___
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

2010-05-12 Thread kvn.inbox

indifference_engine;545680 Wrote: 
> Did they work with a previous version of SqueezeIR?  
> 
Can't tell, because plugin v.0.5 not work with SBS7.6..and while I try
to run  it on SBS 7.6 you have done ver. 0.6..:)

indifference_engine;545680 Wrote: 
> I think I may have borken the Pronto protocol (See Paden's post) so hold
> fire until I get a good look at it tonight.  
Yes, I see..

indifference_engine;545680 Wrote: 
> Are you still using the xml file that I posted for you?  If you've
> modified it sinse can you post your version please?
>  I use your XML-file without modifications..

indifference_engine;545680 Wrote: 
> You need an ir receiver (usually on a serial port but some use the
> parallel port, there may even be fancy USB ones if you shop araound). 
> You can buy or make one, sometimes they come with TV cards.  Then you
> need some software.  I suggest you look at the lirc project
> (http://winlirc.sourceforge.net/ or http://www.lirc.org/  The files
> that these projects generate can be used by SqueezeIR.
Ok, Thanks, Will try!


-- 
kvn.inbox

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


[SlimDevices: Plugins] Strange behaviour of Radiotime on SBS 7.5

2010-05-12 Thread hellesangel

Something strange - on a server running openSUSE 11.1 I have installed
Squeezebox Server 7.5 and everything seems to be working fine except
Radiotime.  I have an account which has worked flawlessly for months
under 7.4.1 on a different server.  

On 7.5 when I try to select the Radiotime menu option it goes back to
showing me Albums.  This also happens with classical.com and other
plugins that aren't properly configured.  I've tried to figure out
what's wrong but am obviously missing something.

Can anyone explain why and help me fix it?


-- 
hellesangel

Two Squeezebox 3, firmware 130
Two Radios Firmware: 7.4.1-r7915
Squeezebox Server 7.4.1 - r28947, running on always on laptop running
openSUSE11.1
Squeezeslave-0.9-65-alsa on same PC as server.  All wired connections,
DHCP from IPCop, music library on file server with Linux software RAID5
disk array.

hellesangel's Profile: http://forums.slimdevices.com/member.php?userid=5658
View this thread: http://forums.slimdevices.com/showthread.php?t=78578

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2010-05-12 Thread bonze

Triode;544121 Wrote: 
> I'd actually be interested in feedback on the live stream text.  Do
> people see this as worth having?  For classic players do you like it on
> the top line of the screen?  There is an option to put it on the lower
> line, how many people use that?
Yes - it is worth having, although sometimes I do miss having the
'now/next' display.
Especially when channel-hopping it would be good to know the title of
the programme and possibly what's on next, rather than some text about
the current programme or the music now playing.

But I suppose a lot of it is dependent upon the data from the BBC.

I use the lower line option on a couple of classics.

Thanks.


-- 
bonze

TranquilPC T2-WHS-A3 - SqueezeCenter Version: 7.6.0 - r30726
3 x wireless SB3, 1x Receiver (eBay bound) and 2x Touch

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

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


Re: [SlimDevices: Plugins] Connecting Squeezeplay to Remote Server

2010-05-12 Thread usch

Settings > Advanced > Networking > Remote Libraries > Add New Library >
enter IP address.


-- 
usch

usch's Profile: http://forums.slimdevices.com/member.php?userid=33389
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

___
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

2010-05-12 Thread indifference_engine

SqueezeIR v0.6 is available from the first post in this thread.
One major change - it now works with SBS7.5 & SBS7.6
A number of smaller tweaks that aren't really worth mentioning.

I had a look at getting a repo for installation but I've not had much
success so far.  I can get SqueezeIR to appear in the list of
installable applets but when I select it the controller just creates
the SqueezeIR folder without any of the files.  I'll continue trying
though...


-- 
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] Connecting Squeezeplay to Remote Server

2010-05-12 Thread aubuti

just in case you haven't found it, here's the thread:
http://forums.slimdevices.com/showthread.php?t=62060
And to install SoftSqueeze, just use the Extension Downloader on the
plugins tab of the SBS Settings window (in the web ui). You have to
activate 3rd party plugins to get it to show.


-- 
aubuti

aubuti's Profile: http://forums.slimdevices.com/member.php?userid=2074
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

___
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

2010-05-12 Thread neilio

Hi there -

I'm running the latest release version of Squeezecenter with a
Squeezebox and SDT 5.18.5. I'm using a local weather wunderground.com
station (IONTARIO234) for the data.

Everything seems to work, except that the wind display is showing a ton
of decimal places, which pushes the time off of the right side of the
screen.

For example, the current wind conditions at the weather station noted
above shows as 5.1 km/hr, but on my squeezebox I see 5.140008885.

Would it be possible to only show 2 decimal places to fix this problem?


-- 
neilio

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

2010-05-12 Thread bstromberg1

@GoCubs

With weather.com's recent changes I see the program is having a tough
time fetching the data.  I was wondering if you have ever tried
wunderground?  I have a program I made out of php that grabs the
weather from them and it works great.  Wunderground allows you to grab
all the data via XML files so you don't have to worry about making the
program look for the values through the web page's source code, you can
just select what you want from the tags.

Take a look at this page:
http://wiki.wunderground.com/index.php/API_-_XML

Hope this helps.  Feel free to send me a message if you need some help
:)
-Bstromberg1


-- 
bstromberg1

bstromberg1's Profile: http://forums.slimdevices.com/member.php?userid=18367
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] Connecting Squeezeplay to Remote Server

2010-05-12 Thread aubuti

jameswendt;545355 Wrote: 
> Boo to Slim Devices for making this as hard as it was.  Should be a
> non-brainer.  Unless they want to discourage non-device streaming...
SoftSqueeze is, and always has been, software developed and contributed
by the SB community. It has never been a Slim Devices or Logitech
product. For a while it was available under Extras in the web ui, but
then they took it off when changes to SqueezeCenter/Squeezebox Server
made it incompatible with SoftSqueeze. Volunteer developers have now
made the changes to SoftSqueeze to restore compatibility.

You can boo Slim Devices (which no longer exists) or Logitech for
taking it off the Extras menu, but the reason is simple. SoftSqueeze is
3rd party software, like 3rd party plugins, for which Logitech's support
is pretty much limited to making it available via the Extension
Downloader. While they don't necessarily discourage software players,
clearly hardware players is the place where they make their money. And
really, how hard was it to download via the Extension Downloader?


-- 
aubuti

aubuti's Profile: http://forums.slimdevices.com/member.php?userid=2074
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

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


Re: [SlimDevices: Plugins] Official WebLogger Thread

2010-05-12 Thread danny6869

Yes...it does.  I'm running it on 7.5.0 now.

http://weblogger.regoroad.com for the latest.


-- 
danny6869

danny6869's Profile: http://forums.slimdevices.com/member.php?userid=942
View this thread: http://forums.slimdevices.com/showthread.php?t=61751

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


Re: [SlimDevices: Plugins] Is it possible to execute linux commands from the Squeezebox?

2010-05-12 Thread aubuti

Check out the Execute Script plugin. I used it a few years ago, but I
don't know if it is being actively maintained or not.


-- 
aubuti

aubuti's Profile: http://forums.slimdevices.com/member.php?userid=2074
View this thread: http://forums.slimdevices.com/showthread.php?t=78516

___
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

2010-05-12 Thread indifference_engine

Paden;545561 Wrote: 
> Hi indifference_engine
> Thanks for all your efforts in keeping this plugin up to date!
> I've just installed v0.6 from v0.41 after upgrading to 7.5.0 & although
> it appears to have installed correctly none of my Pronto commands now
> work???
> 
The xml format hasn't changed so it *should* work.  I may have broken
something as there were a lot of "under the hood" tweaks and I can't
fully test all of the protocols.  I'll have a look tonight and see what
the problem is.  Hold your breath for 0.61 ;)


-- 
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: BBCiPlayer Plugin (UK only)

2010-05-12 Thread garym999

That is kinda what I thought but how does the search organise by day?

http://www.bbc.co.uk/radio/aod/availability/radio1.xml";
icon="http://www.bbc.co.uk/iplayer/img/radio/bbc_radio_one.gif";
parser="Plugins::BBCiPlayer::BBCXMLParser?filter:Brand=Pete
Tong&byday&reversedays" />

Is that not another step I could use to narrow the search?


-- 
garym999

garym999's Profile: http://forums.slimdevices.com/member.php?userid=4943
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

___
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

2010-05-12 Thread indifference_engine

Sunnysekot;545133 Wrote: 
> 1.
> Well, thank you for this tips!
> (I saw them as soon as I was ready with debugging)
> Found about 13 hard to find bugs and they all had to to with unclosed
> events or something likt that, only one real syntax-error.
> But NOW: It works!!!
> and I am really happy!
> 2.
> Wow. Everything works and a new SqueezeIR-Version is out. I´ll try it,
> when I am upgrading to SC 7.6 (as soon as thats announced to be stable.
> Should bring more performance, shoudnt it?)
> 3.
> As I didnt find any definitions for the Squeezebox (Classic or Boom) in
> the supplied SqueezeIR.xml I can share mine here. Maybe someone else
> wants to control the boxes also via Infrared? (Maybe all my work then
> wasnt only for me, would make me happy  ;)
> 
> With best regards!
Glad you got it working and nice job with the xml!  I like the custom
keycodes that you used.  I must confess that I haven't tested SqueezeIR
on a 7.6 controller but I did test it with SqueezePlay7.6 so it should
be ok.  It definately works with 7.5.

SBS7.6 sounds like it will bring improvements to the controller
experience in general but probably won't have much effect on SqueezeIR.
Other than version compatibility the newest version of SqueezeIR
doesn't offer much new, most of the changes involved making the
internal workings more flexible to add the potential to support more
protocols.

PS: I hate to rain on your parade but there is a lirc file for the SB3
which would have made life a bit easier for you although I'm not sure
it is comprehensive:
http://lirc.sourceforge.net/remotes/slim_devices/Squeezebox3


-- 
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] SqueezeScrobbler: not scrobbling last.fm radio?

2010-05-12 Thread raboof

Looking at the code it looks like the plugin never scrobbled last.fm
radio data - perhaps last.fm used to do this server-side.

Created a patch to make it scrobble last.fm from the client:
https://sourceforge.net/tracker/index.php?func=detail&aid=2998147&group_id=105780&atid=642339


-- 
raboof

raboof's Profile: http://forums.slimdevices.com/member.php?userid=36822
View this thread: http://forums.slimdevices.com/showthread.php?t=78420

___
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

2010-05-12 Thread Sunnysekot

indifference_engine;545742 Wrote: 
> ... and, yes, I'll use your file as the sample if you don't mind.
that would make me really happy!

indifference_engine;545742 Wrote: 
> 
> meaybe even "PRESS|HOLD" ??? 
that is perfect understandable! (h.maybe a bit long? What about
PR+HLD? Advantage: I dont know where to find a "|" on my keyboard, but
everybody might find a "+" ?)

indifference_engine;545742 Wrote: 
> If I'm understanding you correctly then you can do this already!! If you
> give your  the same ID as one of your players then whenever you
> connect the controller to that player it is used.  BUT, when you switch
> to another player the default profile is used. So, you need two
> profiles one of which is empty, the other contains all your juicy
> codes. In SqueezeIR>settings, set the empty one as the default and
> check "use player profiles". 
well, I know how to match the profile ID with the player name and in
fact I am using this feature with joy! But maybe I didnt make myself so
clear, what I wanted to do: Suppose I am sitting in the living room, SC
in my hands. Profile "Living Room" is active. I can control my living
room player. Somebody wants to talk to me (yes! this really happens
sometimes ;) ). So I use SC to turn down the sound of "Living Room"
(with my wonderful profile it turns down volume of player and of Amp).
But I still cant talk to my counterpart because the player in the
kitchen ist also too loud. Now I dont want to change SC to player
kitchen (via Change Player->Kitchen)but I want to use the funktion
Extras->Other Players->Kitchen to turn down the volume of kitchen. But
there are still the buttons of player (and profile)"living room" active
(Problem 1) AND I would like to control Kitchen via WLAN-Commands (for
player kitchen) (without changing player to kitchen!). This means, I´d
need commands for sending predefined Logitech-WLAN-Commands. And this
should depend not on which player is active, but which menupoint I am
in on the SC. Well, even as I re-read this I see, that it sounds
complicated...

indifference_engine;545742 Wrote: 
> 
> I have a TEAC MC-DX40 DAB that uses NEC codes, my homemade lirc file is
> in the applet zip file, you could try that.  For your example, 00 would
> be the device and FF (255) is the subdevice (or maybe vice-versa).  For
> "true" NEC, the subdevice is simply 255-device but there are many
> variants.  If your commands are also 2 bytes (4 hex chars) then just
> use the first two (in decimal) with SqueezeIR as the last two would be
> a checksum.
Hey, thats great! Now I have two things, I can try! The thing with
device and subdevice is really helpful, and if this doesnt work I´ll
also check out your teac.lirc!
Cant wait to get home and try this, for I coded both versions (at my
workplace, what else might be pauses good for?) and its ready now!


-- 
Sunnysekot

QNAP TS119 Version 3.2.6 build 0427T (1,2GHz,512MB)
SSOTS 4.8, Squeezecenter 7.5.1 r30720 , 3x Boom 2 x Classic 1 x Duett,
1 x Roku Soundbridge

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

2010-05-12 Thread madpatrick

Greg,

On my SB Touch is noticed that "High" is misformed in "Hi H". Is this a
weather.com or SDT bug.
I'm using v5.9.0BETA3 with CustomClocks as a screensaver


-- 
madpatrick

-
Patrick

madpatrick's Profile: http://forums.slimdevices.com/member.php?userid=4929
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] Connecting Squeezeplay to Remote Server

2010-05-12 Thread aubuti

jameswendt;545298 Wrote: 
> Softsqueeze worked great but it crashed and got corrupted but since I
> upgraded to 7.5, there is not way to get it back.  (I would normally
> just re-download it from my Squeezebox server)
Find the SoftSqueeze thread in this forum and use the link there. It is
still being maintained by the SB community. It's probably labeled beta,
but last I heard it was working.


-- 
aubuti

aubuti's Profile: http://forums.slimdevices.com/member.php?userid=2074
View this thread: http://forums.slimdevices.com/showthread.php?t=78547

___
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

2010-05-12 Thread kvn.inbox

indifference_engine;545169 Wrote: 
> 

Hi, I just downloaded new version of plugin (0.6), and it's work's on
SBS7.6, but i still can't enter the menu in Extras, but HARDKEYs VOL+|-
are redefined, and i see IR blinking whet KEYs pressed.
But now i have the trouble with my IR-codes..:) whey not work..:(
Now main question is: how to read hex-codes of AMP-remote on PC?
Is any howto about it?


-- 
kvn.inbox

kvn.inbox's Profile: http://forums.slimdevices.com/member.php?userid=37876
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: Custom Clock applet for Touch/Radio/Controller

2010-05-12 Thread MeSue

Hi all,

I made a pretty simple custom Now Playing Screensaver which makes it
easy to read the time at a glance, but also shows track info--great for
in the bathroom and poolside, the 2 places where I use my radio most. 

It shows artist, album, song title, trackstat rating, and a honking big
clock. The background is the shaded album cover. Also shows play status
and battery status (with images borrowed from tcutting--thank you!).
Could not have done it without all the great examples everyone has
done!

I don't have a screen shot, but I'm attaching the configuration if
anyone wants it. When I have more time I'd like to do something
prettier for the rating icons, but for now it is just text asterisks.


+---+
|Filename: Big Clock (shaded cover) - radio.txt |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=9894|
+---+

-- 
MeSue

SUE

1 Duet | 2 Booms | 1 Radio | 1 Touch (beta) | 1 SB2 
HP MediaSmart EX470 | Squeezebox Server 7.4 | iPod Touch w/ iPeng
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=68269

___
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

2010-05-12 Thread indifference_engine

kaja69;545108 Wrote: 
> I am not a tech expert and could use some input please. I can't get it
> to work with my Onkyo TX-SR805 receiver. The remote is a RC-690M but I
> can't seem to find the LIRC file. Can anybody confirm that Onkyo
> remotes should work? Thanks in advance!
Hi,

I found this:
http://www.hifi-remote.com/forums/dload.php?action=file&file_id=5407
I'm not completely familiar with the format but it looks like the codes
are the same as the RC-632M from the LIRC database.  Download it and
stick it in SqueezeIR\data on your controller using WinSCP.  Next
you'll need to modify SqueezeIR\data\SqueezeIR.xml - start with
something simple.   The code below will map the volume buttons of the
controller to control the Onkyo.  Once you see how that works you can
start doing fancy stuff like defining your own menus, controlling
multiple devices, macros, auto profile selection etc...

Code:


  
  
  66
  
  
  
  
  RC-232M.lirc 
  Onkyo_RC-632M 
  
  
  
  
  

  
  
  
  
  true
  
  
  onkyo  
  VOL+ 
  
  
  
  
  true
  
  
  onkyo  
  VOL+ 
  
  
  
  
  
  
  
  
  true
  
  
  onkyo  
  VOL- 
  
  
  
  
  true
  
  
  onkyo  
  VOL- 
  
  
  
  
  
  
  
  
  
  
  



-- 
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: New versions of erlands plugins

2010-05-12 Thread erland

dip;544740 Wrote: 
> Erland, did you already find the reason for the bad performace on the
> controller? 
> 
I think I know what's causing it, I'm just not sure how to solve it
yet, haven't had the time to look at it yet.

dip;544740 Wrote: 
> 
> And back to my first question: Will there be the same performance
> problem on a Squeezbox Touch or will that work like the Classic?
> 
I suspect you will currently have the same problem on the Touch.


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

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