Reputation: 707
I am working on a personal project, i want to learn how to create a livestream webcam server. I was trying to upload files and POST them to my server, but the lag results to be too large to be livestream. does anyone have some source code examples for a c++ webcam server? or any pointers that would be helpful?
thanks.
Upvotes: 0
Views: 797
Reputation: 2594
RTSP, as suggested by its name, should suit better for real-life streaming applications. To reduce the lag you can play with bitrate and dropping frames. There is proprietary pvServer though, which is capable of HTTP-streaming.
Upvotes: 1