[extractor/youtube] Do not warn on duplicate chapters

Eg: vYbaM8w8yzw
This commit is contained in:
pukkandan 2022-09-27 08:25:31 +05:30
parent 1fb53b946c
commit 709ee21417
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39
1 changed files with 3 additions and 2 deletions

View File

@ -3034,8 +3034,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
self.report_warning(f'Incomplete chapter {idx}')
elif chapters[-1]['start_time'] <= chapter['start_time'] <= duration:
chapters.append(chapter)
else:
self.report_warning(f'Invalid start time for chapter "{chapter["title"]}"')
elif chapter not in chapters:
self.report_warning(
f'Invalid start time ({chapter["start_time"]} < {chapters[-1]["start_time"]}) for chapter "{chapter["title"]}"')
return chapters[1:]
def _extract_comment(self, comment_renderer, parent=None):