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.
Youtube-dl not writing to archive file when --skip-download is active #16382
Comments
|
This is expected behavior. |
Before submitting an issue make sure you have:
What is the purpose of your issue?
My current problem is that when I run youtube-dl with --skip-download it no longer writes to the archive file.
I'm attempting to check if youtube video IDs from a text file still lead to a video, and if they still do, write the ID to another text file. My goal is to later with another script check which IDs are still active and which aren't (though this doesn't have to be covered in my problem).
My entire current script is
set "urle=" for /F "tokens=*" %%A in (youtube-dl-archive.txt) do ( for /f "tokens=2" %%G IN ("%%A") DO ( echo %%G youtube-dl https://www.youtube.com/watch?v=%%G --add-metadata --download-archive youtube-dl-archive-verify.txt --skip-download ) )