diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-05-26 18:11:35 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-05-26 18:14:48 +0200 |
| commit | dd135af27160f954c8f9c937d1fdb5b2a1032ccf (patch) | |
| tree | 36814abb76a4c5c17ccd3eb7ff9c6df291ad08c0 /crates/yt_dlp/src/lib.rs | |
| parent | build(update.sh): Remove all redundant `update.sh` files (diff) | |
| download | yt-dd135af27160f954c8f9c937d1fdb5b2a1032ccf.zip | |
feat(yt/download/hooks): Show progress of post-processors
Otherwise, `yt` will just show everything downloaded, but does not continue.
Now users see, what is _actually_ happening.
Diffstat (limited to 'crates/yt_dlp/src/lib.rs')
| -rw-r--r-- | crates/yt_dlp/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/yt_dlp/src/lib.rs b/crates/yt_dlp/src/lib.rs index 4b252de..abe766d 100644 --- a/crates/yt_dlp/src/lib.rs +++ b/crates/yt_dlp/src/lib.rs @@ -27,7 +27,7 @@ use crate::{ pub mod info_json; pub mod options; pub mod post_processors; -pub mod progress_hook; +pub mod hooks; pub mod python_error; #[macro_export] |
