New Script (and Plugin) BBC PodRadio

  Thread Rating:
  • 2 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Woggle Offline
Junior Member
Posts: 42
Joined: Jan 2006
Reputation: 0
Post: #51
Hi BBB,

Is there any news on the update?

I'm finding that when I try to play shows again (i.e. Radio 1), the plugin only seems to list a few shows and not the whole lot.

Is that expected? Thanks.
find quote
BigBellyBilly Offline
Skilled Python Coder
Posts: 959
Joined: Feb 2005
Reputation: 2
Location: UK
Post: #52
Updated v2.2 (with plugin) now available on XBMCScripts.com

Changelog:
  • Updated: To be xbmc 'Atlantis' compatible.
  • Updated: Supporting libs.
  • Updated: Skins.
  • Updated: Stream scraping.
  • Updated: Language strings
  • New: Prompt to Save or Play (podcast) stream after selection.
  • New: More skins. (mediaStream, Default 720p ...)
  • New: Menu options 'Clear Cache', 'Play Saved File', 'Stop Playing'


NOTE. You must be running a XBMC 'Atlantis' as a minimum build to use this version (due to some changes in the way skins and language are used)

any problems etc, let me know or maybe just donate me a beer Wink
cheers

BBB

My Addons (myTV, T3CH Upgrader, DVDProfiler, BBCPodRadio, Comics, Football, GoogleReader, reeplay.it, Metacritic, Phonebin, FileViewer,SVN Repo Installer (contributor)) available at Box.net
find quote
Woggle Offline
Junior Member
Posts: 42
Joined: Jan 2006
Reputation: 0
Post: #53
Hi,

Thanks for uploading the new script / plugin.

Unfortunately I'm only getting local radio stations, Radio Cymru, Radio nan Gaidheal and World Service - none of the BBC stations?

Is there any way of being able to build those in?

Thanks in advance
find quote
BigBellyBilly Offline
Skilled Python Coder
Posts: 959
Joined: Feb 2005
Reputation: 2
Location: UK
Post: #54
ok. the reason is that I changed the regular expression that scrapes the page to exclude the streams that are now commented out in their html (as those programmes have been moved to be available only on the iPlayer). But, I shouldnt have done that with the Live Radio. Its an easy fix:

1) edit default.py goto line 463

2) remove the ^ (hat) character at beginning of the regex =
so
regex = '^<li><a href="(.*?)".*?>(.*?)</a'

to be

regex = '<li><a href="(.*?)".*?>(.*?)</a'

it will then show all feeds again.

BBB

My Addons (myTV, T3CH Upgrader, DVDProfiler, BBCPodRadio, Comics, Football, GoogleReader, reeplay.it, Metacritic, Phonebin, FileViewer,SVN Repo Installer (contributor)) available at Box.net
find quote
Tom_Monkeon Offline
Junior Member
Posts: 24
Joined: Apr 2008
Reputation: 0
Post: #55
Are you going to correct this in the downloadable script? How do i make this correct for the plugin version?
find quote
BigBellyBilly Offline
Skilled Python Coder
Posts: 959
Joined: Feb 2005
Reputation: 2
Location: UK
Post: #56
yep, fix is in for both script and plugin.

To fix plugin yourself, search for the (previously posted) regex and remove the ^ at beginning. It occurs twice, but I'd recommend changing it just for the Radio Live.


BBB

My Addons (myTV, T3CH Upgrader, DVDProfiler, BBCPodRadio, Comics, Football, GoogleReader, reeplay.it, Metacritic, Phonebin, FileViewer,SVN Repo Installer (contributor)) available at Box.net
find quote
Tom_Monkeon Offline
Junior Member
Posts: 24
Joined: Apr 2008
Reputation: 0
Post: #57
that's the second occurence right? i've just downloaded it from xbmc scripts again and it isn't fixed
find quote
BigBellyBilly Offline
Skilled Python Coder
Posts: 959
Joined: Feb 2005
Reputation: 2
Location: UK
Post: #58
Yes, the occurrence that's in the bit for Radio Live. Its not on xbmcscripts.com

But, to save any confusion I've released the changes I've made to the code repository (google svn) so next time you run your script it should self update to v2.2.1 Version number shown on top right of script and in changelog viewable from its mainmenu.
It should also update plugin on first run.

BBB

My Addons (myTV, T3CH Upgrader, DVDProfiler, BBCPodRadio, Comics, Football, GoogleReader, reeplay.it, Metacritic, Phonebin, FileViewer,SVN Repo Installer (contributor)) available at Box.net
find quote
Tom_Monkeon Offline
Junior Member
Posts: 24
Joined: Apr 2008
Reputation: 0
Post: #59
you da man, bra.
find quote
DoctorRad Offline
Junior Member
Posts: 1
Joined: Nov 2008
Reputation: 0
Question  Silence! Post: #60
Okay, so I think I got it downloaded and installed okay, but when I select a stream, I'm just getting silence. I get "Now playing" scrolling along near the bottom of the screen okay, but no sound. I'm using XBMC for Windows by the way, any idea what might be wrong?

Many thanks,

Dr. Matt, XBMC newbie.
(This post was last modified: 2008-11-30 01:52 by DoctorRad.)
find quote
Post Reply