06 2023 档案
摘要:#include <iostream> #include <list> #include <string> using namespace std; //component class IFile { public: virtual void displaye() = 0; virtual int
阅读全文
摘要:#include <iostream> #include <sstream> using namespace std; template <class T> string MyConvertToStr(T obj) { stringstream ss; ss << obj; return ss.st
阅读全文
摘要:/* AOP:叫面向方面(切面)编程 在我们的日常开发中,我们经常会遇到这样的一类与业务逻辑无关 的开发,正交化 打log,将log进入织入我们的业务场景 */ #include <memory> #include <string> #include <iostream> using namespa
阅读全文
摘要:1.FEC原理及其实现https://blog.csdn.net/tonychan129/article/details/120539726 2.webrtc QOS方法(汇总篇)https://blog.csdn.net/tonychan129/article/details/120581901
阅读全文
摘要:1.FFmpeg详解及常用命令使用https://blog.csdn.net/qq_26464039/article/details/84503335 2.多媒体处理工具 FFmpeg 工具集https://juejin.cn/post/7128223894921560094 3.FFmpeg中的时
阅读全文
摘要:一、截图 二、代码示例 #include <iostream> #include <string> #include <vector> using namespace std; //棋子的颜色 enum PieceColor { BLACK, WHTIE }; //棋子的位置 struct Piec
阅读全文
摘要:一、代码示例 #include <iostream> using namespace std; class Carmera { public: void turnOn() { cout << "相机启动" << endl; } void turnOff() { cout << "相机关闭" << e
阅读全文
摘要:https://www.cnblogs.com/jimodetiantang/tag/HLS/ SRS之SrsHlsCache::reap_segment详解 SRS之SrsHls::on_audio详解 SRS之SrsHls::on_video详解 HLS协议解析 SRS之分发HLS
阅读全文
摘要:1.季末的天堂的http协议https://www.cnblogs.com/jimodetiantang/category/1232486.html
阅读全文
摘要:h264https://www.cnblogs.com/zeliangzhang/p/16143638.htmlhttps://www.cnblogs.com/zeliangzhang/p/16745039.html 对照着ZLMedia了解一下h264https://www.cnblogs.com
阅读全文