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.
Twitch fails when --download-archive present. #2705
Comments
|
… on second thought, justintv might need to return something more unique to work with download archive, probably at least |
|
My understanding is that the numeric Id is already unique (it's certainly large enough). The justin.tv extractor is at fault here, not the download_archive code, since video IDs are supposed to. Fixed, thank you very much for the report! |
I have a --download-archive clause present in
~/.config/youtube-dl.conf, and use--download-archive /dev/nullto circumvent this when needed. However, twitch URLs appear to not produce an ID that the archiving system can use, producing this error:Moving my youtube-dl.conf aside and retrying (without any --download-archive option) works fine. I pulled down a local copy and was able to fix this bug (for me) by coercing
info_dict[id]to string:I'm not sure if this is the right fix or if extractors should be forced to ensure id is a string?