CLI utility to ingest embedded json metadata from yt-dlp downloads to a SQLite database file
yt-dlp
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 25 lines 676 B view raw
1[package] 2name = "ydjr" 3version = "0.1.0" 4description = "CLI utility to ingest embedded json metadata from yt-dlp downloads to a SQLite database file" 5readme = "readme.md" 6repository = "https://github.com/0xBA5E64/ydjr" 7license = "GPLv3" 8edition = "2024" 9 10[profile.release] 11lto = true 12 13[dependencies] 14anyhow = "1.0.102" 15clap = { version = "4.6.1", features = ["derive"] } 16env_logger = "0.11.10" 17indicatif = "0.18.4" 18indicatif-log-bridge = "0.2.3" 19log = "0.4.29" 20matroska = "0.30.1" 21serde_json = "1.0.149" 22sqlx = { version = "0.8.6", features = ["sqlite", "migrate", "runtime-tokio"] } 23thiserror = "2.0.18" 24tokio = { version = "1.52.1", features = ["full"] } 25walkdir = "2.5.0"