diff options
author | georgekav2 <> | 2022-06-13 02:06:40 +0200 |
---|---|---|
committer | georgekav <> | 2023-02-20 08:51:28 +0100 |
commit | b9dde5f7941ae244ac13cfd96e0107575b85b48a (patch) | |
tree | 507c8565789d19e58fb767f79f2def0adb217c1e /ui | |
parent | upgraded yt-dlp (diff) | |
download | metube-b9dde5f7941ae244ac13cfd96e0107575b85b48a.tar.gz metube-b9dde5f7941ae244ac13cfd96e0107575b85b48a.tar.bz2 metube-b9dde5f7941ae244ac13cfd96e0107575b85b48a.zip |
Add M4A GUI support
Diffstat (limited to 'ui')
-rw-r--r-- | ui/src/app/formats.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ui/src/app/formats.ts b/ui/src/app/formats.ts index a3bf3e8..7668e49 100644 --- a/ui/src/app/formats.ts +++ b/ui/src/app/formats.ts @@ -23,6 +23,15 @@ export const Formats: Format[] = [ ], }, { + id: 'm4a', + text: 'M4A', + qualities: [ + { id: 'best', text: 'Best' }, + { id: '192', text: '192 kbps' }, + { id: '128', text: '128 kbps' }, + ], + }, + { id: 'mp4', text: 'MP4', qualities: [ |