[SlimDevices: Plugins] Re: AlienBBC Live Streaming Stops

2006-12-16 Thread netim3

Thanks, got it working now. The mistake I was making was on which
executabl to copy into /usr/local/bin. I wasn't drilling deep enough
down into the package.

In case anyone has the same issues, I eventually found the right file
in:

/Applications/Mplayer
OSX.app/Contents/Resources/External_Binaries/mplayer_intel.app/Contents/MacOs/

If you're not using an Intel-Mac, the penultimate directory should be
mplayer_ppc.app


-- 
netim3

netim3's Profile: http://forums.slimdevices.com/member.php?userid=219
View this thread: http://forums.slimdevices.com/showthread.php?t=29511

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


[SlimDevices: Plugins] Re: LastFM not working

2006-12-16 Thread James

I'm not aware of any problems with SS6.5.1 and the latest version of the
LastFM plugin. Can you get any errors from the log?

Re the search, do you mean the Similar Artists Radio search found at
http://www.last.fm/listen/ ? 

You can't do that directly from the plugin (although I meant to add
this one day), but you can copy the address that the search returns
into the plugin and play it that way. 

James


-- 
James

James's Profile: http://forums.slimdevices.com/member.php?userid=189
View this thread: http://forums.slimdevices.com/showthread.php?t=30514

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


[SlimDevices: Plugins] SS bug? / Fishbone Pop3 bug?

2006-12-16 Thread rbl

I am getting the following error message when trying to load the SS web
interface: Starting Slimerver Failed. Please see the Event Viewer and
Contact Support with a big red cross on the left hand side. 

Seems in particular to happen after using the Fishbone POP3 EMail
plugin. The SB3 keeps on working via the remote, I just can't access
the web interface. I have to stop and restart SS to get it going again.
I can find the following in the Event Viewer.

Source: application
Category: None
Type: Error
Event ID: 0

The description for Event ID ( 0 ) in Source ( Application ) cannot be
found. The local computer may not have the necessary registry
information or message DLL files to display messages from a remote
computer. You may be able to use the /AUXSOURCE= flag to retrieve this
description; see Help and Support for details. The following
information is part of the event: Can't locate object method
screen2updateOK via package Slim::Display::Squeezebox2 at
C:\Program Files\SlimServer1\server/Slim/Display/Squeezebox2.pm line
404.



I am running SS 6.5.1-10980 although this has happened with earlier
builds too.


-- 
rbl

rbl's Profile: http://forums.slimdevices.com/member.php?userid=4517
View this thread: http://forums.slimdevices.com/showthread.php?t=30657

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


[SlimDevices: Plugins] Re: title format building using MusicInfoSCR

2006-12-16 Thread schiegl

Michael Herger;159321 Wrote: 
 
 
  - BITRATE shows bit/s (no surprise ;-), any way to so some
 calculations
  to get kbps? e.g. BITRATE/1024 does not work...
 
 
 128000/1024 won't give you the expected 128kbps :-). I'll see what I
 can  
 do.
 

I just was in the mood and did (tried) it myself.
I do not know if this is the right way doing this, at least it works
and gives you another placeholder called KBPS (usable in format tags).
Do whatever you wish with this code :-)


