1

I am new to RecordRTC , I am getting url "blob:http%3A//localhost%3A8036/15d7e0dc-5410-41a2-b409-90a138a53ac7" of recorded vidio this i am able to download to clint system as .webm by creating download href tag.

How can i upload this to server from that blob url. Server side using PHP

Thank in advance for help.

Suresh Babu
  • 35
  • 1
  • 6

1 Answers1

2

Please check this answer:

Relevant demo:

Community
  • 1
  • 1
Muaz Khan
  • 7,138
  • 9
  • 41
  • 77
  • thanks Muaz Khan , Now its working good on localhost running on XAMPP but on live web server web cam not starting , i mean its not working on live web server – Suresh Babu Mar 31 '16 at 04:19
  • sorry it is only not working on google crome browser – Suresh Babu Mar 31 '16 at 04:26
  • Google chrome requires HTTPs for non-localhost domains. Please install SSL for your domain and it will fix these issues. PS. SSL/HTTPs is required for getUserMedia API; and you can NOT capture video without using getUserMedia API. – Muaz Khan Mar 31 '16 at 08:13
  • ok thanks , what is maximum video size we can post to server , I am new to this – Suresh Babu Mar 31 '16 at 13:06
  • 10-minutes video generates about 110 MB of WebM in Chrome 49+, and max-blobSize limit on Chrome is 500MB.Means that you can record about 40 minutes of 720p WebM with audio. Chrome crashes if blobSize overflows the 500MB limit. Firefox's blobSize limit is about 600MB. – Muaz Khan Mar 31 '16 at 18:08
  • Thanks @ Muaz Khan very usefull info – Suresh Babu Apr 01 '16 at 05:03