All MIME types supported by MediaRecorder in Firefox and Chrome?

前端 未结 6 611
广开言路
广开言路 2020-12-05 04:50

Where can I find a list of all MIME types that are supported by Firefox or Chrome? All examples I\'ve seen so far using video/webm onl

6条回答
  •  醉话见心
    2020-12-05 05:24

    For Firefox, the accepted mimetypes can be found in MediaRecorder.cpp and confirmed using MediaRecorder.isTypeSupported(...)

    Example:

    21:31:27.189 MediaRecorder.isTypeSupported('video/webm;codecs=vp8')
    21:31:27.135 true
    21:31:41.598 MediaRecorder.isTypeSupported('video/webm;codecs=vp8.0')
    21:31:41.544 true
    21:32:10.477 MediaRecorder.isTypeSupported('video/webm;codecs=vp9')
    21:32:10.431 false
    21:31:50.534 MediaRecorder.isTypeSupported('audio/ogg;codecs=opus')
    21:31:50.479 true
    21:31:59.198 MediaRecorder.isTypeSupported('audio/webm')
    21:31:59.143 false
    

提交回复
热议问题