diff options
author | asuyou <asuyou@users.noreply.github.com> | 2021-10-25 17:15:09 +0100 |
---|---|---|
committer | asuyou <asuyou@users.noreply.github.com> | 2021-10-25 17:15:09 +0100 |
commit | b3a589f1a9d4f84e180623cb32cb826579f52553 (patch) | |
tree | 4acc6828ec2f0c90be469c641430bc670bdf307a /ui/src | |
parent | upgraded yt-dlp (diff) | |
download | metube-b3a589f1a9d4f84e180623cb32cb826579f52553.tar.gz metube-b3a589f1a9d4f84e180623cb32cb826579f52553.tar.bz2 metube-b3a589f1a9d4f84e180623cb32cb826579f52553.zip |
Added simple MP3 support
Diffstat (limited to 'ui/src')
-rw-r--r-- | ui/src/app/app.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
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<Object> = [ {id: "any", text: "Any"}, - {id: "mp4", text: "MP4"} + {id: "mp4", text: "MP4"}, + {id: "mp3", text: "MP3"} ]; format: string; addInProgress = false; |