Support wma and wav audio files

pull/2482/head
Chocobozzz 2020-02-07 08:51:28 +01:00
parent bc053fb303
commit 99d362de0c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 6 additions and 1 deletions

View File

@ -293,6 +293,8 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy
}
private isAudioFile (filename: string) {
return filename.endsWith('.mp3') || filename.endsWith('.flac') || filename.endsWith('.ogg')
const extensions = [ '.mp3', '.flac', '.ogg', '.wma', '.wav' ]
return extensions.some(e => filename.endsWith(e))
}
}

View File

@ -403,6 +403,9 @@ const MIMETYPES = {
'audio/mp3': '.mp3',
'application/ogg': '.ogg',
'audio/ogg': '.ogg',
'audio/x-ms-wma': '.wma',
'audio/wav': '.wav',
'audio/x-flac': '.flac',
'audio/flac': '.flac'
},
EXT_MIMETYPE: null as { [ id: string ]: string }