码迷,mamicode.com
首页 >  
搜索关键字:rtp    ( 763个结果
一致性哈希算法PHP测试片段
<?php header('Content-type: text/html; charset=utf8');# 抽象接口interface hash{ public function _hash($str);}interface distribution{ public function looku ...
分类:编程语言   时间:2017-08-31 12:59:43    阅读次数:163
《JAVA与模式》之工厂方法模式
在阎宏博士的《JAVA与模式》一书中开头是这样描述工厂方法模式的: 工厂方法模式是类的创建模式,又叫做虚拟构造子(Virtual Constructor)模式或者多态性工厂(Polymorphic Factory)模式。 工厂方法模式的用意是定义一个创建产品对象的工厂接口,将实际创建工作推迟到子类中 ...
分类:编程语言   时间:2017-08-29 21:52:53    阅读次数:273
一个基于JRTPLIB的轻量级RTSP客户端(myRTSPClient)——实现篇:(五)用户接口层之提取媒体流数据
当RTSP客户端向RTSP服务端发送完PLAY命令后,RTSP服务端就会另外开启UDP端口(SDP协商定义的端口)发送RTP媒体流数据包。这些数据包之间会间隔一段时间(毫秒级)陆续被发送到RTSP客户端,此时RTSP客户端可以调用GetMediaData等接口获取媒体流数据。 一、uint8_t * ...
分类:其他好文   时间:2017-08-24 22:34:39    阅读次数:641
MP4V2库与MP4AV库编译
最近在开发一个将RTP流存储为MP4文件的功能。其中针对MP4文件读写,用到了两个开源的库。其中MP4V2用于数据的读写,MP4AV用于对其中的数据帧进行分析。 MP4V2和MP4AV都是开源项目MPEG4IP的一部分,当前MPEG4IP已经不再维护。 但是MP4V2最为其中的一部分,还有开源组织再 ...
分类:其他好文   时间:2017-08-21 18:12:15    阅读次数:411
Android_Printservice_API_部分翻译
文件夹 * package android.printservice * public abstract class PrintService * public abstract class PrinterDiscoverySession * public final class PrinterIn ...
分类:移动开发   时间:2017-08-20 20:07:02    阅读次数:238
django web 笔记
安装 django pip install django 创建虚拟环境 python -m venv testenvironment 进入虚拟环境: testenvironment\Scripts\activate.bat 虚拟环境安装 django pip install django 创建项目: ...
分类:Web程序   时间:2017-08-19 15:04:09    阅读次数:181
mybatis多对多级联查询
1.实体 2.RoleService定义 3.RoleDao定义 4.XML定义 ...
分类:其他好文   时间:2017-08-18 23:43:10    阅读次数:311
ffmpeg问题汇总及解决方案 <设置avformat_open_input 超时><转>
1:如果数据是rtp/rtsp传输的话,ffmpeg会每隔30s(哪里设置该值?)发送一个keepalive包,如果ipc支持GET_PARAMETER命令,就发该命令等ipc回复以确认ipc还活着。某些ipc(IPCamera)不支持GET_PARAMETER的rtsp命令。则会通过OPTIONS ...
分类:其他好文   时间:2017-08-18 19:56:03    阅读次数:3717
【C/C++学院】0904-boost智能指针/boost多线程锁定/哈希库/正則表達式
boost_array_bind_fun_ref Array.cpp #include<boost/array.hpp> #include <iostream> #include <string> using namespace std; using namespace boost; void ma ...
分类:编程语言   时间:2017-08-18 18:46:44    阅读次数:123
交叉编译x264和ffmpeg
1.x264 ./configure --host=arm-hisiv300-linux CC=arm-hisiv300-linux-gcc --enable-pic --prefix=/usr/local/ffmpeg --cross-prefix=arm-hisiv300-linux- --en ...
分类:其他好文   时间:2017-08-17 21:19:58    阅读次数:301
763条   上一页 1 ... 35 36 37 38 39 ... 77 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!