Squeezebox Modul - erste Version

Begonnen von bugster_de, 17 Dezember 2013, 22:12:10

Vorheriges Thema - Nächstes Thema

bugster_de

Hi,

ich habe heute nacht eine neue Version eingecheckt. Da sind ein paar Bugfixes drin sowie ein neues Feature:
mit dem neuen Attribut "volumeLimit" kann man eine maximal Lautstärke setzen. Das ist z.B. nützlich wenn man per eigenem Perl Script die Player steuert. Sollte das eigene Script Amok laufen und z.B. die Uhrzeit als volume setzen wollen, dann wird das nicht weiter gereicht und es fallen einem nicht die Ohren ab.

bugster_de

@Riverghost: bitte tausche mal die Zeile 793 aus und berichte dann:

vorher:
my $p = Net::Ping->new( 'tcp' );

nachher
my $p = Net::Ping->new( 'icmp' );

Riverghost

@ bugster_de,

nun habe ich die 97_SB_SERVER.pm noch einmal neu geladen und die entsprechende Zeile getauscht.
Folgende Meldung kommt jetzt per telnet:

# sh startfhem
# Found = in conditional, should be == at ./FHEM/97_SB_SERVER.pm line 1041, <$fh> line 396.
"my" variable $name masks earlier declaration in same scope at ./FHEM/98_SB_PLAYER.pm line 121, <$fh> line 401.
icmp ping requires root privilege at ./FHEM/97_SB_SERVER.pm line 793

Übrigens habe ich die Fritzbox wieder aktualisiert mit der letzten Laborversion.

Gruß
Riverghost

bugster_de

tja, da hat deine Fritzbox leider Recht: du must FHEM als root starten um ICMP Pings ausführen zu können. Mach das mal bitte testhalber (findet sich auch hier im Forum wie man FHEM als root startet)

Riverghost

@ bugster_de,

jetzt funktioniert es. Vielen Dank!
(Das mit root hätte ich auch selber merken müssen) :o

Gruß
Riverghost

Future

Hallo,
bin ja echt begeistert von den Modulen. ;)
Bislang hatte ich auch keine probleme damit, aber seit ich das neuste Update der Player.pm und Server.pm am laufen habe kommt immer wieder die selbe Fehlermeldung im log
Use of uninitialized value $args[0] in string at ./FHEM/98_SB_PLAYER.pm line 494.
Use of uninitialized value $args[0] in string at ./FHEM/98_SB_PLAYER.pm line 494.
Use of uninitialized value $args[0] in string at ./FHEM/98_SB_PLAYER.pm line 494.
Use of uninitialized value $args[0] in string at ./FHEM/98_SB_PLAYER.pm line 494.
Use of uninitialized value $args[0] in string at ./FHEM/98_SB_PLAYER.pm line 494.
Use of uninitialized value $args[0] in string at ./FHEM/98_SB_PLAYER.pm line 494.
Use of uninitialized value $args[0] in string at ./FHEM/98_SB_PLAYER.pm line 494.
Use of uninitialized value $args[0] in string at ./FHEM/98_SB_PLAYER.pm line 494.


Jemand ne Idee worann das liegen könnte ?  ???
FHEM 5.6 auf Brix
1xCUL433, 12x Elro AB440SC
Onkyo TX-NR515, Coolstream NEO, Samsung UE46F6500, HMLAN, 3x HM-PB-2-WM55-2, 2x HM-PB-6-WM55, 4x HM-CC-RT-DN, 3x HM-TC-IT-WM-W-EU, 1x HM-RC-4-2, 3x HM-LC-Sw1PBU-FM,1x HM-WDS10-TH-O

bugster_de

@Future: komische Phänomen, denn hier wird die Antwort vom Server auf die remote Anfrage bearbeitet. Sprich der Server sagt, ob das aktuell abgespielte Stück ein Remote Stream (Webradio) oder eine lokale Datei ist. Mögliche Antworten sind 0,1 oder ?. Die Fehlermeldung sagt, dass da überhaupt kein Wert vom Server geschickt wird. Warum auch immer.

Bitte tausche mal die Zeile 494 in der 98_SB_PLAYER.pm gegen das hier

if( defined( $args[ 0 ] ) ) {
    $hash->{ISREMOTESTREAM} = "$args[ 0 ]";
} else {
    $hash->{ISREMOTESTREAM} = "0";
}


Future

