🧐 Rationale
Remove dependency on Python's yt-dlp.
📝 Description
Currently, yt-dlp package is being used to download YouTube videos, both requiring a Python dependency and a system call.
|
let mut child = Command::new("yt-dlp") |
However, there is a crate for Rust that achieves the same purpose. It's still a work in progress, but might be a fitting replacement in the future.
🧐 Rationale
Remove dependency on Python's
yt-dlp.📝 Description
Currently,
yt-dlppackage is being used to download YouTube videos, both requiring a Python dependency and a system call.parrot/src/sources/youtube.rs
Line 60 in 437e8b2
However, there is a crate for Rust that achieves the same purpose. It's still a work in progress, but might be a fitting replacement in the future.