How to download a specific part of YouTube video?

I want to download a part of a long video - about one hour and a half - but i don’t know how and the apps which use command line makes me so confused , Right now iam using Seal which is only available for android , And for Windows iam using nothing actually.

So is there anyway to download a specific part of YouTube video using Seal or another trusted app ???

while i’m sure there’s front-ends available, yt-dlp is a powerful, albeit command-line program

usage in general is as simple as $ yt-dlp <video_page_url>

for what you want:

$ yt-dlp --download-sections "*START_SECONDS-END_SECONDS" <video_page_url>

just replace START_SECONDS and END_SECONDS

example:

$ yt-dlp --download-sections "*100-700" https://www.youtube.com/watch?v=qIeJOFhAGAQ

4 Likes