mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[extractor] Do not warn for invalid chapter data in description
Fixes https://github.com/yt-dlp/yt-dlp/issues/6811#issuecomment-1509876209
This commit is contained in:
parent
7666b93604
commit
84ffeb7d5e
1 changed files with 8 additions and 4 deletions
|
@ -3658,18 +3658,22 @@ def _extract_chapters_helper(self, chapter_list, start_function, title_function,
|
||||||
'start_time': start_function(chapter),
|
'start_time': start_function(chapter),
|
||||||
'title': title_function(chapter),
|
'title': title_function(chapter),
|
||||||
} for chapter in chapter_list or []]
|
} for chapter in chapter_list or []]
|
||||||
if not strict:
|
if strict:
|
||||||
|
warn = self.report_warning
|
||||||
|
else:
|
||||||
|
warn = self.write_debug
|
||||||
chapter_list.sort(key=lambda c: c['start_time'] or 0)
|
chapter_list.sort(key=lambda c: c['start_time'] or 0)
|
||||||
|
|
||||||
chapters = [{'start_time': 0}]
|
chapters = [{'start_time': 0}]
|
||||||
for idx, chapter in enumerate(chapter_list):
|
for idx, chapter in enumerate(chapter_list):
|
||||||
if chapter['start_time'] is None:
|
if chapter['start_time'] is None:
|
||||||
self.report_warning(f'Incomplete chapter {idx}')
|
warn(f'Incomplete chapter {idx}')
|
||||||
elif chapters[-1]['start_time'] <= chapter['start_time'] <= duration:
|
elif chapters[-1]['start_time'] <= chapter['start_time'] <= duration:
|
||||||
chapters.append(chapter)
|
chapters.append(chapter)
|
||||||
elif chapter not in chapters:
|
elif chapter not in chapters:
|
||||||
self.report_warning(
|
issue = (f'{chapter["start_time"]} > {duration}' if chapter['start_time'] > duration
|
||||||
f'Invalid start time ({chapter["start_time"]} < {chapters[-1]["start_time"]}) for chapter "{chapter["title"]}"')
|
else f'{chapter["start_time"]} < {chapters[-1]["start_time"]}')
|
||||||
|
warn(f'Invalid start time ({issue}) for chapter "{chapter["title"]}"')
|
||||||
return chapters[1:]
|
return chapters[1:]
|
||||||
|
|
||||||
def _extract_chapters_from_description(self, description, duration):
|
def _extract_chapters_from_description(self, description, duration):
|
||||||
|
|
Loading…
Reference in a new issue