Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为桌面(C++)开发一个 RTSP 客户端。我现在了解了库live555的操作,并且可以使用示例“testRTSPClient”接收帧。现在我想在屏幕上显示视频。如何将接收到的数据转换为图像?
您将需要使用编解码器将流式(压缩/编码)格式转换为您可以在屏幕上绘制的格式。我建议使用 FFMPEG (libavcodec),有几个示例说明如何使用 FFMPEG 创建媒体播放器。