摘要: 播放RTSP ffplay.exe -fflags nobuffer -analyzeduration 100000 -i rtsp://xxx 推送视频流(mpegts封装 UDP推送) ffmpeg -f lavfi -re -i smptebars=duration=300:size=1280 阅读全文
posted @ 2020-03-05 11:21 Ray.floyd 阅读(394) 评论(0) 推荐(0) 编辑
摘要: protobuffer 编译配置 如果编译出现错误 “undefined reference to `__android_log_write'”,编辑代码手动选择DefaultLogHandler的实现 检查Makefile 更改为(依赖顺序protoc protobuf_LIBS): 基于prot 阅读全文
posted @ 2019-11-18 16:22 Ray.floyd 阅读(341) 评论(0) 推荐(0) 编辑
摘要: protobuffer (简称PB) 网上的文章一大堆,随便看看,PB使用起来非常方便。这里主要讲讲Protobuf C(简称PC)的使用 1,代码 https://github.com/protobuf-c/protobufc/releases/download/v1.3.2/protobuf-c 阅读全文
posted @ 2019-10-24 15:39 Ray.floyd 阅读(4970) 评论(0) 推荐(0) 编辑
摘要: 如何从OnDemandServerMediaSubsession类以及继承类对象中获取RTCP信息(句柄) OnDemandServerMediaSubsession.cpp void StreamState::startPlaying函数中添加: OnDemandServerMediaSubses 阅读全文
posted @ 2019-10-22 16:34 Ray.floyd 阅读(695) 评论(0) 推荐(0) 编辑
摘要: /etc/vim/vimrc文件 set ts=4 set sts=4 set cindent set expandtab set smartindent set autoindent set shiftwidth=4 set nu set hls##文件编码识别set fileencodings= 阅读全文
posted @ 2019-10-18 10:37 Ray.floyd 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1,双向认证测试(需要根证书,客户证书,服务器证书以及各自的私钥)(验证通信双方的身份) 2,单项认证测试(验证客户身份) 3,如何生成上面的证书呢(自签名证书为例) CA证书 服务器证书 客户端证书 使用根证书验证下服务器证书是否可信的 注意证书里CN=Server,身份认证过程中应用程序可能会校 阅读全文
posted @ 2019-10-17 15:29 Ray.floyd 阅读(2537) 评论(0) 推荐(0) 编辑
摘要: 1,代码比较简单,可以直接用了。流的第一个NALU一定是SPS 阅读全文
posted @ 2019-10-17 15:16 Ray.floyd 阅读(867) 评论(0) 推荐(0) 编辑
摘要: 1,依赖库openssl 的交叉编译 (1)配置编译器信息 (2)修改Makefile (3)编译(指定编译器) 2,mosquitto 的交叉编译 (1)修改该config.mk (2)编译 3,基于mosquitto的MQTT client 代码中struct mqtt_conf是自定义结构,m 阅读全文
posted @ 2019-10-17 15:06 Ray.floyd 阅读(1676) 评论(4) 推荐(1) 编辑
摘要: 使用C:\Program Files\Oracle\VirtualBox\VBoxManage.exe工具加载摄像头 1,显示可用摄像头 C:\Program Files\Oracle\VirtualBox>VBoxManage list webcams 2,显示可用虚拟机 C:\Program F 阅读全文
posted @ 2019-09-30 18:23 Ray.floyd 阅读(1822) 评论(0) 推荐(0) 编辑
摘要: ubuntu 内核升级到4.6.4(更高版本可能造成系统无法启动) kernel debian包下载地址 http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.6.4/ sudo dpkg -i linux-headers-4.6.4-040604_4.6 阅读全文
posted @ 2017-08-15 17:23 Ray.floyd 阅读(1696) 评论(0) 推荐(0) 编辑