Add support for file type webm & ogg theora (#4404)

This commit is contained in:
Stefan Krüger 2020-01-04 12:27:13 +01:00 committed by Jeremy Ruston
parent 75ba862a7e
commit 1ed884cef4
2 changed files with 4 additions and 1 deletions

View file

@ -30,8 +30,9 @@ var VideoParser = function(type,text,options) {
this.tree = [element];
};
exports["video/ogg"] = VideoParser;
exports["video/webm"] = VideoParser;
exports["video/mp4"] = VideoParser;
exports["video/quicktime"] = VideoParser;
})();