Re: [SlimDevices: Plugins] Using Ipeng on Iphone and Cannot Access SBS

2011-02-23 Thread pippin

Could you tell me the ip addresses of your iPhone
(Settigns->Network->WiFi->) and your server?


-- 
pippin

---
see iPeng, the Squeezebox iPhone remote and 
*New: iPeng for iPad*, at penguinlovesmusic.com

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

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


Re: [SlimDevices: Plugins] Using Ipeng on Iphone and Cannot Access SBS

2011-02-23 Thread Audiofile

I have enabled my wifi, but iPhone 3GS still does not recognize SBS.  I
plugged in the Ip address and same as before, "Your player was not
found."


-- 
Audiofile

Audiofile's Profile: http://forums.slimdevices.com/member.php?userid=42472
View this thread: http://forums.slimdevices.com/showthread.php?t=85865

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


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

2011-02-23 Thread Triode

VirusKiller;613285 Wrote: 
> Assuming the Boom is a "Classic" player, I guess it was the update to
> 7.5.3 that did it.  Are you planning a change to the plugin to support
> the new scrolling?
> 
> TIA.

Afraid it's the server/firmware which needs the update.

The new server version improves scrolling of one form of scrolling but
not the form used by the plugin.


-- 
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: Denon AVP Control Plugin

2011-02-23 Thread peterw

I don't know what features you need -- Chris' plugin is more advanced
than mine -- but if you can stand only having power and volume sync,
you might be able to use my DenonSerial for one amp and Chris' plugin
for the other [I'd probably switch to Chris' plugin but I'm too lazy to
add 1) my logic for respecting IR volume commands when my SB3 is "off"
and 2) integrating with my custom MusicInfoScr saver that displays the
volume in terms of the Denon's gain level]. DenonSerial should work
fine with two different amps with two different IP addresses, though I
haven't tested that. Myself, I just use it with a single amp that gets
an IP address only by virtue of software running on an HTPC connected
to its RS232 port.

Good luck.


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

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


[SlimDevices: Plugins] Windows Squeezebox Server: IO::Socket::SSL / Net::SSLeay (Soundcloud)

2011-02-23 Thread brucehappy

I'm working on a new soundcloud plugin that needs to use SSL.  I know
that the SimpleAsyncHTTP module will use other modules which eventually
check for the presence of IO::Socket::SSL and use it, if found.  I
dropped in a version of this module (from the old MLB game day plugin
distro), and its dependency NET::SSLeay with its dlls, etc, into my
plugin lib.  They are found and loaded up, but I end up getting an
error saying it cannot load the SSLeay.dll file (If i remove the dll I
get a different error, so I know its something to do with actually
loading the correctly located dll).  I then removed IO::Socket::SSL and
Net::SSLeay from my plugin and instead tried using LWP for https access.
This works fine.  This tells me that Crypt::SSLeay must be built into
the windows squeezebox server exe since LWP relies on it for SSL
support.  That module requires a SSLeay.dll of its own in order to
work.  My guess here is that those two modules (Crypt::SSLeay and
Net::SSLeay) cant be used at the same time because of those dlls.  I
cant find that dll on disk, so it must somehow be wrapped up inside the
exe.

You might say, ok then, so use LWP in your plugin.  WellI need to
do Async HTTP to keep things responsive.  I'm not sure if its related,
but it seems that the playlist play command wont handle a https url
either.  I could try using Parallel LWP UserAgents, etc, to try to do a
form of async, but I'd rather use the built in (AnyEvent based, it looks
like) event loop and async support.  I know that
http://bugs.slimdevices.com/show_bug.cgi?id=8084 exists to track
putting Net::SSLeay into the windows squeezebox server, but my problem
is that with the current server distro, it seems I cant even include my
own copy in my plugin to be used.  I'm left with using LWP for my web
service calls, and only support streaming urls can be accessed over
http.

Can one of the developers help me out on this?  Perhaps give me some
pointers on getting Net::SSLeay working inside the windows squeezebox
server, or recreate my problem, etc.  Anything that could help me get
async https working using the existing networking libraries.

