上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 61 下一页
摘要: 当需要把视频跳转到N秒的时候可以使用下面的方法:int64_t timestamp = N * AV_TIME_BASE; av_seek_frame(fmtctx, index_of_video, timestamp, AVSEEK_FLAG_BACKWARD); av_get_channel_l 阅读全文
posted @ 2019-09-05 22:29 MoonXu 阅读(800) 评论(0) 推荐(0) 编辑
摘要: SwrContext *swr_alloc(void); // 分配重采样的上下文。 SwrContext *swr_alloc_set_opts(struct SwrContext *s, int64_t out_ch_layout, AVSampleFormat out_sample_fmt, 阅读全文
posted @ 2019-09-05 22:20 MoonXu 阅读(3601) 评论(0) 推荐(0) 编辑
摘要: swr_convert() 针对每一帧音频的处理。把一帧帧的音频作相应的重采样 int swr_convert(struct SwrContext *s, uint8_t **out, int out_count, const uint8_t **in, int in_count); 参数1:音频重 阅读全文
posted @ 2019-09-05 22:19 MoonXu 阅读(1734) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/leixiaohua1020/article/details/44243155 阅读全文
posted @ 2019-09-04 13:06 MoonXu 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 下载的qt代码不能编辑,原因是文本编码是GB2312,现在选择的是utf-8,把编码改过来就可以编辑了 阅读全文
posted @ 2019-08-30 16:33 MoonXu 阅读(588) 评论(0) 推荐(0) 编辑
摘要: ar -t /usr/lib/x86_64-linux-gnu/libc.a 查看libc.a中包含的目标文件 visual c++提供类似的功能lib.exe ar -x /usr/lib/x86_64-linux-gnu/libc.a 将libc.a解压到当前目录 默认的链接脚本是在/usr/l 阅读全文
posted @ 2019-08-28 09:51 MoonXu 阅读(231) 评论(0) 推荐(0) 编辑
摘要: crt1.o, crti.o, crtbegin.o, crtend.o, crtn.o 等目标文件和daemon.o(由我们自己的C程序文件产生)链接成一个执行文件。前面这5个目标文件的作用分别是启动、初始化、构造、析构和结束,它们通常会被自动链接到应用程序中。例如,应用程序的main()函数就是 阅读全文
posted @ 2019-08-26 14:33 MoonXu 阅读(1504) 评论(0) 推荐(0) 编辑
摘要: 1.启动或关闭windows--》internet information services-->ftp服务器 选中 2.此电脑右键--》管理--》服务和应用程序--》IIS管理器--》网站右键--》添加ftp站点 3.右键站点--》管理ftp站点--》启动 4.点击站点--》ftp身份验证--》基 阅读全文
posted @ 2019-08-24 14:49 MoonXu 阅读(4169) 评论(0) 推荐(0) 编辑
摘要: fwrite(),最好写strlen()个字节,否则可能有乱码 阅读全文
posted @ 2019-08-23 19:03 MoonXu 阅读(111) 评论(0) 推荐(0) 编辑
摘要: :%s/mxmlElementGetAttr/xml_get_attr/g 例如:%s/foo/bar/g会在全局范围(%)查找foo并替换为bar,所有出现都会被替换(g)。 作用范围 作用范围分为当前行、全文、选区等等。 当前行: :s/foo/bar/g :s/foo/bar/g 全文: :% 阅读全文
posted @ 2019-08-23 13:52 MoonXu 阅读(670) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 61 下一页