且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

ffmepg 指定RTSP网络连接模式UDP还是TCP

更新时间:2022-09-14 19:49:15

  1. AVFormatContext *formatCtx = NULL;  
  2. formatCtx = avformat_alloc_context();  
  3.   
  4. AVDictionary* options = NULL;  
  5. av_dict_set(&options, "rtsp_transport", "tcp", 0);  
  6.   
  7. avformat_open_input(&formatCtx, pszURLPath, NULL, &options) < 0);