已阅读5页,还剩11页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
rtmpdump的librtmp时间戳有问题,服务器会断开连接分类: ffmpeg c+ linux open-source 2013-10-28 21:49 700人阅读 评论(7) 收藏 举报# header0x44 0xff 0xff 0xff 0x00 0x01 0x19 0x08# extended timestamp0x7f 0xff 0xf8 0x00 # body 0xaf 0x01 0x01 0x400x22 0x80 0xa3 0x7f 0xf8 0x85 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d #header0xc4 # extended timestamp# error here#body0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d 0x2d对于0xC这种后续的chunk包的extended timestamp该不该发,rtmp协议中说是不发,但是FMLE是发的,推流超过4.5小时就需要用extended timestamp了。rtmpdump里面的librtmp,不会发这个包,(ffmpeg里面用-enable-librtmp就会使用这个rtmp的库),而且是在开始就会发这个包。6.1.3. Extended Timestampplain view plaincopyprint?1 This field is transmitted only when the normal time stamp in the 2 chunk message header is set to 0x00ffffff. If normal time stamp is 3 set to any value less than 0x00ffffff, this field MUST NOT be 4 present. This field MUST NOT be present if the timestamp field is not 5 present. Type 3 chunks MUST NOT have this field. This field is transmitted only when the normal time stamp in thechunk message header is set to 0x00ffffff. If normal time stamp isset to any value less than 0x00ffffff, this field MUST NOT bepresent. This field MUST NOT be present if the timestamp field is notpresent. Type 3 chunks MUST NOT have this field.有可能是adobe变更了这个协议,也就是说,FMLE给FMS,FMS给flash-player,都是带这个时间戳的。收包时,服务器端则需要检测下,若接下来的4字节不是extended timestamp,那么就忽略就好了。发包时,只能采取配置,要么发,要么不发。默认发就好了。看nginx-rtmp代码:cpp view plaincopyprint?6 ngx_rtmp_recv(ngx_event_t *rev) 7 8 for( ; ) 9 /* parse headers */ 10 if (b-pos = b-start) 11 /* chunk basic header */ 12 fmt = (*p 6) & 0x03; 13 csid = *p+ & 0x3f; 14 if (fmt little-endian 4b */ 16 pp = (u_char*)timestamp; 17 ext = (timestamp = 0x00ffffff); 18 if (fmt little-endian 4b type*/ 20 pp = (u_char*)&h-mlen; 21 h-type = *(uint8_t*)p+; 22 if (fmt = 0) 23 /* stream: little-endian 4b - little-endian 4b */ 24 pp = (u_char*)&h-msid; 25 26 27 28 /* extended header */ 29 if (ext) 30 pp = (u_char*)timestamp; 31 pp3 = *p+; 32 pp2 = *p+; 33 pp1 = *p+; 34 pp0 = *p+; 35 ngx_rtmp_recv(ngx_event_t *rev) for( ; ) /* parse headers */ if (b-pos = b-start) /* chunk basic header */ fmt = (*p 6) & 0x03; csid = *p+ & 0x3f; if (fmt little-endian 4b */ pp = (u_char*)timestamp; ext = (timestamp = 0x00ffffff); if (fmt little-endian 4b type*/ pp = (u_char*)&h-mlen; h-type = *(uint8_t*)p+; if (fmt = 0) /* stream: little-endian 4b - little-endian 4b */ pp = (u_char*)&h-msid; /* extended header */ if (ext) pp = (u_char*)timestamp; pp3 = *p+; pp2 = *p+; pp1 = *p+; pp0 = *p+; 可见,不管是什么chunk,只要有extended-timestamp,nginx-rtmp都会读这个。所以nginx-rtmp对接FMLE是没有问题的,对接librtmp有问题。更好的做法是判断下读出来的extended timestamp是否是和之前的一样,如果不是一样说明没有发,就忽略。nginx-rtmp发包的逻辑:cpp view plaincopyprint?36 ngx_rtmp_prepare_message 37 38 /* create fmt3 header for successive fragments */ 39 thsize = p - out-buf-pos; 40 ngx_memcpy(th, out-buf-pos, thsize); 41 th0 |= 0xc0; 42 /* message header */ 43 if (fmt play_time_fix) 59 ngx_memcpy(&ththsize, p - 4, 4); 60 thsize += 4; 61 62 ngx_rtmp_prepare_message /* create fmt3 header for successive fragments */ thsize = p - out-buf-pos; ngx_memcpy(th, out-buf-pos, thsize); th0 |= 0xc0; /* message header */ if (fmt play_time_fix) ngx_memcpy(&ththsize, p - 4, 4); thsize += 4; nginx-rtmp还特意说明了flash客户端就是和rtmp规范不一样。out-buf-pos就是指向包的第一个chunk,若有extended-timestamp,那么肯定会在第一个包加上extended timestamp;后面还有个th和thsize,就是给后续的type=3的chunk包的,会加上这4字节的extended timestamp:cpp view plaincopyprint?63 /* This CONTRADICTS the standard 64 * but thats the way flash client 65 * wants data to be encoded; 66 * ffmpeg complains */ 67 if (cscf-play_time_fix) 68 ngx_memcpy(&ththsize, p - 4, 4); 69 thsize += 4; 70 71 72 /* append headers to successive fragments */ 73 for(out = out-next; out; out = out-next) 74 out-buf-pos -= thsize; 75 ngx_memcpy(out-buf-pos, th, thsize); 76 /* This CONTRADICTS the standard * but thats the way flash client * wants data to be encoded; * ffmpeg complains */ if (cscf-play_time_fix) ngx_memcpy(&ththsize, p - 4, 4); thsize += 4; /* append headers to successive fragments */ for(out = out-next; out; out = out-next) out-buf-pos -= thsize; ngx_memcpy(out-buf-pos, th, thsize); 所以nginx-rtmp收发包都是需要这个extended-timestamp,对于chunk type为3的包。另外,把chunksize设置大一点,最大是65536,避免发type=3的chunk包,也是一个很好的方法。不过视频的I帧一般较大,超过64KB也有可能。The maximum chunk size can be 65536 bytes and minimum 128 bytes.按照这种规则,即type=3的chunk也发ex
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 高二年级上册期末考试汇编:文言文
- 《威尼斯镰刀菌蛋白等3种新食品原料》介绍2025
- 年产13.2万台变速箱改建项目可行性研究报告模板-备案审批
- 2019-2021年北京重点区高一(上)期末化学试卷试题汇编:物质的量
- 清远消防员笔试题目及答案
- 2025年长沙卫校单招题库及答案
- 关于帽子的测试题及答案
- 2025年机电实务考试真题及答案
- 音标对听力测试题及答案
- 2025年大学教育数学题库及答案
- 青岛科技大学油气储存与装卸期末复习题
- 山东省技能兴鲁PLC赛项备考试题库(含答案)
- 15D503 利用建筑物金属体做防雷及接地装置安装
- 高频变压器品质标准
- 痛风饮食演示文稿
- 互联网+零售业务创新
- 学问海鲜智慧树知到答案章节测试2023年
- GB/T 6068-2021汽车起重机和轮胎起重机试验规范
- GB/T 13477.8-2017建筑密封材料试验方法第8部分:拉伸粘结性的测定
- 影像三基试题及答案
- BB/T 0071-2017包装玻璃容器卡式瓶口尺寸
评论
0/150
提交评论