请推荐在windows下捕获/解析网络视频流(包括mjpeg)的书籍
我对这个主题不太感兴趣,你能推荐一本这方面非常好的书吗?
UPDATE
其实我尝试使用curl从mjpeg流中获取快照,但是失败,程序继续输出,无法停止:
curl_easy_setopt(curl, CURLOPT_URL, "network path to mjpeg");
res = curl_easy_perform(curl);
printf("%s", res);
curl_easy_cleanup(curl);
UPDATE2
发现类似的问题此处。
I'm not stuck by this 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为没有任何一本书能解决您的所有主题,因为它们非常不同:
https://www.rfc-editor.org/rfc/rfc3550
MJPEG 的 RTP 有效负载可以在
https://www.rfc-editor.org/rfc/rfc2435
I don't think any book addresses all your topics since they are quite varied:
https://www.rfc-editor.org/rfc/rfc3550
An RTP payload for MJPEG can be found in
https://www.rfc-editor.org/rfc/rfc2435