会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
泽良_小涛
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
···
16
下一页
2023年6月15日
FFMPEG知识链接
摘要: 1.FFmpeg详解及常用命令使用https://blog.csdn.net/qq_26464039/article/details/84503335 2.多媒体处理工具 FFmpeg 工具集https://juejin.cn/post/7128223894921560094 3.FFmpeg中的时
阅读全文
posted @ 2023-06-15 11:32 泽良_小涛
阅读(32)
评论(0)
推荐(0)
2023年6月9日
享元模式
摘要: 一、截图 二、代码示例 #include <iostream> #include <string> #include <vector> using namespace std; //棋子的颜色 enum PieceColor { BLACK, WHTIE }; //棋子的位置 struct Piec
阅读全文
posted @ 2023-06-09 11:57 泽良_小涛
阅读(11)
评论(0)
推荐(0)
2023年6月6日
外观(门面)模式--Facade
摘要: 一、代码示例 #include <iostream> using namespace std; class Carmera { public: void turnOn() { cout << "相机启动" << endl; } void turnOff() { cout << "相机关闭" << e
阅读全文
posted @ 2023-06-06 16:11 泽良_小涛
阅读(11)
评论(0)
推荐(0)
2023年6月2日
hls--季末的天堂
摘要: https://www.cnblogs.com/jimodetiantang/tag/HLS/ SRS之SrsHlsCache::reap_segment详解 SRS之SrsHls::on_audio详解 SRS之SrsHls::on_video详解 HLS协议解析 SRS之分发HLS
阅读全文
posted @ 2023-06-02 11:15 泽良_小涛
阅读(10)
评论(0)
推荐(0)
2023年6月1日
http协议
摘要: 1.季末的天堂的http协议https://www.cnblogs.com/jimodetiantang/category/1232486.html
阅读全文
posted @ 2023-06-01 17:13 泽良_小涛
阅读(15)
评论(0)
推荐(0)
h264总结的链接
摘要: h264https://www.cnblogs.com/zeliangzhang/p/16143638.htmlhttps://www.cnblogs.com/zeliangzhang/p/16745039.html 对照着ZLMedia了解一下h264https://www.cnblogs.com
阅读全文
posted @ 2023-06-01 14:09 泽良_小涛
阅读(14)
评论(0)
推荐(0)
2023年5月30日
h264
摘要: 五、H264编码 H264在视频采集到输出中属于编解码层次的数据,如下图所示,是在采集数据后做编码压缩时通过编码标准编码后所呈现的数据。1.编解码的必要性1)为什么要压缩节省传输带宽;编码可以将数据进行压缩,减少传输资源浪费。节省存储空间:当显示器正在播放一个1280*720视频,帧率是25,那么一
阅读全文
posted @ 2023-05-30 16:32 泽良_小涛
阅读(647)
评论(0)
推荐(0)
2023年5月24日
适配器模式(Adapter)
摘要: #include <iostream> using namespace std; class ThreePhaseOutlet { public: void doThreePhasePlug() { cout << "三相插头接入" << endl; } }; class TwoPhaseOutle
阅读全文
posted @ 2023-05-24 14:06 泽良_小涛
阅读(14)
评论(0)
推荐(0)
2023年5月20日
SRS RTMP拉流
摘要: 自己看代码时随手画的
阅读全文
posted @ 2023-05-20 11:43 泽良_小涛
阅读(29)
评论(0)
推荐(0)
2023年5月19日
原型模式(prototype)
摘要: 1 #include <iostream> 2 #include <string> 3 #include <sstream> 4 #include <typeinfo> 5 using namespace std; 6 template <class T> 7 string iToStr(T val
阅读全文
posted @ 2023-05-19 09:43 泽良_小涛
阅读(13)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
16
下一页
公告