diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-01-16 00:09:54 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-01-16 00:09:54 +0600 |
commit | 33d2fc2f640c32b4b5469ecb3a48e7e209844407 (patch) | |
tree | 66359538dae1118c15d0f8bd55c2dcf89800fcc6 /youtube_dl/YoutubeDL.py | |
parent | a78d6a9bb1387db4aa29f1ac1e4edad8d2061783 (diff) |
[YoutubeDL] Auto generate title fields corresponding to the *_number fields
Auto generate title fields corresponding to the *_number fields when missing in order to always have clean titles. This is very common for TV series.
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 6b73b8e06..0748fbba0 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1244,6 +1244,12 @@ class YoutubeDL(object): except (ValueError, OverflowError, OSError): pass + # Auto generate title fields corresponding to the *_number fields when missing + # in order to always have clean titles. This is very common for TV series. + for field in ('chapter', 'season', 'episode'): + if info_dict.get('%s_number' % field) is not None and not info_dict.get(field): + info_dict[field] = '%s %d' % (field.capitalize(), info_dict['%s_number' % field]) + subtitles = info_dict.get('subtitles') if subtitles: for _, subtitle in subtitles.items(): |