chrisguttandin / extendable-media-recorder

An extendable drop-in replacement for the native MediaRecorder.
MIT License
268 stars 13 forks source link

MediaRecorder supported by Safari #653

Open JackMF opened 2 years ago

JackMF commented 2 years ago

With MediaRecorder now being supported by Safari.

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

chrisguttandin commented 2 years ago

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.

https://github.com/chrisguttandin/extendable-media-recorder/blob/8868a6cbf53ce934a05f23b17e9a6f9e8c10fde4/src/factories/media-recorder-constructor.ts#L40-L44

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