Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Support for partial timeslice downloading of a video (start time, end time) #12347
Comments
|
Duplicate of #622 |
|
Worth adding the "request" label to this issue? I searched using that label an hour ago but didn't find anything so created #16665 which is now rightly closed as a duplicate I know that #622 already has the "request" label but the word "range" wasn't one of the searches I tried so I didn't find it, but I would have found this |
It ought to be possible to specify downloading a partial timeslice of a video, e.g.
ffmpeg's-ss $seek_positionand-t $durationoptions, ideally with a better UI (e.g. start time and end time, at least as an option).I realize we an sort of achieve this today by passing args to ffmpeg, e.g.
youtube-dl ... --external-downloader ffmpeg --external-downloader-args '-ss 3718.538 -t 60'or perhaps as a postprocessor arg where appropriate.
But that's not very user-friendly, and knowing when to choose an external downloader versus a postprocessor may not be obvious.
I guess maybe this could just be a FAQ entry, but I think some options would be a better goal.
I realize it probably cannot be made to work in all cases.