diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-06-01 23:29:45 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-06-01 23:29:45 +0700 |
commit | 39d4c1be4d601a3297157315652637ca52000965 (patch) | |
tree | 1a95557a14157b07d997adccce9c1ebf226d6729 /youtube_dl/extractor | |
parent | f7a747ce59036dca4451037bff4b75cf358e4ad5 (diff) |
[youtube] Improve chapters extraction (closes #13247)
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 40ac1a019..bf4f4e139 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1353,10 +1353,16 @@ class YoutubeIE(YoutubeBaseInfoExtractor): start_time = parse_duration(time_point) if start_time is None: continue + if start_time > duration: + break end_time = (duration if next_num == len(chapter_lines) else parse_duration(chapter_lines[next_num][1])) if end_time is None: continue + if end_time > duration: + end_time = duration + if start_time > end_time: + break chapter_title = re.sub( r'<a[^>]+>[^<]+</a>', '', chapter_line).strip(' \t-') chapter_title = re.sub(r'\s+', ' ', chapter_title) |