X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fpbs.py;h=2adfde9091b5ceae50abd8f0c79abd129c259751;hb=cc7fec5818254f4679896823c7de9d17f50201ca;hp=dee4af6f149eebfd949996199e69586233c67078;hpb=35f76e0061373ad344b3cbea30422c586abc16b5;p=youtube-dl diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py index dee4af6f1..2adfde909 100644 --- a/youtube_dl/extractor/pbs.py +++ b/youtube_dl/extractor/pbs.py @@ -54,6 +54,18 @@ class PBSIE(InfoExtractor): 'duration': 801, }, }, + { + 'url': 'http://www.pbs.org/wnet/gperf/dudamel-conducts-verdi-requiem-hollywood-bowl-full-episode/3374/', + 'md5': 'c62859342be2a0358d6c9eb306595978', + 'info_dict': { + 'id': '2365297708', + 'ext': 'mp4', + 'description': 'md5:68d87ef760660eb564455eb30ca464fe', + 'title': 'Dudamel Conducts Verdi Requiem at the Hollywood Bowl - Full', + 'duration': 6559, + 'thumbnail': 're:^https?://.*\.jpg$', + } + } ] def _extract_ids(self, url): @@ -75,7 +87,7 @@ class PBSIE(InfoExtractor): return media_id, presumptive_id url = self._search_regex( - r'', + r'', webpage, 'player URL') mobj = re.match(self._VALID_URL, url)