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

2012-03-10 Thread donald24

Ah, I got you now! 
Libspotify API 10.1.16.g7a6bc7ea Release win32
Spotify Plugin: 2.2.2

Here's the server log with both spotify entries set to debugging
level:

Playing back two different radio-genres, the last one ending up in
playing back :  ELTON JOHN!

Thank you very much for looking

Code:


  [12-03-10 20:10:52.8416] Slim::Web::JSONRPC::requestMethod (443) request not 
dispatchable!
  [12-03-11 08:18:05.9381] Slim::Plugin::MusicMagic::Common::__ANON__ (75) 
Failed fetching filters from MusicIP
  [12-03-11 08:21:28.9161] Plugins::Spotify::Radio::cliRequest (101) spotify 
radio genre mode, genre: 32768
  [12-03-11 08:21:28.9165] Plugins::Spotify::Radio::_playRadio (243) fetching 
radio tracks from spotifyd
  [12-03-11 08:21:28.9168] Plugins::Spotify::Radio::_fetchTracks (493) fetching 
tracks from spotifyd: 
[]hxxp://192.168.0.23:9005/radio.json?s=1900&e=2020&g=32768[]
  [12-03-11 08:21:29.2247] Plugins::Spotify::Radio::__ANON__ (515) got 30 
tracks, pending tracks now 30
  [12-03-11 08:21:29.2256] Plugins::Spotify::Radio::_playRadio (229) loading 10 
tracks, pending tracks: 20
  [12-03-11 08:21:29.2295] Plugins::Spotify::ProtocolHandler::canDirectStream 
(254) Playing via spotifyd: spotify:track:1Z94b7SicXx8tytyKUtUow
  [12-03-11 08:21:29.2311] 
Plugins::Spotify::ProtocolHandlerSpotifyd::prefetchNext (116) scheduling 
prefetch of next track: spotify:track:7KKx4INB8LyGUeNXKiqQHK in 171
  [12-03-11 08:21:29.2347] Plugins::Spotify::Radio::commandCallback (542) 
[playlist loadtracks] slave source: spotifyradio
  [12-03-11 08:21:29.9725] Slim::Networking::Async::DNS::resolve (81) Using 
cached DNS response 195.24.232.208 for post2.audioscrobbler.com
  [12-03-11 08:21:29.9740] Plugins::Spotify::Radio::commandCallback (542) 
[playlist newsong] slave source: 
  [12-03-11 08:21:29.9744] Plugins::Spotify::Radio::commandCallback (567) 
playlist changed - checking whether to add or remove tracks
  [12-03-11 08:21:30.9919] Slim::Networking::Async::DNS::resolve (81) Using 
cached DNS response 195.24.233.57 for post.audioscrobbler.com
  [12-03-11 08:21:38.7891] Plugins::Spotify::Radio::cliRequest (101) spotify 
radio genre mode, genre: 65536
  [12-03-11 08:21:38.7896] Plugins::Spotify::Radio::_playRadio (243) fetching 
radio tracks from spotifyd
  [12-03-11 08:21:38.7899] Plugins::Spotify::Radio::_fetchTracks (493) fetching 
tracks from spotifyd: 
[]hxxp://192.168.0.23:9005/radio.json?s=1900&e=2020&g=65536[]
  [12-03-11 08:21:39.0890] Plugins::Spotify::Radio::__ANON__ (515) got 30 
tracks, pending tracks now 30
  [12-03-11 08:21:39.0900] Plugins::Spotify::Radio::_playRadio (229) loading 10 
tracks, pending tracks: 20
  [12-03-11 08:21:39.0949] Plugins::Spotify::ProtocolHandler::canDirectStream 
(254) Playing via spotifyd: spotify:track:2utpcuRHHNADztQlIK7LN3
  [12-03-11 08:21:39.0970] 
Plugins::Spotify::ProtocolHandlerSpotifyd::prefetchNext (116) scheduling 
prefetch of next track: spotify:track:2FkoRMUT7JFBrYzEt1LGlF in 344
  [12-03-11 08:21:39.1012] Plugins::Spotify::Radio::commandCallback (542) 
