How to get started implementing a video streaming server in c/c++?

前端 未结 2 2072
一个人的身影
一个人的身影 2020-12-15 13:39

In my project I need a dedicated server that dispatches the streams over to multiple clients.

More specificly, I\'ve a callback function that gets called to gather t

2条回答
  •  一向
    一向 (楼主)
    2020-12-15 14:18

    I think you should check communication through network sockets.

    There is no network concept in C++, so you have to rely on your system API or libraries ( as boost.asio for instance )

提交回复
热议问题