Hallo,
gesagt getan  :)
jetzt mal abwarten was das log hergibt.
aber trotzdem DANKE für das geile modul und die schnelle Hilfe  ;)
FHEM 5.6 auf Brix
1xCUL433, 12x Elro AB440SC
Onkyo TX-NR515, Coolstream NEO, Samsung UE46F6500, HMLAN, 3x HM-PB-2-WM55-2, 2x HM-PB-6-WM55, 4x HM-CC-RT-DN, 3x HM-TC-IT-WM-W-EU, 1x HM-RC-4-2, 3x HM-LC-Sw1PBU-FM,1x HM-WDS10-TH-O

Future

"update"

Alles Top, keine Fehlermeldung mehr im Log !!! 8) 8) 8)
FHEM 5.6 auf Brix
1xCUL433, 12x Elro AB440SC
Onkyo TX-NR515, Coolstream NEO, Samsung UE46F6500, HMLAN, 3x HM-PB-2-WM55-2, 2x HM-PB-6-WM55, 4x HM-CC-RT-DN, 3x HM-TC-IT-WM-W-EU, 1x HM-RC-4-2, 3x HM-LC-Sw1PBU-FM,1x HM-WDS10-TH-O

bugster_de

@Future: ja, wir haben keine Fehlermeldungen mehr im Log, aber Top ist das nicht, da der SB Server nach wie vor das falsche zu Remote schickt. Wir behandeln das nun nur nicht mehr. Sprich wir haben ein Pflaster aufs Loch geklebt aber das Loch ist noch nicht zu.
Wenn Du mal Zeit hast, dann stelle an dem Player das attribut verbose auf 5, logge eine Weile und stelle das Logfile hier ein.

Future

FHEM 5.6 auf Brix
1xCUL433, 12x Elro AB440SC
Onkyo TX-NR515, Coolstream NEO, Samsung UE46F6500, HMLAN, 3x HM-PB-2-WM55-2, 2x HM-PB-6-WM55, 4x HM-CC-RT-DN, 3x HM-TC-IT-WM-W-EU, 1x HM-RC-4-2, 3x HM-LC-Sw1PBU-FM,1x HM-WDS10-TH-O

Future

Hier mal ein Auszug  ::)

