Android libvlc播放延时优化

无评论

2015 年 10 月 20 日 at 下午 6:03分类:原创 | 学习笔记

Android使用libvlc播放 rtmp 视频流,开始播放出现log “avformat demux: detected format: flv”到界面播放会有4-5s的打开延时,经过分析发现延时发生在 “error = avformat_find_stream_info( p_sys->ic, options );”

更多…

备份vps硬盘镜像到本地硬盘

无评论

2015 年 10 月 20 日 at 上午 10:03分类:原创 | 学习笔记

准备停止conoha的vps,停止前备份硬盘,方便以后挂载找文件

操作流程

conoha (dd备份硬盘(50G)) --> box(高速稳定的独立服务器) (ssh读取dd输出)(可用硬盘>50G) --> 本地电脑 (从 box http下载)

更多…

编译nginx 1.9.5 启用http2

4 条评论

2015 年 10 月 19 日 at 上午 9:39分类:原创 | 学习笔记

nginx 最新版本 1.9.5 已经支持 http2,需要编译时增加参数 –with-http_v2_module
更多…

编译支持http2的curl

3 条评论

2015 年 10 月 17 日 at 下午 2:04分类:原创 | 学习笔记

ubuntu 14.04 在运行

curl https://www.xdty.org -v --http2.0

时提示

curl: (1) Unsupported protocol。

更多…