about summary refs log tree commit diff stats
path: root/crates/yt_dlp/src/lib.rs (follow)
Commit message (Collapse)AuthorAge
* style(treewide): Re-formatBenedikt Peetz2025-02-16
|
* feat(crates/yt_dlp/lib): Wrap `process_ie_result` functionBenedikt Peetz2025-02-16
|
* fix(crates/yt_dlp/lib): Actually resolve the `entries` generator objectBenedikt Peetz2025-02-16
| | | | Previously, we just ignored it.
* fix(crates/yt_dlp/lib): Swallow all error logs from yt_dlpBenedikt Peetz2025-02-16
| | | | | | These are already returned as `PythonError`s and thus often printed twice. As such, removing the python print gives the consumer more liberty of how to handle the error.
* fix(crates/yt_dlp/progress_hook): Print the progress to stderrBenedikt Peetz2025-02-16
|
* fix(crates/yt_dlp): Actually return errors instead of panicingBenedikt Peetz2025-02-14
|
* fix(crates/yt_dlp): Avoid printing the file extension in the progress displayBenedikt Peetz2025-02-14
| | | | The file extension should not be relevant for a user.
* build(treewide): Update dependenciesBenedikt Peetz2024-11-16
|
* fix(yt_dlp/progress_hook): Mark estimates as suchBenedikt Peetz2024-11-04
| | | | | Currently, the wildly changing estimate numbers are not differentiated from the valid numbers.
* style(treewide): FormatBenedikt Peetz2024-10-29
|
* fix(yt_dlp/lib/progress_hook): Avoid overriding previous messagesBenedikt Peetz2024-10-29
| | | | Otherwise, the hook would simply cancel the already printed line.
* fix(yt_dlp/lib/progress_hook): Estimate `total_byte_size` betterBenedikt Peetz2024-10-19
| | | | | | This still is sort of weird, because the total byte size changes whilst downloading, but it is still immensely better than just putting a `0` there.
* refactor(treewide): Conform to the clippy and rust lintsBenedikt Peetz2024-10-14
|
* feat(crates/yt_dlp): Make saving the downloaded info.json configurableBenedikt Peetz2024-10-07
| | | | | This avoids having to recompile the application to save the downloaded info.json, and simply requires setting an environment variable.
* refactor(treewide): Conform to `cargo clippy`Benedikt Peetz2024-08-25
|
* docs(yt_dlp/progress_hook): Add a note about the possibility to calculate ↵Benedikt Peetz2024-08-25
| | | | video sizes
* fix(yt_dlp/info_json): Accept further missing fields in the info_jsonBenedikt Peetz2024-08-25
|
* fix(yt_dlp/lib/hook): Don't print download progress, when debug is loggedBenedikt Peetz2024-08-25
| | | | This makes interpreting the debug output easier.
* refactor(yt_dlp): Also move the `crates` subdirectoryBenedikt Peetz2024-08-23