刘凡 9ff4d1d109 add S3,archive,truncate | 2 years ago | |
---|---|---|
.. | ||
.github | 2 years ago | |
tests | 2 years ago | |
tubeup | 2 years ago | |
.gitignore | 2 years ago | |
LICENSE | 2 years ago | |
Makefile | 2 years ago | |
README.md | 2 years ago | |
setup.cfg | 2 years ago | |
setup.py | 2 years ago | |
test-requirements.txt | 2 years ago |
tubeup
uses yt-dlp to download a Youtube video (or any other provider supported by YTDL-P), and then uploads it with all metadata to the Internet Archive using the python module internetarchive.
It was designed by the Bibliotheca Anonoma to archive entire Youtube accounts and playlists to the Internet Archive.
This script strongly recommends Linux or some sort of POSIX system (such as Mac OS X), preferably from a rented VPS and not your personal machine or phone.
WLS2 for Windows instructions below.
ffmpeg
pip3 (typically python3-pip
) and git.For Debian/Ubuntu:
sudo apt install ffmpeg python3-pip git
Use pip3 to install the required python3 packages. At a minimum Python 3.7.13 and up is required (latest Python preferred).
python3 -m pip install -U pip tubeup
If you don't already have an Internet Archive account, register for one to give the script upload privileges.
Configure internetarchive
with your Internet Archive account.
ia configure
You will be prompted for your login credentials for the Internet Archive account you use.
Once configured to upload, you're ready to go.
Start archiving a video by running the script on a URL. Or multiple URLs at once. Anything supported by yt-dlp.. Many sites are supported. For YouTube, this includes account URLs and playlist URLs.
tubeup <url>
Each archived video gets its own Archive.org item. Check out what you've uploaded at
http://archive.org/details/@yourusername
.
Perodically upgrade tubeup
and its dependencies by running:
python3 -m pip install -U tubeup pip
Dockerized tubeup is provided by etnguyen03/docker-tubeup. Instructions are provided.
sudo apt update ; sudo apt upgrade
pip
.ffmpeg
.internetarchive
for your Archive.org account.Usage:
tubeup <url>... [--username <user>] [--password <pass>]
[--metadata=<key:value>...]
[--cookies=<filename>]
[--proxy <prox>]
[--quiet] [--debug]
[--use-download-archive]
[--output <output>]
[--get-comments]
[--ignore-existing-item]
tubeup -h | --help
tubeup --version
Arguments:
<url> yt-dlp compatible URL to download.
Check yt-dlp documentation for a list
of compatible websites.
--metadata=<key:value> Custom metadata to add to the archive.org
item.
Options:
-h --help Show this screen.
--proxy <prox> Use a proxy while uploading.
--username <user> Provide a username, for sites like Nico Nico Douga.
--password <pass> Provide a password, for sites like Nico Nico Douga.
--ignore-existing-item Ignores the check for existing items on archive.org.
--use-download-archive Record the video url to the download archive.
This will download only videos not listed in
the archive file. Record the IDs of all
downloaded videos in it.
--quiet Just print errors.
--debug Print all logs to stdout.
--output <output> yt-dlp output template.
You can specify custom metadata with the --metadata
flag.
For example, this script will upload your video to the Community Video collection by default.
You can specify a different collection with the --metadata
flag:
tubeup --metadata=collection:opensource_audio <url>
Any arbitrary metadata can be added to the item, with a few exceptions. You can learn more about archive.org metadata here.
Retrieving video comments can be slow, and as such is disabled by default. This functionality can be enabled using the --get-comments
flag.
Archive.org users can upload to four open collections:
opensource_audio
.opensource_software
.opensource
.opensource_movies
.Note that care should be taken when uploading entire channels. Read the appropraite section in this guide for creating collections, and contact the collections staff if you're uploading a channel or multiple channels on one subject (gaming or horticulture for example). Internet Archive collections staff will either create a collection for you or merge any uploaded items based on the Youtube uploader name that are already up into a new collection.
Dumping entire channels into Community Video is abusive and may get your account locked. Talk to the Internet Archive admins first before doing large uploads; it's better to ask for guidence or help first than run afoul of the rules.
If you do not own a collection you will need to be added as an admin for that collection if you want to upload to it. Talk to the collection owner or staff if you need assistance with this.
yt-dlp
/internetarchive
library calls, cleansing item output, subtitles collection, and numerous small improvements over time.Copyright (C) 2020 Bibliotheca Anonoma
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.