Code:


  --- MusicInfoSCR/Info.pm.org2006-10-09 11:03:38.0 +0200
  +++ MusicInfoSCR/Info.pm2006-12-16 16:30:27.0 +0100
  @@ -329,6 +329,15 @@
  return $songduration;
  }
  
  +subgetBitrate {
  +   my $song = shift;
  +
  +   my $bitrate = Slim::Music::Info::getBitrate($song);
  +   my $kbps = int($bitrate / 1000);
  +
  +   return $kbps;
  +}
  +
  sub buttonIcons {
  my ($client, $position, $line) = @_;
  
  




Code:


  --- MusicInfoSCR/Plugin.pm.org  2006-10-27 16:29:48.0 +0200
  +++ MusicInfoSCR/Plugin.pm  2006-12-16 16:21:37.0 +0100
  @@ -94,6 +94,8 @@
  Slim::Web::Setup::addPlayerChild('PLUGIN_SCREENSAVER_MUSICINFO');
  
  Slim::Music::TitleFormatter::addFormat('SONGTIME', 
\Plugins::MusicInfoSCR::Info::getSongTime);
  +
  +   Slim::Music::TitleFormatter::addFormat('KBPS', 
\Plugins::MusicInfoSCR::Info::getBitrate);
  }
  
  sub shutdownPlugin {
  




Code:


  --- MusicInfoSCR/Setup.pm.org   2006-10-27 16:30:14.0 +0200
  +++ MusicInfoSCR/Setup.pm   2006-12-16 16:15:35.0 +0100
  @@ -513,6 +513,7 @@
  $formatStrings{'PLAYTIME'} = 'PLAYTIME';
  $formatStrings{'PLAYTIME_PROGRESS'} = 'PLAYTIME_PROGRESS';
  $formatStrings{'SONGTIME'} = 'SONGTIME';
  +   $formatStrings{'KBPS'} = 'KBPS';
  $formatStrings{'PLAYTIME / SONGTIME'} = 'PLAYTIME / SONGTIME';
  $formatStrings{'PLAYLIST'} = 'PLAYLIST';
  $formatStrings{'PLAYLIST (X_OF_Y)'} = 'PLAYLIST (X_OF_Y)';
  



-- 
schiegl

schiegl's Profile: http://forums.slimdevices.com/member.php?userid=6654
View this thread: http://forums.slimdevices.com/showthread.php?t=30254

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


Re: [SlimDevices: Plugins] Re: title format building using MusicInfoSCR

2006-12-16 Thread Michael Herger

I just was in the mood and did (tried) it myself.
I do not know if this is the right way doing this, at least it works
and gives you another placeholder called KBPS (usable in format tags).


Excellent! That's exactly the way to do it.


Do whatever you wish with this code


I'll integrate it with the plugin :-). Thank you very much!

--

Michael

-
http://www.herger.net/SlimCD - your SlimServer on a CD
http://www.herger.net/slim - AlbumReview, Biography, MusicInfoSCR
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: title format building using MusicInfoSCR

2006-12-16 Thread schiegl

Michael Herger;162836 Wrote: 
  I just was in the mood and did (tried) it myself.
  Do whatever you wish with this code
 
 I'll integrate it with the plugin :-). Thank you very much!
 

I have to thank you, as extending your plugin was not difficult. One
(more) advantage of open source software - even more if it's perl based
and therefore has no need for extra compiler, ide,...


-- 
schiegl

schiegl's Profile: http://forums.slimdevices.com/member.php?userid=6654
View this thread: http://forums.slimdevices.com/showthread.php?t=30254

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


[SlimDevices: Plugins] Bottlerocket.pm (existing) problem

2006-12-16 Thread ericj

Has anyone had luck with the Bottlerocket pluging.  I have configured
the user setting, and despite not being a perl programmer, figure out
what it sends out to the /dev/tty...
When I put this out to the command line, the x10 box reacts, but
nothing happens when I use 1.4 of the plugin...

I am running Ubuntu Dapper, and Slim 6.5.1...

Any suggestions about debugging switches that might be helpful?

Is this compatible with 6.5?

Thanks in advance


-- 
ericj

ericj's Profile: http://forums.slimdevices.com/member.php?userid=3230
View this thread: http://forums.slimdevices.com/showthread.php?t=30665

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


[SlimDevices: Plugins] audioscrobbler problems

2006-12-16 Thread simong

my sb3 has stopped scrobbling tracks. 

I had had a problem not being able to connect to my wireless network -
managed to sort this out through turning everything (router, sb, mac)
off and restarting - also re-entering the WEP key... got the box
working again but nothing submitting. Any ideas?

Thanks

ps have tried turning the plugin off and then on again


-- 
simong

simong's Profile: http://forums.slimdevices.com/member.php?userid=8178
View this thread: http://forums.slimdevices.com/showthread.php?t=30666

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


[SlimDevices: Plugins] Re: audioscrobbler problems

2006-12-16 Thread James

Simon, 
to see what's going on you need to enable the d_plugins debugging (in
Server Settings-Debugging) and then check the log
(http://localhost:9000/log.txt) after playing a song or two.

James


-- 
James

James's Profile: http://forums.slimdevices.com/member.php?userid=189
View this thread: http://forums.slimdevices.com/showthread.php?t=30666

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


Re: [SlimDevices: Plugins] SS bug? / Fishbone Pop3 bug?

2006-12-16 Thread kdf


On 16-Dec-06, at 6:41 AM, rbl wrote:



I am getting the following error message when trying to load the SS web
interface: Starting Slimerver Failed. Please see the Event Viewer and
Contact Support with a big red cross on the left hand side.

Seems in particular to happen after using the Fishbone POP3 EMail
plugin. The SB3 keeps on working via the remote, I just can't access
the web interface.


rather unusual.  If the server is crashing, which the error message and 
event viewer seem to indicate, then there is nothing to keep the SB 
working aside from network setup options.


Does the problem coincide with the timing you have set for the email 
check?


otherwise, it looks like some sort of confusion over the display type.  
Have you been playing with the style options of SS along the way?


-kdf

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


[SlimDevices: Plugins] Re: SS bug? / Fishbone Pop3 bug?

2006-12-16 Thread rbl

I have never touched the style settings in SS. It seems to happen after
an email has been seen coming in. Looking at the windows event viewer
again (the last email a few minutes ago just triggered the same
problem) there are no error/warning events for several hours. Seems odd
that it tells me to look in the event viewer and there is nothing new
there?! 

If I stop SS and restart then everything starts working again, not
surprisingly.


-- 
rbl

rbl's Profile: http://forums.slimdevices.com/member.php?userid=4517
View this thread: http://forums.slimdevices.com/showthread.php?t=30657

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


[SlimDevices: Plugins] Re: SS bug? / Fishbone Pop3 bug?

2006-12-16 Thread Triode

screen2updateOK should exist for all display types - it is defined in
Slim/Display/Display.pm.  It would be worth checking you have all the
upto date files (perhaps remove the Slim directory and reinstall)


-- 
Triode

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

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


[SlimDevices: Plugins] Re: Announce: Moose 0.50

2006-12-16 Thread jeffmeh

Will Moose 5.0 find the cover art in FLAC 1.1.3 picture tags?

At the moment I'm running SlimServer 6.3.1 on a ReadyNAS, and I had
Moose load the library from SQLite.  The cover art shows up on the
Library and Tree tabs, but not on Cover Chooser or Covers.  I'm
assuming that this is because the cover art is not in the FLAC 1.1.2
tags.  Is this correct, or is there a way to make this work with FLAC
1.1.2?

Thank you Dr. Lovegrove.


-- 
jeffmeh

jeffmeh's Profile: http://forums.slimdevices.com/member.php?userid=3986
View this thread: http://forums.slimdevices.com/showthread.php?t=30547

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


[SlimDevices: Plugins] we sell ps3, qtec, i-mate jasjam, palm treo, xbox360

2006-12-16 Thread selfone

Company Name - Q10 COMPUTING LIMITED
Registered No.03400021
Address:1ST FLOOR, 20A THE BOROUGH, HINCKLEY, LEICESTERSHIRE, LE10
1NL.
Type:Private Limited with share capital
Incorporation Date:08-07-1997
Phone-+447011132408

(ATTENTION BUYERS )
...

(Q 10 company limited )is very vast and well known in the area of
TELECOMMUNICATION.they sell whole sale and retailer prices of the
stated products.

MOBILE PHONES,LAPTOPS,PLASMA TV,GAMES E.G
IPOD,XBOXS,PLAYSTATION,SIDEKICKS,IMATES JASJAM,PALM
TREOS,QTECK,NINTENDO WII,DEGITAL CAMERALS.LGS,E.T.C

WE stock as much posible products you are willing to buy.here we
displayed some of our price list.

(NOKIA PHONES)
Nokia N95...$500
NOKIA N GAGE.$120USD
NOKIA 9500.(communication) us$120
Brand new Nokia n71   140usd
Brand new Nokia n92   150usd
Brand new Nokia n93   190usd
Brand new Nokia 6280  140 USD
Brand new Nokia 6270  140 USD
Brand new Nokia 6111  150 USD
Brand new Nokia 6060  105 USD
Brand new Nokia N91 155 USD
Brand new Nokia N90  170 USD
Brand new Nokia N70 160 USD
Brand new Nokia 1600  100 USD



O2 3G Datacard $120usd
Orange Blackberry $110usd
Orange 3GDatacard$110usd
Orange SPVC500   $110usd
Orange SPV M2000  $114usd

(PANASONIC)

Panasonic X60 $120usd
Panasonic X60 $120usd
Panasonic X70 $124usd
Panasonic X300$114usd
Panasonic X700$132usd

(SONY ERICSSON)

Sony ericsson  T616 850/1900 --US$125
SONY ERICSSON R520m(UNLOCK)-- US$89
SONY CMD-Z5-- US$89
SONY ERICSSON R380 World-- US$89
SONY ERICSSON R380s-- US$69
SONY ERICSSON T68m-- ---US$79
SONY ERICSSON T610- US$109
SONY CMD-MZ5-- ---US$109
SONY ERICSSON P800(UNLOCK)-- US$105
SONY ERICSSON P900(UNLOCK)---US$108
SONY ERICSSON P980i(UNLOCK)---US$115

NEXTEL I860 AT JUST   $100
NEXTEL I930 AT JUST   $130

(PLAYSTATION)

Play Station 2 ...$110usd
Play Station 3 ...$700usd
NINTENDO WII ...$100USD


(samsung)

Brand new Samsung D600140 USD
Brand new Samsung D500 130 USD
Brand new SamsungP860 130 USD
Brand new Samsung P850 145 USD
Brand new Samsung E730 130 USD
Brand new Samsung D550  130 USD
Brand new Samsung D510  135 USD
Brand new Samsung E850  120 USD
Brand new Samsung D710  135 USD

(Motorola)

Brand new Motorola A910  150 USD
Brand new Motorola A728  140 USD
Brand new Motorola A732  135 USD
Brand new Motorola Q  120 USD
Brand new Motorola E895  120 USD
Brand new Motorola V3x  130 USD
Brand new Motorola V8  120 USD
Brand new Motorola V6  120 USD
Brand new Motorola A1010  100 USD
Brand new Motorola E1060  90 USD
Brand new Motorola V1050  90 USD
Motorola Motorola a388c... 150usd


(IMATE JASJAR PHONES)

I-MATE Smartflip ... $140
I-MATE JAMin . $240
I-MATE JASJAm  $280
I-MATE K-JAM . $180
I-MATE SP5 . $150
I-MATE SP5m . $155
I-MATE SP4m . $120
I-MATE JAM Black  $150
I-MATE JAM . $160
I-MATE PDA2 . $190
I-MATE PDA2k . $168
I-MATE SP3i . $130
I-MATE SP3 . $135
I-MATE Pocket PC . $140
I-MATE Smartphone2  $110
I-MATE Smartphone  $115


(LAPTOPS)

LAPTOPS:
IBM Thinkpad T42 1.7GHz 512MB 40GB CD-RW/DVD 15 XGA ;;$400
IBM ThinkPad X41 Tablet PC 1.5GHz 1.5GB 60GB Bluetooth;;;$500
IBM Thinkpad T43 1.86GHz 2GB 60GB DVD Burner 14.1 SXG
SONY VAIO A217S-- 100GB-- 512MB RAM-- XPHOME-$500
SONY VAIO B1VP-- 40GB HD-- 512MB RAM-- XP PRO--$430
SONY VAIO T370P/L-- 60GB HD-- 512MB RAM-- XP$400
SONY VAIO A215Z 60GB HD-- 512MB RAM-- XP--$320

(QTEK PHONE)

Qtek 8500 ... $100
Qtek S200 ... $140
Qtek 9000 ... $190
Qtek 8310 ... $150
Qtek 8300 ... $140
Qtek 9100 ... $190
Qtek 8100 ... $100
Qtek S110 ... $120
Qtek S100 ... $130
Qtek 9090 ... $140
Qtek 8020 ... $132
Qtek 8010 ... $100
Qtek 2020i .. $160
Qtek 2020 ... $160
Qtek 1010 ... $100


(sidekick)

sidekick 1.$80usd
side kick 11$100usd
SIDE-KICK T-Mobile Sidekick II Cell Phone$100
T-Mobile Sidekick II$80
Sidekick II T-Mobile with Color Screen...$120
T-Mobile Sidekick II TMO to Go Prepaid Phone...$110
T-Mobile Sidekick II Phone (T-Mobile)..$100
T-Mobile Sidekick II T-Mobile Replacement Phone...$110
T-Mobile Sidekick - Data Only Product Features..$90
T-Mobile SideKick II.$100
Mobile Sidekick II$100
Mobile Sidekick III$150



(These games are brandnew sealed in original Box.)
apple 80 gb ..ipod...$200
apple 4 gb ipod mini blue m9802ll/a---$64
apple 4 gb ipod mini pinkm9804ll/a$64
apple 4 gb ipod mini green m9806ll/a$64
apple 6 gb ipod mini blue m9803ll/a-$68
apple 6 gb ipod mini silver 

[SlimDevices: Plugins] Re: Audioscrobbler Tag Submitting?

2006-12-16 Thread alter_sack

Since yesterday afternoon it doesn't work again:

Scrobbler: ===handleTagSubmit()
Scrobbler: Requesting TAG POST on URL:
http://ws.audioscrobbler.com/1.0/rw/xmlrpc.php;
Scrobbler: Posting data: 
?xml version=1.0
encoding=UTF-8?methodCallmethodNametagTrack/methodNameparamsparamvaluestringalter_sack/string/value/paramparamvaluestring9fc37b4fdee1575b8c91d0661594d9f2/string/value/paramparamvaluestring1de386e541b3ca18abd7f589b4646cc2/string/value/paramparamvaluestringKing
Creosote/string/value/paramparamvaluestringYou Are, Could I
/string/value/paramparamvaluearraydatavaluestringRock/string/value/datadatavaluestringMale
vocal/string/value/datadatavaluestringBest of
2006/string/value/datadatavaluestring4 stars
album/string/value/datadatavaluestring2006/string/value/datadatavaluestringSolo/string/value/data/array/value/paramparamvaluestringset/string/value/param/params/methodCall
Scrobbler: Session status for alter_sack:
Scrobbler:   Pending submissions / Max :  0 / 1
Scrobbler:   Background Submit Status: 0
Scrobbler:   Interval Countdown remaining / elapsed / original :
0.989253 / 0.010814 / 1
Scrobbler: ==handleTagSubmitResponse()
Scrobbler: Response From Tagging Request:?xml version=1.0
encoding=UTF-8?
methodResponse
params
param
valuestruct
membernamefaultCode/name
valuestring1/string/value
/member
membernamefaultString/name
valuestringTrack not recognised/string/value
/member
/struct/value
/param
/params
/methodResponse
Prevent Standby plugin: client Squeezebox in playmode play
Prevent Standby plugin: setting thread execution state
Prevent Standby plugin: starting timer


-- 
alter_sack

Squeezebox 3 - Via Epia EN15000 - SlimServer 6.5.1  - CEC DA 53 - Denon
PMA 2000AE - Tannoy D500
www.last.fm/user/alter_sack/

alter_sack's Profile: http://forums.slimdevices.com/member.php?userid=5491
View this thread: http://forums.slimdevices.com/showthread.php?t=30127

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