X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=youtube_dl%2Fextractor%2Fpbs.py;h=a53479aad762d2fbe8095867a625df996bbf1473;hb=1de5cd3ba51ce67d9a1cd3b40157058e78e46692;hp=ccbe2a9f3967a1285310c58d46619bebe18367ef;hpb=0eacd2aaae7d4150d9cf4e1dd8ffc2ebc7ab030b;p=youtube-dl diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py index ccbe2a9f3..a53479aad 100644 --- a/youtube_dl/extractor/pbs.py +++ b/youtube_dl/extractor/pbs.py @@ -247,11 +247,11 @@ class PBSIE(InfoExtractor): 'url': closed_captions_url, }] - # video.pbs.org video.pbs.org/videoInfo/... frequently provides an obscure 'title' value, like - # 'Full Episode', 'Episode 5', etc. prepend program->title + # info['title'] is often incomplete (e.g. 'Full Episode', 'Episode 5', etc) + # Try turning it to 'program - title' naming scheme if possible alt_title = info.get('program', {}).get('title') if alt_title: - info['title'] = alt_title + ' - ' + re.sub(r'^' + alt_title + '[\s\-\:]+', '', info['title']) + info['title'] = alt_title + ' - ' + re.sub(r'^' + alt_title + '[\s\-:]+', '', info['title']) return { 'id': video_id,