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.
Unreasonable Logic on --download-archive FILE feature and --date-after #17031
Comments
|
|
If possible, please add 1. into documents( that wasn't specified) |
|
Anyway, do I have any option to "limit" youtube-dl to check only the very first videos given in the list? |
Please follow the guide below
xinto all the boxes [ ] relevant to your issue (like this:[x])Make sure you are using the latest version: run
youtube-dl --versionand ensure your version is 2018.07.10. If it's not, read this FAQ entry and update. Issues with outdated version will be rejected.Before submitting an issue make sure you have:
What is the purpose of your issue?
The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your issue
Description of your issue, suggested solution and other information
Issue1:
According to the description
feature is implemented to avoid duplicated download of specific video
but the question is, when I used
After the download of the "best" video, youtube-dl will recognize the video as duplicated and skip the download on the "worst" video
I used --download-archive feature because I intended to run youtube-dl periodically to stay synchronized with a channel, without downloading the same video again and again.
After some extra testing, I am aware that youtube-dl will abort the download if there's already a video there in the target path, and I don't necessarily need to use that command,
but doesn't
sounds unreasonable?
Issue2:
When the option "--date-after" is applied, youtube-dl shouldn't download anything uploaded before the given date.
But when presented with a channel(which automatically lists videos in reverse order of time)
youtube-dl will still attempt to test EVERY video to see if it meets the criteria
Should this be recognized as a bug? Since I'm trying to stay synced with a channel which has 2000+ videos, testing every video in a pass would be very time consuming, and would probably result in a 402 abuse ban(luckily that I tested this manually)
Yes, I know that I can avoid that by setting
As youtube-dl would automatically abort after given downloads. By fine-tuning these two options, it would be possible to stay synced and avoid excessive page retrieves.
but for those channels with inconsistent updates, this could still be annoying and cause de-sync
Any luck that these problems would be fixed in the future?
BTW: thanks for all the work done, this tool saved my day :D