Search code examples
c#sqlasp.net-mvc-4uwpraspberry-pi3

How to send livestream video from UWP to WEB App?


which is the best way to send live stream video from UWP app to Web MVC application ? I am doing my Final year project. My 1st task is to send the livestream vedio from raspberry pi using UWP app and display that stream in Web MVC application ? please guide me..


Solution

  • If you plan to establish a connection between UWP and a web server then pass video streams, you can use StreamWebSocket

    After establishing the connection, you can write the video stream obtained by the local capture camera to OuputStream, pass it to the server, and then send it to other devices through the server.

    These may help you:

    Best regards.