chrisguttandin/extendable-media-recorder

MediaRecorder supported by Safari

Opened this issue · 1 comments

With MediaRecorder now being supported by Safari.

Will extendable-media-recorder use MediaRecorder by default for Safari when the webm mime type is selected?

I haven't checked the latest implementation in Safari yet. At least the last time I checked it was missing the isTypeSupported() method which would allow to check if the mimeType is supported or not.

nativeMediaRecorderConstructor !== null &&
// Bug #10: Safari does not yet implement the isTypeSupported() method.
(mimeType === undefined ||
(nativeMediaRecorderConstructor.isTypeSupported !== undefined &&
nativeMediaRecorderConstructor.isTypeSupported(mimeType)))

But if it works for you it seems to be implemented now and therefore the native implementation gets picked.