1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//! A command-line utility and library for downloading HLS and DASH video streams.
//!
//! `vsd` enables concurrent chunk/segment downloading, automatic decryption of AES-128
//! and Sample-AES encrypted streams, PSSH DRM metadata extraction, and automated muxing
//! using ffmpeg.
//!
//! # Cargo Features
//!
//! The following Cargo features can be enabled or disabled:
//!
//! | Feature | Description |
//! |-------|-------------|
//! | `capture` (*default*) | Enables the `capture` sub-command. |
//! | `license` (*default*) | Enables the `license` sub-command. |
//! | `rustls-tls` (*default*) | Enables the `rustls` TLS backend for the [reqwest] crate. |
//! | `native-tls` | Enables the `native-tls` TLS backend for the [reqwest] crate. |
//! | `native-tls-vendored` | Enables the `native-tls-vendored` TLS backend for the [reqwest] crate. |
//!
//! # Examples
//!
//! Below are examples demonstrating how to use the library to download files and playlists.
//!
//! ## `examples/playlist_dl.rs`
//!
//! ```rust,no_run
//! ```
//!
//! ## `examples/file_dl.rs`
//!
//! ```rust,no_run
//! ```
//!
//! [reqwest]: https://docs.rs/reqwest/latest/reqwest/#optional-features
pub use Args;
pub use ;
pub use ;
pub use reqwest;
pub use tokio;
pub use tokio_util;
pub use ;
pub use vsd_mp4;