I'd really appreciate the help.

bruce


-- 
brucehappy

brucehappy's Profile: http://forums.slimdevices.com/member.php?userid=42030
View this thread: http://forums.slimdevices.com/showthread.php?t=85885

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


Re: [SlimDevices: Plugins] SqueezeIR Support Thread

2011-02-23 Thread indifference_engine


A poll associated with this post was created, to vote and see the
results, please visit http://forums.slimdevices.com/showthread.php?t=79524

Question: Are you interested in IR-over-IP?

- Yes, I'd like to have IRoIP.
- No, I don't care.


eversonl;613246 Wrote: 
> Hi,
> I am trying to control an LG 6710CDAK14D Remote for an LG AMP.
> I have used the lirc from here
> http://lirc.sourceforge.net/remotes/lg/6710CDAL01G
> and the volume keys work a treat but the hex for the power is not
> working I have worked through a few of the other lirc files changing
> the hex for power but with no joy so far.  
> Any ideas you have woudl be very much appreciated as I have got so
> close.
> 
> Cheers
> Lee
Just an intial thought with no evidence to back it up whatsoever but
I'm wondering if the '>>>' etc in the lirc file are causing some
problems with SqueezeIR.  Try renaming those buttons in the lirc file
(and in your xml if you're using them) and see what happens.  I assume
your xml is fine and you get status 3 (Success) when you load your
config?  If you look at the Controller's screen closely it shimmers
slightly when IR codes are actually being transmitted - does it do this
for power? If you post your xml I could do some debugging to make sure
everything is ok but it may just be that you've not found the right
code yet.


-- 
indifference_engine

2xReceiver, 2xController, 1xSB3, 2xSqueezeSlave, SBS 7.5.3
Inventor of SqueezeIR applet for the Controller

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

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


Re: [SlimDevices: Plugins] Nominations for Recommended 3rd Party Plugins

2011-02-23 Thread erland

trautigan;613373 Wrote: 
> Maybe you could apply some logic to this decision?. 
> 
> For example, see what plugins experience the most issues over a
> nominated period of time and dedicate some resource to a rewrite rather
> than constant bug fixing or a new plugin?
> 
> I reckon if you did such an analysis that the Spotify plugin thread for
> Duet/Classic and Squeezebox would be ahead of the field...
> 
I'm not sure I understand what you are trying to say but if you like a
discussion regarding this, you should probably start a separate thread,
this is not the thread for this kind of discussions, this is just a
nomination thread where people vote on the plugins they like to
recommend to other users.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))

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

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


Re: [SlimDevices: Plugins] Nominations for Recommended 3rd Party Plugins

2011-02-23 Thread trautigan

Maybe you could apply some logic to this decision?. 

For example, see what plugins experience the most issues over a
nominated period of time and dedicate some resource to a rewrite rather
than constant bug fixing or a new plugin?

I reckon if you did such an analysis that the Spotify plugin thread for
Duet/Classic and Squeezebox would be ahead of the field...


-- 
trautigan

trautigan's Profile: http://forums.slimdevices.com/member.php?userid=17162
View this thread: http://forums.slimdevices.com/showthread.php?t=56928

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


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

2011-02-23 Thread trautigan

Spotify failed, couldn't access playlists, error message
as in the log quotes below.

when I looked the spotifyd process had stopped (not only can you not
see it in Windows, but in the plugin settings it shows Helper App: not
running). So I started it again (if you change the helper app logging
option and then apply change, as part of that it restarts the spotifyd
process). 
Now it seems to be running ok.

Why on earth did it stop? I've checked all the usual suspects like
atmospheric pressure, wind direction, and planetary confluences. All
ok.

same problem with Server versions 7.5.2 and 7.5.3, here is the log.
spotify plugin version 1.3.0, Win 7 etc...

