From bc401608830ba34831c31b74eb5661114bf284e7 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Sat, 25 Jun 2022 00:07:49 +0530 Subject: [PATCH] Fix `section_end` of clips Closes #4165 --- yt_dlp/YoutubeDL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 29a4e0a72..fc0689882 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -2619,7 +2619,7 @@ class YoutubeDL: if chapter or offset: new_info.update({ 'section_start': offset + chapter.get('start_time', 0), - 'section_end': offset + min(chapter.get('end_time', 0), duration), + 'section_end': offset + min(chapter.get('end_time', duration), duration), 'section_title': chapter.get('title'), 'section_number': chapter.get('index'), })