feat: downloader: add audio tagging

This commit is contained in:
ThetaDev 2024-07-31 03:27:27 +02:00
parent e608811e5f
commit 1e1315a837
No known key found for this signature in database
GPG key ID: E319D3C5148D65B6
7 changed files with 323 additions and 29 deletions

View file

@ -329,6 +329,8 @@ async fn download_video(
.rustypipe(rp)
.stream_filter(filter)
.progress_bar(multi)
.audio_tag()
.crop_cover()
.build();
let mut q = target.apply(dl.download_id(id));
if let Some(player_type) = player_type {
@ -361,6 +363,8 @@ async fn download_videos(
.rustypipe(rp)
.stream_filter(filter)
.progress_bar(multi.clone())
.audio_tag()
.crop_cover()
.path_precheck()
.build();