Fix issue with webm and opus video

pull/304/head
Chocobozzz 2018-02-18 09:47:13 +01:00
parent 44cb3b85f8
commit 16f1657097
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ function getCodec (name: string) {
'.mkv': 'video/webm; codecs="avc1.640029, mp4a.40.5"',
'.mp3': 'audio/mpeg',
'.mp4': 'video/mp4; codecs="avc1.640029, mp4a.40.5"',
'.webm': 'video/webm; codecs="vorbis, vp8"'
'.webm': 'video/webm; codecs="opus, vorbis, vp8"'
}[ext]
}