11-02-23 17:16:20.5294] Plugins::Spotify::ProtocolHandler::__ANON__
(167) error fetching track data: Connect timed out: Bad file
descriptor
[11-02-23 17:16:20.5331] Plugins::Spotify::ProtocolHandler::__ANON__
(167) error fetching track data: Connect timed out: Bad file
descriptor
[11-02-23 17:16:20.5

(however these log entries are a description of the symptom not the
cause)

Wouldn't it be nice if the code was written so that an automatic
restart of the helper app was done when this situation arose? just on
the off chance that it had fallen over for some reason.


NB you also get this kind of error if Spotify is running somewhere
else. It seems you can have many Spotify's running through your
Logitech kit, but if you run it direct on your PC, at worst the plugin
will stop, at best it will skip a track. One to watch out for.


-- 
trautigan

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

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


Re: [SlimDevices: Plugins] Announce: Whitebear updated version

2011-02-23 Thread vagskal

MrC;613361 Wrote: 
> Ok, looks like that didn't help.
> 
> You have far more tracks than I, so may have hit some other issues
> w/either piece of software.  AndrewFG and the JRMCs developers are in
> communication.
> 
> On an aside, as I've been playing with this and working with AndrewFG. 
> In the two modes that one can control SBs:
> 
> a) stream files from JRMCs library to SBs via DLNA zones; 
> b) alternate JRMC library whose content is imported into JRMC and
> served entirely from Whitebear/SC
> 
> The (a) method currently shows no meta-data on SBs but is
> immediate/fast, and the (b) method shows meta-data but has some startup
> overhead, esp. for JRMC users who want JRMC to be the master for tagging
> audio files.

It is the (b) method I am trying to achieve. The music files in the MC
library are on one hard drive and the files in the SBS library are on
another hard drive (and one drive is regularily backed up to the
other). I do not want to DLNA stream my music files to the squeezeboxes
but rather use MC, with its abilities to search etc., to push the music
files in the SBS library to the squeezebozes, like I can do with muso
or Moose.


-- 
vagskal

2 x SB3 (wired), Receiver (wired), Boom (wireless), Controller, iPeng on
iPhone 4 & iPad, muso on remote computer running Win 7 64-bit | 7.5.4 on
Win XP

vagskal's Profile: http://forums.slimdevices.com/member.php?userid=20778
View this thread: http://forums.slimdevices.com/showthread.php?t=82399

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


Re: [SlimDevices: Plugins] Announce: Whitebear updated version

2011-02-23 Thread MrC

vagskal;613359 Wrote: 
> Thanks for the reply.
> 
> I switched on the option DNLA Server (share your media with other DLNA
> devices) but the result is the same.
> 
> It seems as if SBS is choking at the request to load the library.
> Playback stops as if the squeezeboxes lost contact with SBS.

Ok, looks like that didn't help.

You have far more tracks than I, so may have hit some other issues
w/either piece of software.  AndrewFG and the JRMCs developers are in
communication.

On an aside, as I've been playing with this and working with AndrewFG. 
In the two modes that one can control SBs:

a) stream files from JRMCs library to SBs via DLNA zones; 
b) alternate JRMC library whose content is imported into JRMC and
served entirely from Whitebear/SC

The (a) method currently shows no meta-data on SBs but is
immediate/fast, and the (b) method shows meta-data but has some startup
overhead, esp. for JRMC users who want JRMC to be the master for tagging
audio files.


-- 
MrC

MrC's Profile: http://forums.slimdevices.com/member.php?userid=468
View this thread: http://forums.slimdevices.com/showthread.php?t=82399

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


Re: [SlimDevices: Plugins] Announce: Whitebear updated version

2011-02-23 Thread vagskal

MrC;613330 Wrote: 
> 
> I've found in this mode, the DLNA server needs to be enabled as well.

Thanks for the reply.

I switched on the option DNLA Server (share your media with other DLNA
devices) but the result is the same.

It seems as if SBS is choking at the request to load the library.
Playback stops as if the squeezeboxes lost contact with SBS.


-- 
vagskal

2 x SB3 (wired), Receiver (wired), Boom (wireless), Controller, iPeng on
iPhone 4 & iPad, muso on remote computer running Win 7 64-bit | 7.5.4 on
Win XP

