aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2023-03-05 11:43:00 +0200
committerGitHub <noreply@github.com>2023-03-05 11:43:00 +0200
commitf1851bf4aa3b176139183d70841dc7986c02d796 (patch)
treeaf0b76527e8430283ccabf22db1862edd13801ac /ui/src/app/app.component.ts
parentupgraded yt-dlp (diff)
parentDefine the audio formats tuple in python backend (diff)
downloadmetube-f1851bf4aa3b176139183d70841dc7986c02d796.tar.gz
metube-f1851bf4aa3b176139183d70841dc7986c02d796.tar.bz2
metube-f1851bf4aa3b176139183d70841dc7986c02d796.zip
Merge pull request #230 from georgekav2/feature/add_vorbis_opus_wav
Add support for opus and wav
Diffstat (limited to 'ui/src/app/app.component.ts')
-rw-r--r--ui/src/app/app.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index 5cbb84c..5dbcd5b 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -94,7 +94,7 @@ export class AppComponent implements AfterViewInit {
}
isAudioType() {
- return this.quality == 'audio' || this.format == 'mp3' || this.format == 'm4a';
+ return this.quality == 'audio' || this.format == 'mp3' || this.format == 'm4a' || this.format == 'opus' || this.format == 'wav'
}
getMatchingCustomDir() : Observable<string[]> {
bgstack15