[generic] Generalize BBC iPlayer playlist extraction

pull/8/head
Sergey M․ 2015-01-02 20:55:09 +06:00
rodzic 8399267671
commit 476eae0c2a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -908,7 +908,7 @@ class GenericIE(InfoExtractor):
# Look for BBC iPlayer embed
matches = re.findall(r'setPlaylist\("(https?://www\.bbc\.co\.uk/iplayer/[^/]+/[\da-z]{8})"\)', webpage)
if matches:
return self.playlist_result([self.url_result(video_url, ie='BBCCoUk') for video_url in matches])
return _playlist_from_matches(matches, ie='BBCCoUk')
# Look for embedded RUTV player
rutv_url = RUTVIE._extract_url(webpage)