首页
学习
活动
专区
工具
TVP
发布

C++

专栏作者
49
文章
44711
阅读量
36
订阅数
iOS摄像头采集和编码
使用AVCaptureSession创建采集会话,获取图像数据后通过VideoToolBox进行编码。
gongluck
2022-05-09
8670
FFmpeg4.0笔记:采集系统声音
https://github.com/gongluck/FFmpeg4.0-study/tree/master/Cff
gongluck
2019-07-09
7610
FFmpeg4.0笔记:采集桌面
https://github.com/gongluck/FFmpeg4.0-study/tree/master/Cff
gongluck
2019-07-09
5450
FFmpeg4.0笔记:封装ffmpeg的解封装功能类CDemux
https://github.com/gongluck/FFmpeg4.0-study/tree/master/Cff
gongluck
2019-07-08
5690
SDL2:封装媒体显示播放Csdl2
https://github.com/gongluck/SDL2-study/tree/master/Csdl2
gongluck
2019-06-22
5330
FFmpeg4.0笔记:封装ffmpeg的音频重采样功能类CSwr
https://github.com/gongluck/FFmpeg4.0-study/tree/master/Cff
gongluck
2019-06-15
8560
FFmpeg4.0笔记:封装ffmpeg的视频帧转换功能类CSws
https://github.com/gongluck/FFmpeg4.0-study/tree/master/Cff
gongluck
2019-06-15
5790
FFmpeg4.0笔记:封装ffmpeg的解码功能类CDecode
https://github.com/gongluck/FFmpeg4.0-study/tree/master/Cff
gongluck
2019-06-15
1K0
FFmpeg4.0笔记:本地媒体文件解码、帧格式转换、重采样、编码、封装等例子
https://github.com/gongluck/FFmpeg4.0-study/blob/master/official%20example/my_example.cpp
gongluck
2019-05-22
2.3K0
Ubuntu编译安装crtmp-server
下载源码 从GitHub上下载: https://github.com/j0sh/crtmpserver.git 编译安装 apt-get install cmake apt-get install libssl-dev unzip centosinit cd crtmpserver-centosinit/builders/cmake cmake . make 运行 ./crtmpserver/crtmpserver ./crtmpserver/crtmpserver.lua
gongluck
2018-06-22
5770
FFmpeg4.0笔记:file2rtmp
Github: https://github.com/gongluck/FFmpeg4.0-study.git #include <iostream> using namespace std; extern "C" { #include "libavformat/avformat.h" #include "libavutil/time.h" } #pragma comment(lib, "avformat.lib") #pragma comment(lib, "avutil.lib") #pragma c
gongluck
2018-06-22
8310
FFmpeg4.0笔记:rtsp2rtmp
Github https://github.com/gongluck/FFmpeg4.0-study.git #include <iostream> using namespace std; extern "C" { #include "libavformat/avformat.h" #include "libavutil/time.h" } #pragma comment(lib, "avformat.lib") #pragma comment(lib, "avutil.lib") #pragma co
gongluck
2018-06-22
1.4K0
Opencv3.4:显示一张图片
Github https://github.com/gongluck/Opencv3.4-study.git #include "opencv2/opencv.hpp" using namespace cv; #pragma comment(lib, "opencv_core340d.lib") #pragma comment(lib, "opencv_imgcodecs340d.lib") #pragma comment(lib, "opencv_highgui340d.lib") int main()
gongluck
2018-06-22
6130
Windows核心编程:第1章 错误处理
Github https://github.com/gongluck/Windows-Core-Program.git //第1章 错误处理.cpp: 定义应用程序的入口点。 // #include "stdafx.h" #include "第1章 错误处理.h" int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPWSTR lpCmdLine, _
gongluck
2018-06-22
3810
Windows核心编程:第2章 字符和字符串处理
Github https://github.com/gongluck/Windows-Core-Program.git //第2章 字符和字符串处理.cpp: 定义应用程序的入口点。 // #include "stdafx.h" #include "第2章 字符和字符串处理.h" #include "StrSafe.h" int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _
gongluck
2018-06-22
4290
Windows核心编程:第3章 内核对象
Github https://github.com/gongluck/Windows-Core-Program.git //第3章 内核对象.cpp: 定义应用程序的入口点。 // #include "stdafx.h" #include "第3章 内核对象.h" int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
gongluck
2018-06-22
2820
Windows核心编程:第4章 进程
Github https://github.com/gongluck/Windows-Core-Program.git //第4章 进程.cpp: 定义应用程序的入口点。 // #include "stdafx.h" #include "第4章 进程.h" #include <shellapi.h> #pragma warning(disable:4996)//GetVersionEx int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
gongluck
2018-06-22
5770
Windows核心编程:第5章 作业
Github https://github.com/gongluck/Windows-Core-Program.git //第5章 作业.cpp: 定义应用程序的入口点。 // #include "stdafx.h" #include "第5章 作业.h" int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _
gongluck
2018-06-22
8370
Windows核心编程:第6章 线程基础
Github https://github.com/gongluck/Windows-Core-Program.git //第6章 线程基础.cpp: 定义应用程序的入口点。 // #include "stdafx.h" #include "第6章 线程基础.h" #include <process.h> //线程函数 DWORD WINAPI ThreadProc(PVOID param) { return 0; } unsigned __stdcall ThreadProc2(void* p
gongluck
2018-06-22
4330
Opencv4.0:遍历Mat图像空间、读取摄像头
GitHub https://github.com/gongluck/Opencv3.4-study.git #include "opencv2/opencv.hpp" using namespace cv; #pragma comment(lib, "opencv_calib3d340d.lib") #pragma comment(lib, "opencv_core340d.lib") #pragma comment(lib, "opencv_dnn340d.lib") #pragma comment(l
gongluck
2018-06-22
6890
点击加载更多
社区活动
腾讯技术创作狂欢月
“码”上创作 21 天,分 10000 元奖品池!
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档