about summary refs log tree commit diff stats
path: root/yt_dlp/src/lib.rs (unfollow)
Commit message (Collapse)Author
2024-08-22fix(storage/get_videos): Also order by `publish_date`Benedikt Peetz
All freshly added videos have a priority of 0. To ensure that they are still ordered, also sort by `publish_date`.
2024-08-22feat(select/file): Allow `--priority` argument to all functionsBenedikt Peetz
This allows setting a priority even on picked videos.
2024-08-22feat(download): Support limiting the downloader by maximal cache sizeBenedikt Peetz
2024-08-22test(benches/update): InitBenedikt Peetz
2024-08-22perf(raw_update.py)!: Don't fetch entries that are already in the databaseBenedikt Peetz
Testing has resulted in a speed-up of circa 3400% (updates of 1 subscription (which is already fully stored) are now ca. 1 sec from previously 34 sec). BREAKING CHANGE: The extractor hash is now calculated from the `id` and not the `webpage_url` field requiring a complete re-fetch of all stored videos. ```bash $# export your subscriptions: $ yt subs list --urls > subs.txt $# remove the old database $ mv ~/.local/share/yt/videos.sqlite{,.old} $# reimport the subsciptions $ yt subs import subs.txt $# refetch all videos $ yt upadate ```
2024-08-22build(package): Include python `blake3` dependencyBenedikt Peetz
2024-08-21chore(version): v0.1.3 v0.1.3Benedikt Peetz
2024-08-21fix(yt_dlp/info_json): Add another missing attributeBenedikt Peetz
2024-08-21chore(version): v0.1.2 v0.1.2Benedikt Peetz