Khris;258478 Wrote: 
> I'm having a problem getting audio from my Sirius Channels.  I can
> stream other Internet radio sites, but nothing on Sirius.
> 
> As was suggested earlier in this thread (as I'm in Canada), I took the
> 6 figure captchas from v0.8.2 and copied them to v0.8.5 (instead of
> v0.8.4) which then let me get logged in and I can see all the channels.
> I do not get any audio however (volume is ok).
> 
> Suggestions?
> 
> The other thing I've noticed is that if I start listening to a
> Shoutcast stream and then try to change to Sirius, it continue to play
> the Shoutcast stream.
> 
> ...

Sorry for the delayed response... been out of town.

With your modified .8.5 code try this... search for this section:

Code:
--------------------
    
  #if (/href="(mms:\/\/.*)"/) {
  if (/Ref1=http(:\/\/.*asf)/) {
        $nowPlaying{$client}= 'mms' . $1;
        #$nowPlaying{$client}= $1;
        $nowPlayingRef{$client}=$channelRef;
        $nowPlayingTime{$client} = 0;
        $channels[8][$channelRef] = $1; #Is this used anymore???
  }
  
--------------------


And change it to:

Code:
--------------------
    
  if (/href="(mms:\/\/.*)"/) {
  #if (/Ref1=http(:\/\/.*asf)/) {
        #$nowPlaying{$client}= 'mms' . $1;
        $nowPlaying{$client}= $1;
        $nowPlayingRef{$client}=$channelRef;
        $nowPlayingTime{$client} = 0;
        $channels[8][$channelRef] = $1; #Is this used anymore???
  }
  
--------------------


Basically you're removing 2 #'s and adding two #'s to bring back some
previous code that must still apply to the Canadian site.

Please let me know if this works for you so I can push the changes to
the SC7 version of the plugin.

Thanks
-Greg


-- 
GoCubs
------------------------------------------------------------------------
GoCubs's Profile: http://forums.slimdevices.com/member.php?userid=312
View this thread: http://forums.slimdevices.com/showthread.php?t=20621

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/plugins

Reply via email to