muaz-khan / RecordRTC

RecordRTC is WebRTC JavaScript library for audio/video as well as screen activity recording. It supports Chrome, Firefox, Opera, Android, and Microsoft Edge. Platforms: Linux, Mac and Windows.
https://www.webrtc-experiment.com/RecordRTC/
MIT License
6.52k stars 1.75k forks source link

All the readme examples using getBlob are wrong #723

Open saevarb opened 3 years ago

saevarb commented 3 years ago

https://github.com/muaz-khan/RecordRTC/issues/375

This is an awful user experience

rayj00 commented 3 years ago

I am looking for an efficient way to save a webm blob to my server. I am creating the webm file in Muaz's Scalable Broadcasting. I need to convert the webm to mp4. I can manually upload the webm to the server and convert it there using ffmpeg, but I need to do it by uploading from the client to the server. None of Muaz's examples work for me. Any ideas?

SamuelHaidu commented 3 years ago

You can convent the blob to base64 and send to your server through http.

rayj00 commented 3 years ago

You can convent the blob to base64 and send to your server through http.

I have figured it out using PHP. But thanks for the response.