开发者

Please recommend books on capture/parsing network video stream(including mjpeg) in windows

I'm not stuck by thi开发者_如何学运维s subject, can you recommend a book really good on this?

UPDATE

Actually I tried using curl to fetch a snapshot out of mjpeg stream,but fails,the programe continues to output,can't stop:

curl_easy_setopt(curl, CURLOPT_URL, "network path to mjpeg");
res = curl_easy_perform(curl);
printf("%s", res);
curl_easy_cleanup(curl); 

UPDATE2

Found a similar question here.


I don't think any book addresses all your topics since they are quite varied:

  • If by capture you mean "read from socket" you can have a look at winsock or boost asio.
  • If by capture you mean "capture from device", you want to look at the DirectShow framework on windows. There is one book available by Mark Pesce AFAIR.
  • For purposes of sending video over the network you might want to take a look at RTP/RTCP RFCs: https://www.rfc-editor.org/rfc/rfc3550 An RTP payload for MJPEG can be found in https://www.rfc-editor.org/rfc/rfc2435
  • A great book about RTP: http://csperkins.org/standards/rtp-book.html
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