youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 30783c442de27dbab9f76a6293906daa8fa788d9
parent a50a8003a08bc67bc99363f6738147a394a43210
Author: Sergey M <dstftw@gmail.com>
Date:   Sat, 16 Jan 2016 07:20:03 +0600

Merge pull request #8245 from dstftw/auto-generate-title-fields

[YoutubeDL] Auto generate title fields corresponding to the *_number fields
Diffstat:
Myoutube_dl/YoutubeDL.py | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git 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():