Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MediaRecorder supported by Safari #653

Open
JackMF opened this issue Jan 12, 2022 · 1 comment
Open

MediaRecorder supported by Safari #653

JackMF opened this issue Jan 12, 2022 · 1 comment

Comments

@JackMF
Copy link

JackMF commented Jan 12, 2022

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
Copy link
Owner

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants