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

Thanks for all your help with this issue. I tried the change listed
above and it restored LA for Radio 3 and Radio 4 (albeit without
pictures :)) but Radio 2 LA gives a "Problem: can't open file for..."
message. Editing for the HLS stream per your later post didn't change
anything (3 & 4 working, 2 not working). 

Anyone else experiencing this?

I'm in the UK, Win 7 64 bit, LMS Version: 7.8.1 - 1411629722


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