上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 64 下一页
摘要: http://blog.csdn.net/column/details/ffmpeging.html?page=1 阅读全文
posted @ 2014-11-05 15:58 帕拉美 阅读(1213) 评论(0) 推荐(0)
摘要: 原帖地址:http://blog.csdn.net/austinblog/article/details/25127533该文将以X264编码器为例,解释说明FFMPEG是怎么调用第三方编码器来进行编码的。所有编码器和解码器都是在avcodec_register_all()函数中注册的。从中可以找到... 阅读全文
posted @ 2014-11-04 18:37 帕拉美 阅读(3835) 评论(0) 推荐(0)
摘要: 原帖地址:http://blog.csdn.net/austinblog/article/details/25099979该函数的主要功能是一步完整的转换工作,下面看看源代码:static int transcode_step(void){ OutputStream *ost; Inpu... 阅读全文
posted @ 2014-11-04 18:32 帕拉美 阅读(2073) 评论(0) 推荐(0)
摘要: 原帖地址:http://blog.csdn.net/austinblog/article/details/25061945transcode_init()函数是在转换前做准备工作的。下面看看其源代码:static int transcode_init(void){ int ret = 0, i... 阅读全文
posted @ 2014-11-04 18:29 帕拉美 阅读(2287) 评论(0) 推荐(0)
摘要: 原帖地址:http://blog.csdn.net/austinblog/article/details/24804455首先从main函数看起,关键解释部分已加注释,该函数在ffmpeg.c文件中。代码如下:int main(int argc, char **argv){ int ret; ... 阅读全文
posted @ 2014-11-04 18:27 帕拉美 阅读(2934) 评论(0) 推荐(0)
摘要: 原帖地址:http://blog.csdn.net/austinblog/article/details/24800381首先先看ffmpeg.c文件,有类似于如下的一些变量:InputStream **input_streams = NULL;int nb_input_streams = 0... 阅读全文
posted @ 2014-11-04 18:24 帕拉美 阅读(1782) 评论(0) 推荐(0)
摘要: http://blog.csdn.net/qiuchangyong 阅读全文
posted @ 2014-10-27 11:36 帕拉美 阅读(326) 评论(0) 推荐(0)
摘要: FFmpegFFmpeg 基本用法本课要解决的问题1.FFmpeg的转码流程是什么?2.常见的视频格式包含哪些内容吗?3.如何把这些内容从视频文件中抽取出来?4.如何从一种格式转换为另一种格式?5.如何放大和缩小视频?6.如何旋转,翻转,填充,裁剪,模糊,锐化视频?7.如何给视频加logo,删除lo... 阅读全文
posted @ 2014-10-17 14:46 帕拉美 阅读(54288) 评论(0) 推荐(1)
摘要: C语言中有几个基本输入函数://获取字符系列int fgetc(FILE *stream);int getc(FILE *stream);int getchar(void);//获取行系列char *fgets(char * restrict s, int n, FILE * restrict st... 阅读全文
posted @ 2014-10-16 14:46 帕拉美 阅读(4302) 评论(0) 推荐(0)
摘要: http://v.17173.com/playlist_33007282.htmlhttp://v.17173.com/playlist_33007267.htmlhttp://v.17173.com/playlist_33007283.htmlhttp://v.17173.com/playlist... 阅读全文
posted @ 2014-10-14 15:51 帕拉美 阅读(2878) 评论(0) 推荐(0)
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 64 下一页