Merge branch 'release/2.1.0' into develop
This commit is contained in:
commit
338eb9d33a
2 changed files with 8 additions and 1 deletions
|
@ -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))
|
||||
}
|
||||
}
|
||||
|
|
|
@ -406,6 +406,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 }
|
||||
|
@ -797,6 +800,8 @@ function buildVideoMimetypeExt () {
|
|||
'video/x-matroska': '.mkv',
|
||||
'video/avi': '.avi',
|
||||
'video/x-m4v': '.m4v',
|
||||
// Could be anything
|
||||
'application/octet-stream': null,
|
||||
'video/m4v': '.m4v'
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue