Whitelist m4a/aac for ffmpeg

This commit is contained in:
Calvin Montgomery 2016-12-17 19:53:17 -08:00
parent 041d50cb23
commit d21943ecc7
6 changed files with 10 additions and 5 deletions

View file

@ -6,6 +6,7 @@ codecToMimeType = (codec) ->
when 'ogg/theora' then 'video/ogg'
when 'mp3' then 'audio/mp3'
when 'vorbis' then 'audio/ogg'
when 'aac' then 'audio/aac'
else 'video/flv'
window.FilePlayer = class FilePlayer extends VideoJSPlayer