Added simple MP3 support

This commit is contained in:
asuyou
2021-10-25 17:15:09 +01:00
parent 85436c158a
commit b3a589f1a9
2 changed files with 10 additions and 1 deletions

View File

@@ -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;