2014.07.27 19:21:10 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:play ARGS:10...
2014.07.27 19:21:10 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:10 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:playlist ARGS:jump 0 10...
2014.07.27 19:21:10 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:10 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:mode ARGS:play...
2014.07.27 19:21:10 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:11 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:playlist ARGS:open http://djc.kicks-ass.net/harddrivinradiolow...
2014.07.27 19:21:11 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:11 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:playlist ARGS:open http://djc.kicks-ass.net/harddrivinradiolow...
2014.07.27 19:21:11 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:11 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:mode ARGS:play...
2014.07.27 19:21:11 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:12 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:mode ARGS:play...
2014.07.27 19:21:12 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:playlist ARGS:newsong HDRN - Hard Drivin' Radio 0...
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:artist ARGS:Volbeat...
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:album ARGS:...
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:title ARGS:Heaven Nor Hell...
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:mode ARGS:play...
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:newmetadata ARGS:...
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:remote ARGS:1...
2014.07.27 19:21:13 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:playlist ARGS:newsong HDRN - Hard Drivin' Radio 0...
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:artist ARGS:Volbeat...
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:album ARGS:...
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:title ARGS:Heaven Nor Hell...
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:mode ARGS:play...
2014.07.27 19:21:14 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:21:22 5: SB_PLAYER_Parse: SB_Schlafzimmer CMD:prefset ARGS:server snLastSyncUp 1406481682...
2014.07.27 19:21:22 5: SB_PLAYER_Parse: SB_Schlafzimmer: leaving
2014.07.27 19:24:22 5: SB_PLAYER_GetStatus: called
2014.07.27 19:24:22 5: SB_PLAYER_GetStatus: leaving
2014.07.27 19:24:22 5: SB_PLAYER_GetStatus: called
2014.07.27 19:24:22 5: SB_PLAYER_GetStatus: leaving
2014.07.27 19:24:22 5: SB_PLAYER_GetStatus: called
2014.07.27 19:24:22 5: SB_PLAYER_GetStatus: leaving
2014.07.27 19:24:22 5: SB_PLAYER_Parse: SB_Cubie.digital CMD:artist ARGS:HIT RADIO FFH: Sunrise Avenue...
2014.07.27 19:24:22 5: SB_PLAYER_Parse: SB_Cubie.digital: leaving
2014.07.27 19:24:22 5: SB_PLAYER_Parse: SB_Cubie.digital CMD:album ARGS:...
2014.07.27 19:24:22 5: SB_PLAYER_Parse: SB_Cubie.digital: leaving
2014.07.27 19:24:22 5: SB_PLAYER_Parse: SB_Cubie.digital CMD:title ARGS:I Don´t Dance...
2014.07.27 19:24:22 5: SB_PLAYER_Parse: SB_Cubie.digital: leaving
2014.07.27 19:24:22 5: SB_PLAYER_Parse: SB_Cubie.digital CMD:playlist ARGS:url...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.digital: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.digital CMD:remote ARGS:1...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.digital: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.digital CMD:status ARGS:0 500 tags:Kc player_name:Cubie-digital player_connected:1 player_ip:192.168.2.21:50333 power:1 signalstrength:0 mode:stop remote:1 current_title:HIT RADIO FFH time:0 rate:1 mixer volume:100 playlist repeat:0 playlist shuffle:1 playlist mode:off seq_no:0 playlist_cur_index:0 playlist_timestamp:1406447910.00927 playlist_tracks:1 remoteMeta:HASH(0x5344a28) playlist index:0 id:-86888680 title:I Don´t Dance artwork_url:/plugins/RadioTime/html/images/podcasts.png coverid:-86888680...
2014.07.27 19:24:23 5: SB_SERVER_ParsePlayerStatus(SB_Cubie.digital): data to parse: tags:Kc player_name:Cubie-digital player_connected:1 player_ip:192.168.2.21:50333 power:1 signalstrength:0 mode:stop remote:1 current_title:HIT RADIO FFH time:0 rate:1 mixervolume:100 playlistrepeat:0 playlistshuffle:1 playlist mode:off seq_no:0 playlist_cur_index:0 playlist_timestamp:1406447910.00927 playlist_tracks:1 remoteMeta:HASH(0x5344a28) playlistindex:0 id:-86888680 title:I Don´t Dance artwork_url:/plugins/RadioTime/html/images/podcasts.png coverid:-86888680
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.digital: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:artist ARGS:Volbeat...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:album ARGS:...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:title ARGS:Heaven Nor Hell...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:playlist ARGS:url...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:remote ARGS:1...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:status ARGS:0 500 tags:Kc player_name:Cubie-analog player_connected:1 player_ip:192.168.2.21:50332 power:1 signalstrength:0 mode:play remote:1 current_title:Hard Drivin' Radio - HDRN time:189.424807134628 rate:1 mixer volume:100 playlist repeat:0 playlist shuffle:1 playlist mode:off seq_no:0 playlist_cur_index:0 playlist_timestamp:1406480486.51848 playlist_tracks:1 remoteMeta:HASH(0x5320928) playlist index:0 id:-86557032 title:Heaven Nor Hell artwork_url:imageproxy/http://d3tybumvrk5xfv.cloudfront.net/gn/7H503ZTQZ3g.jpg/image.jpg coverid:-86557032...
2014.07.27 19:24:23 5: SB_SERVER_ParsePlayerStatus(SB_Cubie.Analog): data to parse: tags:Kc player_name:Cubie-analog player_connected:1 player_ip:192.168.2.21:50332 power:1 signalstrength:0 mode:play remote:1 current_title:Hard Drivin' Radio - HDRN time:189.424807134628 rate:1 mixervolume:100 playlistrepeat:0 playlistshuffle:1 playlist mode:off seq_no:0 playlist_cur_index:0 playlist_timestamp:1406480486.51848 playlist_tracks:1 remoteMeta:HASH(0x5320928) playlistindex:0 id:-86557032 title:Heaven Nor Hell artwork_url:imageproxy/http://d3tybumvrk5xfv.cloudfront.net/gn/7H503ZTQZ3g.jpg/image.jpg coverid:-86557032
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer CMD:artist ARGS:Volbeat...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer CMD:album ARGS:Live From Beyond Hell / Above Heaven...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer CMD:title ARGS:Who They Are - Live At Forum, Copenhagen/2010...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer CMD:playlist ARGS:url...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer CMD:remote ARGS:1...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer CMD:status ARGS:0 500 tags:Kc player_name:Schlafzimmer player_connected:1 player_ip:192.168.2.27:44541 power:1 signalstrength:0 mode:stop remote:1 current_title:Who They Are - Live At Forum, Copenhagen/2010 time:0 rate:1 duration:223 can_seek:1 mixer volume:70 playlist repeat:0 playlist shuffle:1 playlist mode:off seq_no:0 playlist_cur_index:0 playlist_timestamp:1406478567.62495 playlist_tracks:52 remoteMeta:HASH(0x5310890) playlist index:0 id:-86457552 title:Who They Are - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86457552 playlist index:1 id:-86496848 title:Say Your Number artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86496848 playlist index:2 id:-86784648 title:Evelyn - Live From Wacken/2012 artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86784648 playlist index:3 id:-82275664 title:Pool Of Booze, Booze, Booza/BOA - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-82275664 playlist index:4 id:-87008184 title:16 Dollars - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-87008184 playlist index:5 id:-86825536 title:Still Counting - Live At House Of Blues, Anaheim/2011 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86825536 playlist index:6 id:-86888992 title:Fallen - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86888992 playlist index:7 id:-86558712 title:Thanks - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86558712 playlist index:8 id:-86928424 title:The Hangman's Body Count artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86928424 playlist index:9 id:-85713240 title:The Mirror And The Ripper - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-85713240 playlist index:10 id:-86497400 title:Fire Song artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86497400 playlist index:11 id:-82452224 title:7 Shots - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-82452224 playlist index:12 id:-86825488 title:The Human Instrument - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86825488 playlist index:13 id:-85712808 title:Caroline Leaving artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-85712808 playlist index:14 id:-86811760 title:Lola Montez - Harp Version artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86811760 playlist index:15 id:-85035432 title:Something Else Or... artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-85035432 playlist index:16 id:-59884216 title:A Warrior's Call - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-59884216 playlist index:17 id:-81396280 title:The Nameless One artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-81396280 playlist index:18 id:-85693512 title:Intro - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-85693512 playlist index:19 id:-86497112 title:Soulweeper artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86497112 playlist index:20 id:-86814016 title:7 Shots - Live From Wacken/2012 artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86814016 playlist index:21 id:-86833920 title:Ecotone artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86833920 playlist index:22 id:-87009264 title:Dead But Rising artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-87009264 playlist index:23 id:-86801408 title:Rebel Monster artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86801408 playlist index:24 id:-82249688 title:The Sinner Is You artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-82249688 playlist index:25 id:-85739696 title:Heaven Nor Hell - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-85739696 playlist index:26 id:-86827120 title:Angelfuck - Live At House Of Blues, Anaheim/2011 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86827120 playlist index:27 id:-86812504 title:Evelyn - 2010 Demo artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86812504 playlist index:28 id:-86580104 title:Another Day, Another Way artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86580104 playlist index:29 id:-87014048 title:My Body artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-87014048 playlist index:30 id:-86994696 title:Black Bart artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86994696 playlist index:31 id:-86825008 title:I Only Wanna Be With You - Live At House Of Blues, Anaheim/2011 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86825008 playlist index:32 id:-86804192 title:Always. Wu artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86804192 playlist index:33 id:-86957960 title:Cape Of Our Hero artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86957960 playlist index:34 id:-87010128 title:The Garden's Tale - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-87010128 playlist index:35 id:-85103392 title:Doc Holliday artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-85103392 playlist index:36 id:-86498456 title:Danny & Lucy [11pm] artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86498456 playlist index:37 id:-86503688 title:Healing Subconsciously artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86503688 playlist index:38 id:-86499848 title:Caroline #1 artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86499848 playlist index:39 id:-86632680 title:Pearl Hart artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86632680 playlist index:40 id:-86933352 title:Let's Shake Some Dust artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86933352 playlist index:41 id:-86498648 title:Alienized artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86498648 playlist index:42 id:-86503400 title:Everything's Still Fine artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86503400 playlist index:43 id:-86500592 title:I Only Wanna Be With You artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86500592 playlist index:44 id:-86631528 title:Evelyn - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86631528 playlist index:45 id:-86887072 title:Lonesome Rider artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86887072 playlist index:46 id:-86832624 title:Maybellene I Hofteholder - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86832624 playlist index:47 id:-86472480 title:Lola Montez artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86472480 playlist index:48 id:-86804288 title:Pool Of Booze, Booze, Booza artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86804288 playlist index:49 id:-86830608 title:Our Loved Ones artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86830608 playlist index:50 id:-81516224 title:Room 24 artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-81516224 playlist index:51 id:-86885872 title:Sad Man's Tongue - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86885872...
2014.07.27 19:24:23 5: SB_SERVER_ParsePlayerStatus(SB_Schlafzimmer): data to parse: tags:Kc player_name:Schlafzimmer player_connected:1 player_ip:192.168.2.27:44541 power:1 signalstrength:0 mode:stop remote:1 current_title:Who They Are - Live At Forum, Copenhagen/2010 time:0 rate:1 duration:223 can_seek:1 mixervolume:70 playlistrepeat:0 playlistshuffle:1 playlist mode:off seq_no:0 playlist_cur_index:0 playlist_timestamp:1406478567.62495 playlist_tracks:52 remoteMeta:HASH(0x5310890) playlistindex:0 id:-86457552 title:Who They Are - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86457552 playlistindex:1 id:-86496848 title:Say Your Number artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86496848 playlistindex:2 id:-86784648 title:Evelyn - Live From Wacken/2012 artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86784648 playlistindex:3 id:-82275664 title:Pool Of Booze, Booze, Booza/BOA - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-82275664 playlistindex:4 id:-87008184 title:16 Dollars - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-87008184 playlistindex:5 id:-86825536 title:Still Counting - Live At House Of Blues, Anaheim/2011 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86825536 playlistindex:6 id:-86888992 title:Fallen - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86888992 playlistindex:7 id:-86558712 title:Thanks - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86558712 playlistindex:8 id:-86928424 title:The Hangman's Body Count artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86928424 playlistindex:9 id:-85713240 title:The Mirror And The Ripper - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-85713240 playlistindex:10 id:-86497400 title:Fire Song artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86497400 playlistindex:11 id:-82452224 title:7 Shots - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-82452224 playlistindex:12 id:-86825488 title:The Human Instrument - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86825488 playlistindex:13 id:-85712808 title:Caroline Leaving artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-85712808 playlistindex:14 id:-86811760 title:Lola Montez - Harp Version artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86811760 playlistindex:15 id:-85035432 title:Something Else Or... artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-85035432 playlistindex:16 id:-59884216 title:A Warrior's Call - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-59884216 playlistindex:17 id:-81396280 title:The Nameless One artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-81396280 playlistindex:18 id:-85693512 title:Intro - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-85693512 playlistindex:19 id:-86497112 title:Soulweeper artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86497112 playlistindex:20 id:-86814016 title:7 Shots - Live From Wacken/2012 artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86814016 playlistindex:21 id:-86833920 title:Ecotone artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86833920 playlistindex:22 id:-87009264 title:Dead But Rising artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-87009264 playlistindex:23 id:-86801408 title:Rebel Monster artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86801408 playlistindex:24 id:-82249688 title:The Sinner Is You artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-82249688 playlistindex:25 id:-85739696 title:Heaven Nor Hell - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-85739696 playlistindex:26 id:-86827120 title:Angelfuck - Live At House Of Blues, Anaheim/2011 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86827120 playlistindex:27 id:-86812504 title:Evelyn - 2010 Demo artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86812504 playlistindex:28 id:-86580104 title:Another Day, Another Way artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86580104 playlistindex:29 id:-87014048 title:My Body artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-87014048 playlistindex:30 id:-86994696 title:Black Bart artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86994696 playlistindex:31 id:-86825008 title:I Only Wanna Be With You - Live At House Of Blues, Anaheim/2011 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86825008 playlistindex:32 id:-86804192 title:Always. Wu artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86804192 playlistindex:33 id:-86957960 title:Cape Of Our Hero artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86957960 playlistindex:34 id:-87010128 title:The Garden's Tale - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-87010128 playlistindex:35 id:-85103392 title:Doc Holliday artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-85103392 playlistindex:36 id:-86498456 title:Danny & Lucy [11pm] artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86498456 playlistindex:37 id:-86503688 title:Healing Subconsciously artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86503688 playlistindex:38 id:-86499848 title:Caroline #1 artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86499848 playlistindex:39 id:-86632680 title:Pearl Hart artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86632680 playlistindex:40 id:-86933352 title:Let's Shake Some Dust artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86933352 playlistindex:41 id:-86498648 title:Alienized artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86498648 playlistindex:42 id:-86503400 title:Everything's Still Fine artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86503400 playlistindex:43 id:-86500592 title:I Only Wanna Be With You artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86500592 playlistindex:44 id:-86631528 title:Evelyn - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86631528 playlistindex:45 id:-86887072 title:Lonesome Rider artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86887072 playlistindex:46 id:-86832624 title:Maybellene I Hofteholder - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86832624 playlistindex:47 id:-86472480 title:Lola Montez artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86472480 playlistindex:48 id:-86804288 title:Pool Of Booze, Booze, Booza artwork_url:imageproxy/spotify:image:e9b2d0bcac8c2dd0ec9bf3e81da0c97de2b40f1f/image.jpg coverid:-86804288 playlistindex:49 id:-86830608 title:Our Loved Ones artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-86830608 playlistindex:50 id:-81516224 title:Room 24 artwork_url:imageproxy/spotify:image:15bd59cd1390ed1547ec6b87bd6af0123a60f86b/image.jpg coverid:-81516224 playlistindex:51 id:-86885872 title:Sad Man's Tongue - Live At Forum, Copenhagen/2010 artwork_url:imageproxy/spotify:image:350dc39925f2c6398d88ec8146340e6021d0b691/image.jpg coverid:-86885872
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.digital CMD:mode ARGS:stop...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.digital: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:mode ARGS:play...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer CMD:mode ARGS:stop...
2014.07.27 19:24:23 5: SB_PLAYER_Parse: SB_Schlafzimmer: leaving
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:playlist ARGS:newsong DJC - Ad Break...
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:artist ARGS:DJC...
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:album ARGS:...
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:title ARGS:Ad Break...
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:mode ARGS:play...
2014.07.27 19:24:50 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:25:07 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:newmetadata ARGS:...
2014.07.27 19:25:07 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:25:07 5: SB_PLAYER_Parse: SB_Cubie.Analog CMD:remote ARGS:1...
2014.07.27 19:25:07 5: SB_PLAYER_Parse: SB_Cubie.Analog: leaving
2014.07.27 19:25:23 5: SB_PLAYER_Set: called with ?
2014.07.27 19:25:23 5: SB_PLAYER_Set: called with ?
2014.07.27 19:25:23 5: SB_PLAYER_Set: called with ?
FHEM 5.6 auf Brix
1xCUL433, 12x Elro AB440SC
Onkyo TX-NR515, Coolstream NEO, Samsung UE46F6500, HMLAN, 3x HM-PB-2-WM55-2, 2x HM-PB-6-WM55, 4x HM-CC-RT-DN, 3x HM-TC-IT-WM-W-EU, 1x HM-RC-4-2, 3x HM-LC-Sw1PBU-FM,1x HM-WDS10-TH-O

