youtube2zim
allows you to create a ZIM file
from a Youtube Channel/Username or one-or-more Playlists.
It downloads the videos (webm
or mp4
extension – optionally
recompress them in lower-quality, smaller size), the thumbnails, the
subtitles and the authors' profile pictures; It then produces JSON files containing content for the channel, playlists, and videos, which are used by the UI, which is a Vue.js application that needs to be compiled as a static website with Vite and is then embedded inside the ZIM.
youtube2zim
adheres to openZIM's Contribution Guidelines.
youtube2zim
has implemented openZIM's Python bootstrap, conventions and policies v1.0.2.
For more details / advanced usage than what is in this README, see the Manual and FAQ/FEE.
# Requirements
Here comes a few different ways to install youtube2zim
.
youtube2zim
is a Python3 software. If you are not using the Docker image,
you are advised to use it in a virtualenv to avoid installing software
dependencies on your system. Hatch is the proper tool to create the
virtualenv and install the software locally. Ensure to use proper Python version as well (see
pyproject.toml).
If you do not already have it on your system, install hatch to build the software and manage virtual environments (you might be interested by our detailed Developer Setup as well, especially regarding how to configure hatch globally for proper detection of its virtual environments by Visual Studio Code).
pip3 install hatch
Start a hatch shell: this will install software including dependencies in an isolated virtual environment.
cd scraper
hatch shell
youtube2zim --help # Display youtube2zim help
docker run -v my_dir:/output ghcr.io/openzim/youtube youtube2zim --help
youtube2zim
uses Youtube API v3 to fetch data from Youtube. You thus need to provide an API_KEY
to use the scraper.
To get an API Key:
- Connect to Google Developers Console
- Create a new Project then Select it.
- When asked, choose Create Credentials and select the API Key type. (Credentials page)
You can then create a ZIM from a singe channel / user / handle like Vsauce
:
youtube2zim --api-key "<your-api-key>" --id "Vsauce" --name "tests_hi_avanti"
When scraping a channel, you must pass one single value in --id
and it can be the handle, user, or even the corresponding technical ID (see FAQ/FEE for more details).
Or you can create a ZIM from two playlists like PL3rEvTTL-Jm8cBdskZoQaDTlDT4t7F6kp
and PL3rEvTTL-Jm_OuyYpMfxtJW3Mcr9fFS2Z
:
youtube2zim --api-key "<your-api-key>" --id "PL3rEvTTL-Jm8cBdskZoQaDTlDT4t7F6kp,PL3rEvTTL-Jm_OuyYpMfxtJW3Mcr9fFS2Z" --name "tests_hi_avanti"
When scraping playlists, you can pass multiple playlist IDs separated by a comma in --id
.
For more details / advanced usage, see the Manual.
- Your API_KEY is subject to usage quotas (10,000 requests/day by default). Be careful to not waste your quota, especially when scraping large channels.
youtube2zim
produces a single ZIM file for a youtube request (channel
, user
, handle
, playlist
).
youtube2zim-playlists
allows you to automatically create one ZIM file per playlist of a given channel or user instead.
This script is a wrapper around youtube2zim
and is bundled with the main package.
Sample usage:
youtube2zim-playlists --indiv-playlists --api-key XXX --id Vsauce --playlists-name="vsauce_en_playlist-{playlist_id}"
Those are the required arguments for youtube2zim-playlists
but you can also pass any regular youtube2zim
argument. Those will be forwarded to youtube2zim
(which will be run independently for each playlist).
For more details / advanced usage, see the Manual.
Before contributing be sure to check out the CONTRIBUTING.md guidelines.