Crates.io | yt-backup |
lib.rs | yt-backup |
version | 0.0.2 |
source | src |
created_at | 2023-09-21 16:03:36.215914 |
updated_at | 2023-09-21 16:21:38.68755 |
description | Backup youtube channels and playlists |
homepage | |
repository | https://github.com/MarkTuddenham/yt-backup |
max_upload_size | |
id | 979633 |
size | 46,562 |
Backup your favourite YouTube channels using yt-dlp
Install from crates.io
cargo install --locked yt-backup
Run with the default config location <config_dir>/yt-backup/config.toml
or ./config.toml
yt-backup
or specify a config path
yt-backup --config /path/to/config.toml
Example configuration:
root_dir_path = "/path/to/backup/" # directory to download everything to (default "./")
link_type = "hard" # "hard" or "soft" use symlinks or hard links (default "hard")
ytdlp_config_path = "/path/to/configs/yt-dlp.config"
playlists = [ # download the below playlists but unassociated with a channel.
"PLUeHTafWecAVblNx278wBxkIQXw7iJws3"
]
[[channels]]
name = "JapaneseToolsAustralia"
# url defaults to "https://youtube.com/c/<name>"
[[channels]]
name = "English Country Life"
url = "https://www.youtube.com/channel/UCGzRPk4-weg4odbYNCjujJA"
Example yt-dlp configuration:
-f "bestvideo[height>=720]+bestaudio/best"
-ciw
--all-subs
--embed-subs
--no-progress
--no-colors
--write-thumbnail
--write-description
-r 3M
docker run \
-v $(pwd)/path/to/video/store:/app/data \
-v $(pwd)/yt-dlp.config:/app/yt-dlp.config \
-v $(pwd)/config.toml:/app/config.toml \
--name yt-backup \
ghcr.io/marktuddenham/yt-backup:latest
with config
root_dir_path = "/app/data/"
ytdlp_config_path = "/app/yt-dlp.config"