bugster_de

@Future: hmmmm, aus dem Log File sehe ich nichts (es ist alles korreekt).

Kannst Du mal nachschauen, wie sich das Reading ISREMOTESTREAM ändert:
- wenn man Webradio abspielt, dann muß das auf 1 stehen
- wenn man eine lokale MP3 abspielt, dann muß das auf 0 stehen

Wenn dem so ist, dann haben wir kein Problem (mehr)

Future

also..... sieht alles gut aus  8) bei MP3 steht ISREMOTESTREAM auf 0, bei Spotify und Webstreams bei 1  ;)
das hier steht aber noch im Log
2014.07.28 15:55:06 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
2014.07.28 15:55:31 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
2014.07.28 15:55:39 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
2014.07.28 15:56:34 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
2014.07.28 15:56:53 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
2014.07.28 15:57:23 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
2014.07.28 15:57:29 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
2014.07.28 15:57:37 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
2014.07.28 15:58:06 1: SB_PLAYER_Get: called with SB_Cubie.Analog ?
FHEM 5.6 auf Brix
1xCUL433, 12x Elro AB440SC
Onkyo TX-NR515, Coolstream NEO, Samsung UE46F6500, HMLAN, 3x HM-PB-2-WM55-2, 2x HM-PB-6-WM55, 4x HM-CC-RT-DN, 3x HM-TC-IT-WM-W-EU, 1x HM-RC-4-2, 3x HM-LC-Sw1PBU-FM,1x HM-WDS10-TH-O

bugster_de

na dann ist ja alles gut ...

das mit dem Logeintrag ist normal. Das ist das FHEM UI welches die Module abfragt. Passt schon. Kannst also den verbose wieder auf 0 stellen.