Handling / receiving live video webcam stream from WebRTC or any browser based capturing mechanism to the server using ASP.NET MVC

前端 未结 3 694
时光说笑
时光说笑 2021-02-01 19:01

We need to capture a live video stream from WebRTC (or any other capturing mechanism from the client webcam, even if it is not supported on all browsers, but as a PoC).

3条回答
  •  一生所求
    2021-02-01 19:12

    Most IP cameras these days will use H264 encoding, or MJPEG. You aren't clear about what sort of cameras are being used.

    I think the real question is, what components are out there for authoring/editing video and which video format does it require. Only once you know what format you need to be in, can you transcode/transform your video as necessary so you can handle it on the server side.

    There are any number of media servers to transform/transcode, and something like FFMPEG or Unreal Media Server can transform, decode, etc on server side to get it to some format you can work with. Most of the IP cameras I have seen just use an H264 web based browser player.

    EDIT: Your biggest enemy is going to be your delay. 1-2 seconds of delay is going to be difficult to achieve.

提交回复
热议问题