tydle 0.1.15

YouTube video extractor written in Rust that can be used anywhere in web or native environments, based on an extremely small subset of yt-dlp.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "cipher")]
mod cipher;
mod extractor;
mod utils;

pub mod cache;
pub mod cookies;
#[cfg(not(target_arch = "wasm32"))]
pub mod ffi;
#[cfg(feature = "logging")]
pub mod logger;
pub mod tydle;
pub mod yt_interface;

pub use crate::cache::*;
pub use crate::tydle::*;
pub use crate::yt_interface::*;