From b3a589f1a9d4f84e180623cb32cb826579f52553 Mon Sep 17 00:00:00 2001 From: asuyou Date: Mon, 25 Oct 2021 17:15:09 +0100 Subject: Added simple MP3 support --- app/ytdl.py | 8 ++++++++ ui/src/app/app.component.ts | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/app/ytdl.py b/app/ytdl.py index f9084e3..0400877 100644 --- a/app/ytdl.py +++ b/app/ytdl.py @@ -39,6 +39,14 @@ class Download: vfmt, afmt = '', '' if format == 'mp4': vfmt, afmt = '[ext=mp4]', '[ext=m4a]' + elif format == 'mp3': + afmt = '/best' + ytdl_opts["writethumbnail"] = True + ytdl_opts["postprocessors"] = [ + {"key": "FFmpegExtractAudio", "preferredcodec": "mp3"}, + {"key": "EmbedThumbnail"}, + ] + if quality == 'best': self.format = f'bestvideo{vfmt}+bestaudio{afmt}/best{vfmt}' elif quality in ('1440p', '1080p', '720p', '480p'): diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts index 55f7e6e..a86bbe1 100644 --- a/ui/src/app/app.component.ts +++ b/ui/src/app/app.component.ts @@ -24,7 +24,8 @@ export class AppComponent implements AfterViewInit { quality: string; formats: Array = [ {id: "any", text: "Any"}, - {id: "mp4", text: "MP4"} + {id: "mp4", text: "MP4"}, + {id: "mp3", text: "MP3"} ]; format: string; addInProgress = false; -- cgit