天行健,君子以自强不息!
发布时间:2015-11-13 11:13:56
kurento-one2many-call V6.0 源码分析 一、Web页面后台服务用命令行启动: $ mvn clean compile exec:java启动成功后,在chorme浏览器的地址栏输入: http://localhost:8080即可看到如下页面 二、系统分析在这个应用程序员有两类用户: .........【阅读全文】
发布时间:2015-11-13 11:10:07
kurento-hello-world V6.0 源码分析 一、Web页面后台服务用命令行启动: $ mvn clean compile exec:java启动成功后,在chorme浏览器的地址栏输入: http://localhost:8080即可看到如下页面 二、系统分析2.1 示例程序的框架这是一个Web.........【阅读全文】
发布时间: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.........【阅读全文】