expectingtofly wrote: 
> Yes, in BBCXMLParser.pm
> 
> Remove :
> 
> > 
Code:
--------------------
  >   > 
  > if ($entry->{'url'} =~ 
/http:\/\/www\.live\.bbc\.co\.uk\/mediaselector\/4\/mtis\/stream\/(.*)/) {
  > $entry->{'url'} = 
"http://open.live.bbc.co.uk/mediaselector/5/select/version/2.0/mediaset/pc/vpid/$1";;
  > }
  > 
--------------------
> > 
> 
> Replace with :
> > 
Code:
--------------------
  >   > 
  > 
  > $entry->{'url'} =~ s/redir/select/ig;
  > 
  > my $_find = "audio-syndication/proto/http";
  > my $_replace = "pc";
  > $_find = quotemeta $_find;
  > $entry->{'url'} =~ s/$_find/$_replace/g;
  > 
  > 
  > 
--------------------
> > 
> 
> That gets you the RTMP streams.
> For the HLS streams there is a slightly different hack.  But we really
> ought to do this properly

Any chance we could get the HLS hack - I don't fancy having to go back
and restore rtmp from hls?



Touch - Muse M50 EX TPA3123 T-Amp Mini - Acoustics Q10 speakers
Logitech Radio
Logitech UE Smart Radio
Raspberry Pi + Squeezeplug LMS + Squeezelite - Logitech Mini Boombox
speaker (mothballed)
Cubieboard + Debian 7 + LMS 7.8.1 + Squeezelite - Soundwave SW100
bluetooth speaker
O2 Joggler + SqpOS + Aune X2 T-amp + Mordaunt Short ms-3.40 speakers 
IBOX + Debian 7 + LMS 7.8.1 + Squeezelite - Soundwave SW100 bluetooth
speaker
Squeeze2upnp - Sonos Play1 & Vistron internet radio (Reciva)
------------------------------------------------------------------------
castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
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

Reply via email to