vagskal's Profile: http://forums.slimdevices.com/member.php?userid=20778
View this thread: http://forums.slimdevices.com/showthread.php?t=82399

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


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

2011-02-23 Thread trautigan

trautigan;613241 Wrote: 
> ..have you tried the latest version 1.3.1?
> 
> -How on earth can that help??-

it's ok, I've found this thread
http://forums.slimdevices.com/showthread.php?p=613349#post613349
which seems to indicate that it's a problem with 7.5.3 - so posted this
just in case it helps anyone else. 

[the answer is go back to 7.5.2, or give Sonos a call]


-- 
trautigan

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

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


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

2011-02-23 Thread trautigan

dennis013;613281 Wrote: 
> Yes thank you. I will try to do some more.
> This is very advanced stuff for installing a plugin. I doubt many users
> will be able to do this.

Check out the number of replies on this thread which has only been
going since last July and draw your own conclusions...


-- 
trautigan

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

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


Re: [SlimDevices: Plugins] Announce: Whitebear updated version

2011-02-23 Thread MrC

vagskal,

I've found in this mode, the DLNA server needs to be enabled as well.


-- 
MrC

MrC's Profile: http://forums.slimdevices.com/member.php?userid=468
View this thread: http://forums.slimdevices.com/showthread.php?t=82399

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


Re: [SlimDevices: Plugins] Announce: Denon AVP Control Plugin

2011-02-23 Thread doubrown

I also tried downgrading the SqueezeBox Server from the 7.6 beta to 7.5
with no difference.


-- 
doubrown

doubrown's Profile: http://forums.slimdevices.com/member.php?userid=21417
View this thread: http://forums.slimdevices.com/showthread.php?t=60114

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


Re: [SlimDevices: Plugins] Announce: Whitebear updated version

2011-02-23 Thread vagskal

I did not realise that I could use Whitebear to "push" music with J
River Media Center (MC) to my squeezeboxes and I wanted to try that
out.

I installed Whitebear on the Win XP machine running SBS 7.5.4 and on a
Win 7 64-bit machine on the same local network running MC 16 beta I
enabled DLNA.

In MC my 4 physical squeezeboxes showed up (but not the iPad where I am
running iPeng with playback enabled) as well as my SBS library (and for
some strange reason the computer name and user for the machine running
MC). But when I in MC try to "load" the SBS library I get an error
message. I have +118k songs in my SBS library.

Any ideas? Am I missing something obvious here?


+---+
|Filename: Magical Snap - 2011.02.23 15.18 - 003.jpg|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=11423|
+---+

-- 
vagskal

2 x SB3 (wired), Receiver (wired), Boom (wireless), Controller, iPeng on
iPhone 4 & iPad, muso on remote computer running Win 7 64-bit | 7.5.4 on
Win XP

vagskal's Profile: http://forums.slimdevices.com/member.php?userid=20778
View this thread: http://forums.slimdevices.com/showthread.php?t=82399

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


Re: [SlimDevices: Plugins] Beginnings of a Windows Phone 7 app - quick question

2011-02-23 Thread 7Illusions

Screenshots


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

-- 
7Illusions

7Illusions's Profile: http://forums.slimdevices.com/member.php?userid=44332
View this thread: http://forums.slimdevices.com/showthread.php?t=83330

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


Re: [SlimDevices: Plugins] iPeng support thread

2011-02-23 Thread Jeff Flowerday

Rick B.;613280 Wrote: 
> Right now i have iPeng for iPod and plan to get an iPad in the future. I
> understand that I can get an iPad in either a "wifi" or "3g" version.
> Does the 3g version have any longer range - meaning, will it connect to
> my wireless router from a further distance away than the wifi model?
> 
> Trying to get a solid connection when I'm outside in the back yard.
> 
> Thanks,

It's wifi or wifi/3g.  Both have wifi.  3G is cellular capable.   It
works anywhere you can get 3G cellular service.


-- 
Jeff Flowerday

Jeff Flowerday's Profile: http://forums.slimdevices.com/member.php?userid=15883
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] iPeng support thread

