会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
纵使时光老去
心若没有栖息的地方,到哪里都是在流浪。
CnBlogs
Home
New Post
Contact
Admin
2022年5月31日
链表反转
链表基本应用 链表创建 链表插入 链表删除 链表修改 链表查询 链表反转 完整代码 截图 链表创建 typedef struct Node { int data; struct Node *next; }Node; Node *CreateNode() { Node *head=malloc(siz
Read More
posted @ 2022-05-31 13:04 xMonody
Views(40)
Comments(0)
Diggs(0)
2022年5月27日
Opengl数学markdown
# opengl数学 $$\begin{Bmatrix} {A_{x}}\\ {A_{y}}\\ {A_{z}}\\ \end{Bmatrix} * \begin{Bmatrix} {B_{x}}\\ {B_{y}}\\ {B_{z}}\\ \end{Bmatrix} =\begin{Bmatrix
Read More
posted @ 2022-05-27 09:02 xMonody
Views(48)
Comments(0)
Diggs(0)
2022年5月26日
Markdown语法
基础 标题 #表示一级标题 以此类推 支持六种标题 # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 一级标题 二级标题 三级标题 四级标题 五级标题 六级标题 引用 应用用>表示 > 这是应用 分割线用***或者 表示 强调 *斜体*
Read More
posted @ 2022-05-26 12:05 xMonody
Views(68)
Comments(0)
Diggs(0)
2022年5月24日
ffmpeg命令参数
用法 ffmpeg -i hello.mp3 -acodec libfdk_aac hello.aac mp3转aac ffmpeg -i hello.aac -acodec libmp3lame hello.mp3 aac转mp3 ffmpeg -i hello.aac -f s16le -ar
Read More
posted @ 2022-05-24 10:47 xMonody
Views(274)
Comments(0)
Diggs(0)
2022年5月21日
编译FFmpeg
<center>编译ffmpeg 安装Msys2以及依赖 mingw-w64-ucrt-x86_64-{clang,lld,libc++,make,cmake,ninja,diffutils,pkg-config,pkgconf} mingw-w64-x86_64-{lld,make,cmake,n
Read More
posted @ 2022-05-21 10:26 xMonody
Views(149)
Comments(0)
Diggs(0)
2019年5月27日
QT搭建Ffmpeg开发环境gcc版本
1 先安装qt 解压ffmpeg包2打开qt创建工程 3 导入头文件和库文件 这里一定要注意gcc版本和库的版本一定要一致 4 添加一下简单的源代码 1 #include <libavcodec/avcodec.h> 2 #include <libavformat/avformat.h> 3 #in
Read More
posted @ 2019-05-27 09:45 xMonody
Views(595)
Comments(0)
Diggs(0)
公告