[playlist loadtracks] slave source: spotifyradio
  [12-03-11 08:21:40.0869] Slim::Networking::Async::DNS::resolve (81) Using 
cached DNS response 195.24.233.57 for post.audioscrobbler.com
  [12-03-11 08:21:40.0881] Plugins::Spotify::Radio::commandCallback (542) 
[playlist newsong] slave source: 
  [12-03-11 08:21:40.0884] Plugins::Spotify::Radio::commandCallback (567) 
playlist changed - checking whether to add or remove tracks
  [12-03-11 08:22:56.0619] Slim::Networking::Async::DNS::__ANON__ (105) Got DNS 
response 79.125.18.68 for []www.mysqueezebox.com[] (ttl 300)
  [12-03-11 08:22:56.2981]
  



-- 
donald24

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

2012-03-10 Thread BoomX2

I was able to get my local copy of SDT to show scores again by making
the following changes in the sub gotCBB section of the code.  It
probably could be cleaned up more, but this should work for now.

From:

Code:


  next unless $game_div->look_down( "_tag", "div", "id", qr{gameHeader} );

  my @outcome = $game_div->look_down( "_tag", "li", "id", qr{statusLine1} );
  my @qtr = $game_div->look_down( "_tag", "span", "id", qr{statusLine2Left} 
);
  my @clock   = $game_div->look_down( "_tag", "span", "id", 
qr{statusLine2Right} );
  my @teams   = $game_div->look_down( "_tag", "div", "id", qr{(h|a)TeamName} );
  my @scores  = $game_div->look_down( "_tag", "span", "id", 
qr{(home|away)HeaderScore} );

  my( $outcome_txt ) = $outcome[ 0 ]->content_list;
  my( $qtr_txt ) = $qtr[ 0 ]->content_list;
  my( $clock_time )  = $clock[ 0 ]->content_list;
  my( $away_team )   = $teams[ 0 ]->as_text;
  my( $home_team )   = $teams[ 1 ]->as_text;
  my( $away_score )  = $scores[ 0 ]->content_list;
  my( $home_score )  = $scores[ 1 ]->content_list;
  


To: 

Code:


  next unless $game_div->look_down( "_tag", "div", "class", "game-header" );
  
  my @outcome = $game_div->look_down( "_tag", "div", "id", qr{statusLine2Left} 
);
  my @qtr = $game_div->look_down( "_tag", "p", "id", qr{statusLine1} );
  my @clock   = $game_div->look_down( "_tag", "p", "id", qr{statusLine1} );
  my @teams   = $game_div->look_down( "_tag", "span", "id", qr{(h|a)TeamName} );
  my @scores  = $game_div->look_down( "_tag", "li", "id", 
qr{(home|away)HeaderScore} );

  my( $outcome_txt ) = $outcome[ 0 ]->as_text;
  my( $qtr_txt ) = $qtr[ 0 ]->content_list;
  my( $clock_time )  = $clock[ 0 ]->content_list;
  my( $away_team )   = $teams[ 0 ]->as_text;
  my( $home_team )   = $teams[ 1 ]->as_text;
  my( $away_score )  = $scores[ 0 ]->content_list;
  my( $home_score )  = $scores[ 1 ]->content_list;
  



AND 

From:

