天行健,君子以自强不息!
发布时间:2015-12-21 22:48:06
Ubuntu下为AndroidStudio编译并使用FFmpeg(一)ndk部分1.1 下载ndk,并编译,做示例程序测试1、下载Android NDK自解压包,官方地址:https://developer.android.com/ndk/downloads/index.html#download下载:$ wget -c http://dl.google.com/android/ndk/android-ndk-r10e-linux-x86_64.bin2、解压,将Android NDK.........【阅读全文】
发布时间:2015-11-20 14:17:03
基于ffmpeg SDK build by ffmpepv2.4.3闲言少述,直接上代码/* * \File * yuv2h264.c * \Desc * 输入YUV420文件,编码生成h.264的文件 * \Author * Hank */#include #include #include ......【阅读全文】
发布时间:2015-11-13 11:03:10
FFmpeg 中比较重要的函数以及数据结构如下:1. 数据结构:(1) AVFormatContext(2) AVOutputFormat(3) AVInputFormat(4) AVCodecContext(5) AVCodec(6) AVFrame(7) AVPacket(8) AVPicture(9) AVStream2. 初始化函数:(1) av_register_all()(2) avcodec_open()(3) avcodec_close()(4) av_open_input_file().........【阅读全文】
发布时间:2015-11-13 10:31:26
一般我们在Linux下执行某些外部程序的时候可能会提示找不到共享库的错误, 比如:tmux: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory原因一般有两个:一个是操作系统里确实没有包含该共享库(lib*.so.*文件)或者共享库版本不对, 遇到这种.........【阅读全文】
发布时间:2015-10-18 09:16:29
avcodec_open2(st->codec, codec, options ? &options[i] : NULL);<br /> |-- avctx->codec->init(avctx);<br /> -->int X264_init(AVCodecContext *avctx)<br /> |-- check_default_settings(avc.........【阅读全文】