diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-22 23:49:08 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-22 23:49:08 +0600 |
commit | ce1bafdce9f7f9e19c172b319a5ae75d1c85759b (patch) | |
tree | 498bc8c49bfc32cdf932a8f7d99250371316a81b /youtube_dl | |
parent | 9872e588c855e9c8cf456ddc4514e6e127f56322 (diff) |
[pbs] Clean up title construction rationale
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/pbs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py index ccbe2a9f3..ba6527b80 100644 --- a/youtube_dl/extractor/pbs.py +++ b/youtube_dl/extractor/pbs.py @@ -247,8 +247,8 @@ 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']) |