Add support for raw AV1/Opus
This commit is contained in:
parent
47d268335e
commit
9a008d4623
4 changed files with 11 additions and 4 deletions
|
|
@ -24,6 +24,7 @@ const SOURCE_CONTENT_TYPES = new Set([
|
|||
'audio/aac',
|
||||
'audio/ogg',
|
||||
'audio/mpeg',
|
||||
'audio/opus',
|
||||
'video/mp4',
|
||||
'video/ogg',
|
||||
'video/webm'
|
||||
|
|
|
|||
|
|
@ -80,13 +80,16 @@ var acceptedCodecs = {
|
|||
"flv/h264": true,
|
||||
"matroska/vp8": true,
|
||||
"matroska/vp9": true,
|
||||
"ogg/theora": true
|
||||
"ogg/theora": true,
|
||||
"mov/av1": true,
|
||||
"matroska/av1": true
|
||||
};
|
||||
|
||||
var acceptedAudioCodecs = {
|
||||
"mp3": true,
|
||||
"vorbis": true,
|
||||
"aac": true
|
||||
"aac": true,
|
||||
"opus": true
|
||||
};
|
||||
|
||||
var audioOnlyContainers = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue