From b9dde5f7941ae244ac13cfd96e0107575b85b48a Mon Sep 17 00:00:00 2001 From: georgekav2 <> Date: Mon, 13 Jun 2022 02:06:40 +0200 Subject: Add M4A GUI support --- ui/src/app/formats.ts | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ui/src/app/formats.ts') 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 @@ -22,6 +22,15 @@ export const Formats: Format[] = [ { id: 'audio', text: 'Audio Only' }, ], }, + { + id: 'm4a', + text: 'M4A', + qualities: [ + { id: 'best', text: 'Best' }, + { id: '192', text: '192 kbps' }, + { id: '128', text: '128 kbps' }, + ], + }, { id: 'mp4', text: 'MP4', -- cgit