上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
摘要: 6.2.拉流客户端发送getStreamLength、play和set Buffer Length消息拉流客户端接收到SRS服务器的_result消息后,会连续发三个消息:getStreamLength、play和set Buffer Length消息给SRS服务器。6.2.1. getStream 阅读全文
posted @ 2023-10-08 11:34 泽良_小涛 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 5.metadata,video,audio数据处理RTMP推流到SRS流媒体服务器。5.1. SrsRtmpConn::publishing(SrsSource* source)在进行RTMP握手,消息交互后,即SrsRtmpConn::stream_service_cycle中执行完if ((e 阅读全文
posted @ 2023-10-08 11:31 泽良_小涛 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 4.RTMP推流到SRS流媒体服务器消息处理 参考:https://www.yuque.com/wahaha-0yfyj/mnfloz/gm3skg?#https://www.cnblogs.com/jimodetiantang/p/9072455.html握手成功后,SRS和客户端进行消息交换,对 阅读全文
posted @ 2023-10-08 11:24 泽良_小涛 阅读(89) 评论(0) 推荐(0) 编辑
摘要: RTMP是Adobe 公司为 Flash 播放器和服务器之间音视频数据传输开发的私有协议,因为出现的比较早,所以RTMP协议已经成为国内直播领域尤其是CDN之间推流的标准协议。Adobe在2017年宣布到2020年底将不再支持Flash,所以很多系统平台的浏览器也都不再支持RTMP协议,如果流媒体服 阅读全文
posted @ 2023-10-08 11:15 泽良_小涛 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 一、宇宙的尽头是编制1.SRS(simple-rtmp-server)流媒体服务器源码分析--启动https://blog.csdn.net/ManagerUser/article/details/738401302.SRS Forward集群https://blog.csdn.net/Manage 阅读全文
posted @ 2023-10-08 11:10 泽良_小涛 阅读(36) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_57504000/article/details/124218420 阅读全文
posted @ 2023-07-24 14:19 泽良_小涛 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 一、代码示例 #include <iostream> using namespace std; // //class Computer { //public: // void run(); //}; // //class HpWindows7 :public Computer { // //}; / 阅读全文
posted @ 2023-07-11 09:10 泽良_小涛 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <list> #include <string> using namespace std; //component class IFile { public: virtual void displaye() = 0; virtual int 阅读全文
posted @ 2023-06-21 09:48 泽良_小涛 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <sstream> using namespace std; template <class T> string MyConvertToStr(T obj) { stringstream ss; ss << obj; return ss.st 阅读全文
posted @ 2023-06-17 16:29 泽良_小涛 阅读(5) 评论(0) 推荐(0) 编辑
摘要: /* AOP:叫面向方面(切面)编程 在我们的日常开发中,我们经常会遇到这样的一类与业务逻辑无关 的开发,正交化 打log,将log进入织入我们的业务场景 */ #include <memory> #include <string> #include <iostream> using namespa 阅读全文
posted @ 2023-06-16 09:26 泽良_小涛 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页