7

I want to record the videos through my webcam and want to upload them to the server. I don't want to use any plugin. How can I atleast just record the videos.

ritzzz
  • 79
  • 1
  • 1
  • 2

3 Answers3

5

There's a project on GitHub called RecordRTC. It also provides a live demo here. This tool could run on browsers supporting WebRTC and getUserMedia. It could record both audio and video.

However, according to data from Can I Use, currently WebRTC and getUserMedia are only supported by Firefox, Chrome, and other blink engine browsers.

Leo
  • 13,428
  • 5
  • 43
  • 61
5

Use the navigator.getUserMedia function.

Check out these url`s. Capturing Audio & Video

Luba
  • 495
  • 2
  • 5
  • 1
    The html5rocks.com article only covers accessing the webcam. It does not cover the recording part. – octavn Nov 07 '16 at 17:10
1

Have a look here

That being said, this question has been asked several times before:

  1. How to record webcam and audio using webRTC and a server-based Peer connection
  2. Access webcam without Flash
  3. HTML 5 streaming webcam video?
Akshay Pethani
  • 2,390
  • 2
  • 29
  • 42
Neha Agrawal
  • 155
  • 1
  • 1
  • 13