2011-02-23 Thread garym

Rick B.;613280 Wrote: 
> Right now i have iPeng for iPod and plan to get an iPad in the future. I
> understand that I can get an iPad in either a "wifi" or "3g" version.
> Does the 3g version have any longer range - meaning, will it connect to
> my wireless router from a further distance away than the wifi model?
> 
> Trying to get a solid connection when I'm outside in the back yard.
> 
> Thanks,

no, the 3g doesn't improve on the WIFI performance. Two separate
things. And with the 3G you'll have to sign up and pay the $30 (or $25,
I forget) monthly charge to ATT or Verizon. But of course with 3G you
can connect to the internet when you are NOT around an available WIFI
network.


-- 
garym

garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


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

2011-02-23 Thread VirusKiller

Triode;613177 Wrote: 
> On which player?

VirusKiller;613054 Wrote: 
> on both my Booms

Triode;613177 Wrote: 
> If this is for live text on classic players then it is a known feature
> as the new smooth scrolling in 7.5.3 does not support the scrolling
> method used by iplayer. Assuming the Boom is a "Classic" player, I guess it 
> was the update to
7.5.3 that did it.  Are you planning a change to the plugin to support
the new scrolling?

TIA.


-- 
VirusKiller

VirusKiller's Profile: http://forums.slimdevices.com/member.php?userid=19799
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: Spotify Premium Plugin (Beta)

2011-02-23 Thread dennis013

trautigan;613238 Wrote: 
> I've had loads of problems with AV software and this plugin (which
> includes firewalls). Ended up adding the whole folder
> (c:\ProgramData\Squeezebox\cache\InstalledPlugins\Plugins\Spotify to my
> 'allow this to do anything' rule, although it's actually the
> libspotify.dll which was identified as a possible Trojan. There should
> be a sticky posting about this somewhere, as it causes loads of
> problems for people attempting to use this plugin.
> 
> the other point to remember is that some AV software is
> memory-resident. So you can actually disable active protection, but
> there will still be a blocking program in memory that only goes when
> you reboot.

Yes thank you. I will try to do some more.
This is very advanced stuff for installing a plugin. I doubt many users
will be able to do this.


-- 
dennis013

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

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


Re: [SlimDevices: Plugins] iPeng support thread

2011-02-23 Thread Rick B.

Right now i have iPeng for iPod and plan to get an iPad in the future. I
understand that I can get an iPad in either a "wifi" or "3g" version.
Does the 3g version have any longer range - meaning, will it connect to
my wireless router from a further distance away than the wifi model?

Trying to get a solid connection when I'm outside in the back yard.

Thanks,


-- 
Rick B.

Rick B.'s Profile: http://forums.slimdevices.com/member.php?userid=8973
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] Slimnas + Freenas Problems

2011-02-23 Thread smckay

The USB drive with Freenas installed is 1gb but the swap and
squeezeserver files were sat on a 120gb HDD share.

I am going to try again this evening with the USB drive and a SWAP on
the HDD.


-- 
smckay

smckay's Profile: http://forums.slimdevices.com/member.php?userid=44114
View this thread: http://forums.slimdevices.com/showthread.php?t=85705

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


Re: [SlimDevices: Plugins] Beginnings of a Windows Phone 7 app - quick question

2011-02-23 Thread 7Illusions

The website is still not created, lack of time, but screenshots can be
found at www.wp7applist.com. Just search for squeeze remote. Will
upload screenshots here in a few hours.


-- 
7Illusions

7Illusions's Profile: http://forums.slimdevices.com/member.php?userid=44332
View this thread: http://forums.slimdevices.com/showthread.php?t=83330

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


Re: [SlimDevices: Plugins] SqueezeIR Support Thread

2011-02-23 Thread eversonl


A poll associated with this post was created, to vote and see the
results, please visit http://forums.slimdevices.com/showthread.php?t=79524

Question: Are you interested in IR-over-IP?

- Yes, I'd like to have IRoIP.
- No, I don't care.


