
VLC
文章平均质量分 75
minibird1
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
VLC Framework
转载 2014-12-22 18:19:50 · 664 阅读 · 0 评论 -
VLC 编译安装 [for android, linux, windows]
仅作记录用: VLC 在Ubuntu 64位虚拟机上编译64位windows 版本流程 参考:https://wiki.videolan.org/Win32Compile/#Obtaining_the_toolchain 参考:http://blog.youkuaiyun.com/yyingwei/article/details/17217733 1. 环境准备: 【红色字体为运行命令】转载 2014-12-17 14:11:09 · 1637 阅读 · 3 评论 -
VLC contrib 之ffmpeg 编译
VLC 默认支持RTMP,trace code 发现协议相关code 竟然在libavformat 里面。。囧。。只好再build ffmpeg了。 ffmpeg 最难办的就是怕版本跟现有的不match,导致跑不通。。 还记得compile vlc 时候这句否? $ sudo apt-get build-dep vlc 现在反其道而行之,确定libavformat 的版本:原创 2014-12-18 18:59:55 · 1599 阅读 · 1 评论 -
queue implement
queue implement reminder. // ****************************************// //Frame queue // ****************************************// int ff_queue_init(FFQueue *f, int max_size, int keep_last, voi原创 2016-01-04 19:15:52 · 673 阅读 · 0 评论 -
FFMPEG Dummy Picture Pattern
From ffmpeg/doc/examples/muxing.c /* Prepare a dummy image. */ static void fill_yuv_image(AVFrame *pict, int frame_index, int width, int height) { int x, y, i, ret;翻译 2016-06-12 09:44:37 · 875 阅读 · 0 评论