Code:


  if( $clock_time ne '' ) {
$clock_time = "$clock_time $qtr_txt";
  


To:

Code:


  if( $clock_time ne '' ) {
$clock_time = "$clock_time";
  



-- 
BoomX2

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

2012-03-10 Thread BoomX2

atlslim;694989 Wrote: 
> I'm not getting any College Basketball scores for the last few days
> (v.5.9.12 on Ubuntu).  Anyone else seeing this?
> 
> Hopefully a quick fix is available now that March Madness is starting!!

I didn't notice until I saw your message, but I'm also missing the
College BBall scores.


-- 
BoomX2

BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
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: YouTube Plugin

2012-03-10 Thread texas0478

Dear All,

I am running YouTube Plugin v0.14 on a Synology NAS (DS109+,
DSM4.0-2018, Logitech Media Server 7.7.1-001) + Logitech Squeezebox
Duet.

When I select a youtube clip, the artwork and other info is displayed
correctly (though the clip  length seems to be 0:00 until I press play,
then it would display the correct length), however, there is no sound at
all and the playback stops after some 3-5 seconds and goes back to the
beginning.

Many Logitech versions ago I used to be able to run the plugin
successfully at least once, yet then it started to produce the same
symptoms as described.  This would tell me that the Synology hardware
is theoretically able to handle the issue.

I tried the several suggestions found in this forum (ie.
uninstall/reinstall the plugin, look for any other ipeng/... repo and
if found, uncheck/remove them), yet the problem exists.

Since this plugin would "crown" the Squeezebox functionality, I would
be very-very grateful for any fix or update.

Thank, peace

Gergő / Budapest / Hungary


-- 
texas0478

texas0478's Profile: http://forums.slimdevices.com/member.php?userid=54391
View this thread: http://forums.slimdevices.com/showthread.php?t=87731

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


Re: [SlimDevices: Plugins] IR Blaster plug in config problem

2012-03-10 Thread netchord

epoch1970;695109 Wrote: 
> Been a long time since I've used SBS/LMS on Mac OS, however I suppose it
> is still true that, according to your choice to run the server only when
> some user is logged-in vs. at machine start, the whole Squeezebox file
> hierarchy will move either under /Users/xxx/Library (user) or under
> /Library (system)
> This may explain discrepancies between what you see and read.
> 
> There is also a difference in folder location, according to the plugin
> installation mode. Manual installs should go to (something like)
> .../squeezeboxserver/Plugins/ and automatic installs go to
> .../squeezeboxserver/cache/InstalledPlugins/Plugins
> I'd recommend using automatic install. Then you need to copy your files
> to the right location.
> To locate the "IRBlaster" directory perhaps you could look for a file
> named "slim.conf" (it contains the IR codes of the slim remote.) Or to
> this string 
> "Plugins::IRBlaster::Plugin" (from IRBlaster's
> install.xml file).

thanks, yes, i did automatic install, and the plugin shows up in the
player menu, ready to be configured.  what i can't find is the
directory to drop the .conf file into.


-- 
netchord

--
4 TB Drobo-->FW 800-->mac mini-->Ethernet
Transporter--> Wireworld Eclipse 6 coax-->Meridian G61
G61--> Nordost Red Dawn-->Primare 30.3
Primare-->Ocos--Vienna Acoustics Beethoven/Maestro

netchord's Profile: http://forums.slimdevices.com/member.php?userid=21002
View this thread: http://forums.slimdevices.com/showthread.php?t=94051

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


[SlimDevices: Plugins] NTS Audio Labs - Dance FX Essentials (WAV)

2012-03-10 Thread RonAdamen

NTS Audio Labs - Dance FX Essentials (WAV)
[image:
http://i32.fastpic.ru/big/2012/0210/63/4c3123361ee7fc89f286c4311bda6e63.jpg]
NTS AUDIO LABS - DANCE FX ESSENTIALS (WAV) | 256MB[/B]
'DANCE FX ESSENTIALS' BRINGS YOU WITH MORE THAN 300 HIGH QUALITY
ORIGINAL SOUND EFFECTS. MOSTLY OF THEM ARE DRY WITH NO EFFECTS APPLIED
SO YOU CAN WORK ON THEM AS YOU NEED! THEY ARE SUBDIVIDED IN CATEGORIES
AND ARE SPECIALLY SUITED FOR DANCE PRODUCTIONS.
THESE SOUNDS ARE SUITABLE FOR SOFT SAMPLERS AND AUDIO SEQUENCERS OR ANY
OTHER SAMPLE BASED SOFTWARE.
*FEATURES:*
50 IMPACTS
15 UPRISING
50 SHORT REVERSE
50 MIXED
5 NATURE
13 NOISE
41 REVERSE CRASHES
29 SHOTZ
50 SWEEPS
*FORMAT:*
WAV
*SPECIFICATIONS:*
ALL THE SAMPLES ARE RECORDED AT 24BIT 44.1KHZ
ALL THE SAMPLES ARE NORMALIZED AT 0DB
[B]DOWNLOAD: 
Code:


  http://extabit.com/file/2crj91svh9ph6/NTS.Dance.FX.Essentials.rar
  



-- 
RonAdamen

RonAdamen's Profile: http://forums.slimdevices.com/member.php?userid=50996
View this thread: http://forums.slimdevices.com/showthread.php?t=94074

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


[SlimDevices: Plugins] L8 Night - Vocal Samples Vol 2 (WAV)

2012-03-10 Thread RonAdamen

L8 Night  - Vocal Samples Vol 2 (WAV)
[image:
http://i30.fastpic.ru/big/2012/0210/61/1c0469c00b04e994d1c01ed39c3e3d61.jpg]
L8 NIGHT  - VOCAL SAMPLES VOL 2 (WAV) | 153MB[/B]
LESLEY LAFFERTY IS BACK WITH ANOTHER STUNNING COLLECTION OF SPOKEN
VOCAL SAMPLES IN WAV FORMAT THAT CAN BE USED IN STYLES FROM ELECTRO, TO
PROGRESSIVE HOUSE AND TRANCE. ALL OF THESE VOCAL SAMPLES ARE
ROYALTY-FREE AND CAN BE INCORPORATED INTO VARIOUS STYLES OF MUSIC.
THIS IS A COLLECTION OF SPOKEN VOCAL SAMPLES IN WAV FORMAT THAT CAN BE
USED IN STYLES FROM ELECTRO, TO PROGRESSIVE HOUSE AND TRANCE. ALL OF
THESE VOCAL SAMPLES ARE ROYALTY-FREE AND CAN BE INCORPORATED INTO YOUR
SONGS IN ANY WAY YOU FEEL.
THESE SAMPLES WILL ADD THE PERFECT TOUCH TO YOUR UNFINISHED SONG TO
GIVE THEM MORE FILL. THEY ARE ALSO GREAT TO WORK WITH AND BUILD YOUR
SONG AROUND. ALL THE SAMPLES ARE DRY WITH NO FX, SO YOU ARE FREE TO BE
AS CREATIVE AS YOU WANT WITH THEM.
WITH OVER 580 SAMPLES TO CHOOSE FROM, YOU ARE SURE TO FIND THE PERFECT
SAMPLE FOR YOUR SONG! PLEASE NOTE: THESE SAMPLES ARE NOT MELODIC OR
SUNG SAMPLES - THEY ARE SPOKEN WORD SAMPLES AND SHOULD WORK IN ALMOST
ANY KEY.
[B]DOWNLOAD: 
Code:


  http://extabit.com/file/2crj91svh9mga/Vocal.Samples.Spoken.V2.rar
  



-- 
RonAdamen

RonAdamen's Profile: http://forums.slimdevices.com/member.php?userid=50996
View this thread: http://forums.slimdevices.com/showthread.php?t=94073

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


[SlimDevices: Plugins] Giga Loops - 500 Hard Style Loops (WAV/REX)

2012-03-10 Thread RonAdamen

Giga Loops - 500 Hard Style Loops (WAV/REX)
[image:
http://i30.fastpic.ru/big/2012/0210/e1/d1a2955fd23de24583a1a95be8bacae1.jpg]
GIGA LOOPS - 500 HARD STYLE LOOPS (WAV/REX) | 210.3MB[/B]
'500 HARD STYLE LOOPS' IS A SELECTION OF LOOPS SUITABLE FOR PRODUCERS
OF HARD STYLE, HARD DANCE, HARD TRANCE AND HARD HOUSE MUSIC. THESE
GROOVES ARE ALL LICENSED TO YOU AS ROYALTY-FREE, SO YOU CAN USE THEM IN
YOUR ORIGINAL PRODUCTIONS AT NO EXTRA COST.
THIS PACK CONTAINS 500 LOOPS RECORDED AT AUDIO CD QUALITY, INCLUDING
NO-KICK LOOPS AS WELL AS WAV AND REX FORMATS. ALL LOOPS ARE AT 144 BPM
FOR EASE OF USE, AND ARE COMPATIBLE WITH ALL MAJOR MUSIC SOFTWARE
APPLICATIONS.
*FORMATS:*
500 LOOPS NO-KICK, NO FX (REX)
500 LOOPS NO KICK, NO FX (WAV)
SIZE 210 MB
ALL RECORDED AT 144 BPM
[B]DOWNLOAD: 
Code:


  http://extabit.com/file/2crj91svhwcx6/500.Hard.Style.rar
  



-- 
RonAdamen

RonAdamen's Profile: http://forums.slimdevices.com/member.php?userid=50996
View this thread: http://forums.slimdevices.com/showthread.php?t=94072

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


[SlimDevices: Plugins] Giga Loops - Pop Music Synthetic Drum Loops (WAV/REX)

2012-03-10 Thread RonAdamen

Giga Loops - Pop Music Synthetic  Drum Loops (WAV/REX)
[image:
http://i32.fastpic.ru/big/2012/0210/7a/20672d092ef489c5e2d0e571d982ef7a.jpg]
GIGA LOOPS - POP MUSIC SYNTHETIC  DRUM LOOPS (WAV/REX) | 125MB[/B]
'POP MUSIC: SYNTHETIC DRUM LOOPS' IS A SELECTION OF LOOPS SUITABLE FOR
PRODUCERS OF POP AND DANCE MUSIC. THESE GROOVES ARE ALL LICENSED TO YOU
AS ROYALTY-FREE, SO YOU CAN USE THEM IN YOUR ORIGINAL PRODUCTIONS AT NO
EXTRA COST. THIS PACK CONTAINS OVER 350 LOOPS RECORDED AT AUDIO CD
QUALITY, AS WELL AS WAV AND REX FORMATS.
ALL LOOPS ARE AT 85 BPM FOR EASE OF USE, AND ARE COMPATIBLE WITH ALL
MAJOR MUSIC SOFTWARE.
*PRODUCT CONTENTS:*
350 WAV LOOPS
350 REX LOOPS
ALL RECORDED AT 85 BPM
[B]DOWNLOAD: 
Code:


  http://extabit.com/file/2crj91svhwcyi/Pop.Music.Synthetic.Drum.rar
  



-- 
RonAdamen

RonAdamen's Profile: http://forums.slimdevices.com/member.php?userid=50996
View this thread: http://forums.slimdevices.com/showthread.php?t=94071

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


[SlimDevices: Plugins] Giga Loops - Minimal Techno 500 (WAV/REX)

2012-03-10 Thread RonAdamen

Giga Loops - Minimal Techno 500 (WAV/REX)
[image:
http://i29.fastpic.ru/big/2012/0210/df/2e4e1a6f58fead8eb7b837dafc766bdf.jpg]
GIGA LOOPS - MINIMAL TECHNO 500 (WAV/REX) | 206MB[/B]
'MINIMAL TECHNO 500' FROM GIGA LOOPS IS A SELECTION OF LOOPS SUITABLE
FOR PRODUCERS OF PROGRESSIVE, MINIMAL AND TECHNO MUSIC. THESE GROOVES
ARE ALL LICENSED TO YOU AS ROYALTY-FREE SO YOU CAN USE THEM IN YOUR
ORIGINAL PRODUCTIONS AT NO EXTRA COST. AVAILABLE IN WAV AND REX
FORMATS.
THIS PACK CONTAINS 100 ONE-SHOT SAMPLES, 50 BASS LOOPS, 50 KICK LOOPS
AND 300 LOOPS RECORDED AT AUDIO CD QUALITY, INCLUDING NO KICK LOOPS, AS
WELL AS WAV AND REX FORMATS.
ALL LOOPS ARE AT 120 BPM FOR EASE OF USE AND ARE COMPATIBLE WITH ALL
MAJOR MUSIC SOFTWARE.
*CONTENTS:*
100 WAV ONE-SHOT SAMPLES
300 WAV LOOPS
300 REX LOOPS
50 WAV BASS LOOPS
50 REX BASS LOOPS
50 WAV KICK LOOPS
50 REX KICK LOOPS
[B]DOWNLOAD: 
Code:


  http://extabit.com/file/2crj91svii7x6/Minimal.Techno500.rar
  



-- 
RonAdamen

RonAdamen's Profile: http://forums.slimdevices.com/member.php?userid=50996
View this thread: http://forums.slimdevices.com/showthread.php?t=94070

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


[SlimDevices: Plugins] FreeRIP Pro 3.

2012-03-10 Thread RonAdamen

FreeRIP Pro 3.


-- 
RonAdamen

RonAdamen's Profile: http://forums.slimdevices.com/member.php?userid=50996
View this thread: http://forums.slimdevices.com/showthread.php?t=94068

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


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

2012-03-10 Thread Triode

donald24;695168 Wrote: 
> Hi,
> 
> here's the log for playback with my squeezebox touch. I've checked that
> also with a virtual squeezebox on an Android tablet. It's the same.
> 
> I think that the service has a problem, as it is stating that on the
> service page for several days now.

Which version of the plugin are you using?  Could you post the server
log, not the helper app log?


-- 
Triode

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

2012-03-10 Thread donald24

Hi,

here's the log for playback with my squeezebox touch. I've checked that
also with a virtual squeezebox on an Android tablet. It's the same.

I think that the service has a problem, as it is stating that on the
service page for several days now.



[20:13:01.003] main:475 new connection
[20:13:01.013] main:521 req: cover.jpg res:
spotify:image:5fce80e75c4faf3bca27f647fd381bdb0efa7a42 par: (null)
prot: HTTP/1.0 auth: (null)
[20:13:01.014] write_cover:27 cover fetch: No error
[20:13:40.777] main:475 new connection
[20:13:40.783] main:521 req: radio.json res: (null) par:
s=1900&e=2020&g=65536 prot: HTTP/1.0 auth: (null)
[20:13:40.783] main:1284 radio query start year: 1900 end year: 2020
genre mask: 65536
[20:13:40.783] main:1291 created radio search
[20:13:41.204] search_callback:532 search: ok
[20:13:41.208] metadata_updated:79 new meta
[20:13:41.232] main:475 new connection
[20:13:41.238] main:521 req: stream.flc res:
spotify:track:2utpcuRHHNADztQlIK7LN3 par:
player=00%3A04%3A20%3A22%3Ab0%3A4f&start=0&sync=1&id=13 prot:
SPOTSTREAM/1.0 auth: (null)
[20:13:41.238] main:708 newstream connection from 192.168.0.9
[20:13:41.238] main:744 streamid: 0 newid: 13 type: FLAC
[20:13:41.239] check_player:197 1:
706c61796572206973706c617965722030302533413034253341323025334132322533416230253341346620310a0e000200a0d6077500600300
[20:13:41.240] check_player:234 2:
706c6179657220697020303025334130342533413230253341323225334162302533413466203139322e3136382e302e3925334133343831370aa0d6077500600300
[20:13:41.240] main:781 streambuf_newstream
[20:13:41.240] main:1586 new stream pending state: Resource not loaded
yet
[20:13:41.240] main:1586 new stream pending state: Resource not loaded
yet
[20:13:41.380] main:1586 new stream pending state: Resource not loaded
yet
[20:13:41.380] metadata_updated:79 new meta
[20:13:41.380] main:1554 Now playing: Tiny Dancer
[20:13:41.542] music_delivery:474 channels: 2 sample rate: 44100
streaming as: FLAC
[20:13:52.127] main:475 new connection
[20:13:52.137] main:521 req: cover.jpg res:
spotify:image:5c0313ba69bd58535b50b9756714a70dd45e par: (null)
prot: HTTP/1.0 auth: (null)
[20:13:52.138] write_cover:27 cover fetch: No error
[20:13:52.502] main:475 new connection
[20:13:52.503] main:521 req: cover.jpg res:
spotify:image:1619437d1c3a5732845133cba8a3ae0ad0dc6dbf par: (null)
prot: HTTP/1.0 auth: (null)
[20:13:52.504] write_cover:27 cover fetch: No error


-- 
donald24

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

2012-03-10 Thread Triode

donald24;695161 Wrote: 
> Things I've tried:
> 
> I've stopped the service. Cleared the caching directories, deinstalled
> the plugin - reinstalled the plugin. And Elton John was greeting me,
> when playing back the pop radio again. Changed the way it started,
> service to normal prog.
> 
> And then I installed the LogitechMediaServer on a different
> workstation, and it was the same. Elton John. So it is not my
> installation. It somehow has to do with my account (or my squeezebox
> touch??), but I cannot imagine what.
> 
> I've disabled the LastFM-integration (which shouldn't be interfering in
> radio AFAIK)
> 
> Every radio-playlist is fixed (and runs out after 50songs or so)
> 
> I am out of ideas.. anybody?

Can you enable plugin.spotify logging at debug level and see what the
server log says when you start to play a radio stream?


-- 
Triode

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

2012-03-10 Thread donald24

Triode;695139 Wrote: 
> Should not do that - have you cleared the playlist and restarted radio
> playback?

Things I've tried:

I've stopped the service. Cleared the caching directories, deinstalled
the plugin - reinstalled the plugin. And Elton John was greeting me,
when playing back the pop radio again. Changed the way it started,
service to normal prog.

And then I installed the LogitechMediaServer on a different
workstation, and it was the same. Elton John. So it is not my
installation. It somehow has to do with my account (or my squeezebox
touch??), but I cannot imagine what.

I've disabled the LastFM-integration (which shouldn't be interfering in
radio AFAIK)

I am out of ideas.. anybody?


-- 
donald24

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

2012-03-10 Thread Triode

buzzsb;694548 Wrote: 
> Where will the output of the print statement be shown? In which log
> file?? I am not sure whether I have a console somewhere. Alternatively,
> how would I start LMS from the command line?

Yes assuming you start from the command line:
find location of slimserver.pl and run: ./slimserver.pl


-- 
Triode

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

2012-03-10 Thread Triode

donald24;694899 Wrote: 
> Is it just me, or did Spotify change the way the "Radio"-function works?
> 
> It is now a static list of songs, which is everytime the same. For
> example the Pop-section starts everytime with Elton John's "Tiny
> Dancer", then followed by Grease-soundtrack everytime I choose that
> radio. Makes the radio function useless for me...
> Or do I need to delete some files to reset that?

Should not do that - have you cleared the playlist and restarted radio
playback?


-- 
Triode

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

2012-03-10 Thread Davidg1

Radio is working fine here on Touch, Radio, Squeezeplay and SqueezePad.
Playlist changes veryutime the station is loaded. Shows 10 tracks in
playlist at any time - last 4 played, current and next 5 upcoming.


-- 
Davidg1

Davidg1's Profile: http://forums.slimdevices.com/member.php?userid=35004
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] Coming soon... The iPeng teaser thread

2012-03-10 Thread chill

pippin;695121 Wrote: 
> ...or use a completely different color.

That would be my suggestion, although it's obviously not easy to judge
from just a screen shot.

A little music note symbol, perhaps above the playlist number, would be
somewhat consistent with the web interface.

So how long are you going to keep us guessing?  Has this been submitted
to the App store, or is it still a work in progress?


-- 
chill

chill's Profile: http://forums.slimdevices.com/member.php?userid=10839
View this thread: http://forums.slimdevices.com/showthread.php?t=93980

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


Re: [SlimDevices: Plugins] Coming soon... The iPeng teaser thread

2012-03-10 Thread pippin

Apart from the fact that I wouldn't know where to put an icon, anything
"small" will not help.
The screen shot may be a bit misleading, especially since the title is
so short, the difference is not so small. The cell and cover are 1.5
times the size of the other cells and the text is almost twice as big
plus there is a space and then a frame around the cell which also
stands out to the front.
If you want it more obvious you'd have to make it much bigger (taller)
or use a completely different color.


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

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


Re: [SlimDevices: Plugins] IR Blaster plug in config problem

2012-03-10 Thread epoch1970

Been a long time since I've used SBS/LMS on Mac OS, however I suppose it
is still true that, according to your choice to run the server only when
some user is logged-in vs. at machine start, the whole Squeezebox file
hierarchy will move either under /Users/xxx/Library (user) or under
/Library (system)
This may explain discrepancies between what you see and read.

There is also a difference in folder location, according to the plugin
installation mode. Manual installs should go to (something like)
.../squeezeboxserver/Plugins/ and automatic installs go to
.../squeezeboxserver/cache/InstalledPlugins/Plugins
I'd recommend using automatic install. Then you need to copy your files
to the right location.
To locate the "IRBlaster" directory perhaps you could look for a file
named "slim.conf" (it contains the IR codes of the slim remote.) Or to
this string 
"Plugins::IRBlaster::Plugin" (from IRBlaster's
install.xml file).


-- 
epoch1970

Daily dose delivered by: 3 SB Classic, 1 SB Boom • iPeng (iPhone + iPad)
• Squeezebox Server 7.6 (Debian 5.0)  with plugins: MusicIP • Server
Power Control by Gordon Harris •  WeatherTime by Martin Rehfeld •
IRBlaster by Gwendesign (Felix) • Find cover art by bpa • BBC iPlayer,
SwitchPlayer by Triode • PowerSave by Jason Holtzapple • Song Info,
Song Lyrics by Erland Isaksson • SaverSwitcher, ContextMenu by Peter
Watkins • Just Covers by Tom Kalmijn.

epoch1970's Profile: http://forums.slimdevices.com/member.php?userid=16711
View this thread: http://forums.slimdevices.com/showthread.php?t=94051

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


Re: [SlimDevices: Plugins] best LMS front end(s) for a tablet Windows pc?

2012-03-10 Thread Mnyb

How would Moose interact with a touch screen windows PC ?


-- 
Mnyb


Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad1 with iPengHD & SqueezePad
(in storage SB3, reciever ,controller )

http://people.xiph.org/~xiphmont/demo/neil-young.html

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=94047

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


Re: [SlimDevices: Plugins] Coming soon... The iPeng teaser thread

2012-03-10 Thread bhaagensen

how 'bout a small icon of some sort, to make it stand better out?


-- 
bhaagensen

bhaagensen's Profile: http://forums.slimdevices.com/member.php?userid=7418
View this thread: http://forums.slimdevices.com/showthread.php?t=93980

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


Re: [SlimDevices: Plugins] Coming soon... The iPeng teaser thread

2012-03-10 Thread pippin

That's true. But this is iPhone, can't waste half of the screen just for
some padding there :P


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

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


Re: [SlimDevices: Plugins] Coming soon... The iPeng teaser thread

2012-03-10 Thread bluegaspode

It's not too easy to distinguish the currently playing track from all
others? :P

;)


-- 
bluegaspode

Did you know: *'SqueezePlayer' (www.squeezeplayer.com)* will stream all
your music to your Android device. Take your music everywhere!
Remote Control + Streaming to your iPad? *'Squeezebox + iPad =
SqueezePad ' (www.squeezepad.com)*
Want to see a Weather Forecast on your Radio/Touch/Controller ? => why
not try my 'Weather Forecast Applet'
(http://forums.slimdevices.com/showthread.php?t=73827)
Want to use the Headphones with your Controller ? => why not try my
'Headphone Switcher Applet'
(http://forums.slimdevices.com/showthread.php?t=67139)

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

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


Re: [SlimDevices: Plugins] Coming soon... The iPeng teaser thread

2012-03-10 Thread pippin

iPhone example


+---+
|Filename: ImageUploadedByTapatalk1331367782.007709.jpg |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=13159|
+---+

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

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