Hi,
I am trying to control an LG 6710CDAK14D Remote for an LG AMP.
I have used the lirc from here
http://lirc.sourceforge.net/remotes/lg/6710CDAL01G
and the volume keys work a treat but the hex for the power is not
working I have worked through a few of the other lirc files changing
the hex for power but with no joy so far.  
Any ideas you have woudl be very much appreciated as I have got so
close.

Cheers
Lee


-- 
eversonl

eversonl's Profile: http://forums.slimdevices.com/member.php?userid=44317
View this thread: http://forums.slimdevices.com/showthread.php?t=79524

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


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

2011-02-23 Thread trautigan

trautigan;612962 Wrote: 
> So, is this an HTTP Error 341? 
> Anyway, it would be great if there was a problem with Spotify access
> that the plugin handed back to the SB server in an elegant way, rather
> than somehow dropping the connection to the requesting client.
> 
> Or is that an unreasonable wish?

..have you tried the latest version 1.3.1?

-How on earth can that help??-


-- 
trautigan

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

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


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

2011-02-23 Thread trautigan

trautigan;613091 Wrote: 
> I've reduced the stream to 160 - I'll post back if that helps.

Chaing the stream quality setting to 'Normal Quality 160k' seems to
have cured this.

Thanks for your help, Trautigan.

Oh, that's ok - have you had a chance to look at my other problem? 

Not yet, I'm a bit er buysy..


-- 
trautigan

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

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


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

2011-02-23 Thread trautigan

dennis013;613234 Wrote: 
> Thanks, that's an excellent suggestion! And the right one i think.
> I've disabled the windows firewall and then it did work, but i don't
> know how to make a rule for the spotifyfyd.exe.
> 
> I've found the exe file in the
> 'C:\ProgramData\Squeezebox\Cache\InstalledPlugins\Plugins\Spotify\Bin\MSWin32-x86-multi-thread'
> folder and i've added it in the windows firewall screen under the inboud
> rules and action = allow. 
> 
> But now it doesnt work yet. Can you give a suggestion please? Thanks!

I've had loads of problems with AV software and this plugin (which
includes firewalls). Ended up adding the whole folder
(c:\ProgramData\Squeezebox\cache\InstalledPlugins\Plugins\Spotify to my
'allow this to do anything' rule, although it's actually the
libspotify.dll which was identified as a possible Trojan. There should
be a stick posting about this somewhere, as it causes loads of problems
for people attempting to use this plugin.

the other point to remember is that some AV software is
memory-resident. So you can actually disable active protection, but
there will still be a blocking program in memory that only goes when
you reboot.


-- 
trautigan

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

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


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

2011-02-23 Thread dennis013

Triode;613173 Wrote: 
> This is likely to be a firewall problem - check that the helper app
> spotifyd.exe is allowed to receive incoming connections

Thanks, that's an excellent suggestion! And the right one i think.
I've disabled the windows firewall and then it did work, but i don't
know how to make a rule for the spotifyfyd.exe.

I've found the exe file in the
'C:\ProgramData\Squeezebox\Cache\InstalledPlugins\Plugins\Spotify\Bin\MSWin32-x86-multi-thread'
folder and i've added it in the windows firewall screen under the inboud
rules and action = allow. 

But now it doesnt work yet. Can you give a suggestion please? Thanks!


-- 
dennis013

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

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


Re: [SlimDevices: Plugins] Beginnings of a Windows Phone 7 app - quick question

2011-02-23 Thread Michael Herger
> Hi! I've actually developed an Squeezebox Controller App for WP7,
> Squeeze Remote.

Do you have a web site or screenshots? Tried to find it on  
http://marketplace.windowsphone.com/ but didn't succeed to find anything  
(I don't have a WP7 device, just curious).

-- 

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


Re: [SlimDevices: Plugins] Slimnas + Freenas Problems

2011-02-23 Thread Michael Herger
> Do you think it was free space on the USB drive or the Swap size that
> meant it worked straight away on a 120gb hdd?

This could very well be the case. But then it depends on the size of your  
USB drive.

-- 

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