You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i record media from Chrome it's not supported on safari, similarly we tried the same cases with different browsers with various combination of devices. please find below table for reference and summarised report.
we even tried to download the file and play it on different devices and browsers but it causes the same problem.
for the recording to save we are using s3 bucket.
We have tried different types of mimetype on mediaRecorderOptions but it wasn't still working.
Do you have any solution which is not dependent on platform specific? as we require media recorder to work on all browsers and devices.
The text was updated successfully, but these errors were encountered:
Use mimeType: "video/mp4;codecs=avc1" for safari, add some logic that detects the browser and switches between video/webm;codec=h246 (for chrome/firefox) and "video/mp4;codecs=avc1" for safari.
Note that chrome on IOS mobile devices are actually "safari" since they're based on Safari (not chromium). Makes this somewhat confusing when doing mobile testing but knowing that fact helped me a lot!
Ultimately it's a pain in the ass, but using Cloudinary to instantly rewrite the URLS (which automatically transcodes them on the fly) has been fruitful.
When i record media from Chrome it's not supported on safari, similarly we tried the same cases with different browsers with various combination of devices. please find below table for reference and summarised report.
we even tried to download the file and play it on different devices and browsers but it causes the same problem.
for the recording to save we are using s3 bucket.
We have tried different types of
mimetype
onmediaRecorderOptions
but it wasn't still working.Do you have any solution which is not dependent on platform specific? as we require media recorder to work on all browsers and devices.
The text was updated successfully, but these errors were encountered: