Wow, that's an amazing effort! What a generous thing to devote your time to - I'll look forward to the results.
I'm not sure how you're planning to upload them back to the archive, but be aware that the command line tools[1] sometimes have issues with uploading larger files. I've found that the command-line tools are more reliable (supporting more retries by default) than the direct Python API.
Also, by default, archive.org will "derive" the uploaded video into a variety of different formats (this is normally a good thing, but I'm mentioning it since you might have already re-encoded them yourself and may want to avoid the system from "messing" with them). You can turn off derivation with a command line flag "--no-derive" to the "ia upload" tool (or a "queue_derive=False" parameter to internetarchive.upload() if using the Python API).
(source: I'm currently uploading thousands of local government videos, many of them 3+ hours long, to archive.org. With this many videos, I have scripts checking the hashes of uploaded videos to make sure the process worked before deleting any source files on my machine.)
Comments
Wow, that's an amazing effort! What a generous thing to devote your time to - I'll look forward to the results.
I'm not sure how you're planning to upload them back to the archive, but be aware that the command line tools[1] sometimes have issues with uploading larger files. I've found that the command-line tools are more reliable (supporting more retries by default) than the direct Python API.
Also, by default, archive.org will "derive" the uploaded video into a variety of different formats (this is normally a good thing, but I'm mentioning it since you might have already re-encoded them yourself and may want to avoid the system from "messing" with them). You can turn off derivation with a command line flag "--no-derive" to the "ia upload" tool (or a "queue_derive=False" parameter to internetarchive.upload() if using the Python API).
(source: I'm currently uploading thousands of local government videos, many of them 3+ hours long, to archive.org. With this many videos, I have scripts checking the hashes of uploaded videos to make sure the process worked before deleting any source files on my machine.)
[1] https://archive.org/services/docs/api/internetarchive/
My current plan is to upload each season as a single item, rather than individual episodes.