youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 222e11d4ae7d424cd71d9ba87762ce169c0a8c87
parent 7d682f0acb44d72a2c1d0d52fae151f3c273874d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  6 Dec 2015 16:41:12 +0600

[bbc] Add another pattern for playlist.sxml (Closes #7743)

Diffstat:
Myoutube_dl/extractor/bbc.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py @@ -733,6 +733,7 @@ class BBCIE(BBCCoUkIE): # article with multiple videos embedded with playlist.sxml (e.g. # http://www.bbc.com/sport/0/football/34475836) playlists = re.findall(r'<param[^>]+name="playlist"[^>]+value="([^"]+)"', webpage) + playlists.extend(re.findall(r'data-media-id="([^"]+/playlist\.sxml)"', webpage)) if playlists: entries = [ self._extract_from_playlist_sxml(playlist_url, playlist_id, timestamp)