03 2022 档案
发表于 2022-03-30 15:17阅读:580评论:0推荐:0
摘要:#include <iostream> using namespace std; class A { public: A(int a, int b, int c); private: int m_a; int m_b; int m_c; }; A::A(int a, int b, int c) :
阅读全文 »
发表于 2022-03-03 14:02阅读:265评论:0推荐:0
摘要:服务端demo: #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <arpa/inet.h> #include <sys/socket.h> #include <netin
阅读全文 »
发表于 2022-03-02 10:38阅读:1265评论:1推荐:0
摘要:项目介绍 ZLMediaKit是一套高性能的流媒体服务框架,目前支持rtmp/rtsp/hls/http-flv流媒体协议。该项目已支持linux、macos、windows、ios、android平台,支持的编码格式包括H264、AAC、H265(仅rtsp支持H265);采用的模型是多线程IO多
阅读全文 »
发表于 2022-03-01 17:49阅读:443评论:0推荐:0
摘要:1.OPTIONS 客户端向服务器端发现OPTIONS,请求可用的方法。 服务器端回复客户端,消息中包含当前可用的方法。 2.DESCRIBE 客户端向服务器请求媒体描述文件,一般通过rtsp开头的url来发起请求,格式为sdp。 服务器回复客户端sdp文件,该文件告诉客户端服务器有哪些音视频流,有
阅读全文 »