一、安装一些必要的调试工具

1、vlc安装
sudo apt-get install vlc
sudo apt-get install vlc-nox

2、ffmpeg安装,带ffplay,ffplay依赖sdl库

源码都是三步安装./configure && make && sudo make install

以下安装顺序不能乱

yasm 1.2.0.tar.gz

sudo apt-get install libx11-dev
sudo apt-get install xorg-dev

SDL2-2.0.8.tar.gz

ffmpeg-4.1.tar.bz2

3、ffplay编译起来真麻烦,还不如用mplayer和vlc

sudo apt-get install mplayer

二、h264/aac数据的rtp/rtsp收发

早年用live555来开发摄像机,虽然已经有了较完善的解析,封装等功能模块,但是live555代码嵌套太深,看起来费劲。

网上搜了一下,有很多的数据处理的小demo,都列举到此吧,大多数我都跑通了。

1、Send H264 file by RTP over UDP

https://github.com/hmgle/h264_to_rtp

https://github.com/tinydigger/RTPH264Streaming

2、Here is a simply using of rtp/rtsp protocol pushing .h264 object to a VLC client (single video)

https://github.com/GitDolhpin/simple_rtsp

3、Push the h.264 data through the rtp protocol, It can be played in the VLC player/Mplayer

https://github.com/licaibiao/rtp_push_h264

4、Encode h264 data to RTP package and Streaming through network

Use gstreamer as receiver,Run 'rtpencoder test.264 127.0.0.1 5004' as sender

https://github.com/tinydigger/RTPH264Streaming

5、use python to unpacketize rtp h264 packet

python rtph264.py This file can simply dump the rtp h264 packet to file from gstreamer

https://github.com/iantuan/rtp_h264

6、convert a binary h264 rtp packet file to h264 file

https://github.com/bill-hu/rtp2h264

7、RTP抓包文件导出H.264 Payload的Wireshark插件,感谢这位同学做了这么方便的工具

https://blog.csdn.net/jasonhwang/article/details/7359095#

8、H264 RTP打包发送和接收解包

H264 RTP打包发送

https://blog.csdn.net/anobodykey/article/details/7872027

H264 RTP解包

https://blog.csdn.net/anobodykey/article/details/7876047

9、rtp封包/分析/发送

(转)VLC播放RTP打包发送的.264文件

https://www.cnblogs.com/tangxiacun/p/4446009.html

(转)RTP-H264封包分析

https://www.cnblogs.com/tangxiacun/p/4493431.html

10、rtsp over udp

https://www.cnblogs.com/tangxiacun/p/4497786.html

send/receive h264/aac file/data by rtp/rtsp over udp/tcp的更多相关文章

  1. 开发RTSP 直播软件 H264 AAC 编码

    上一篇对摄像头预览,拍照做了大概的介绍,现在已经可以拿到视频帧了,在加上 RTSP 实现,就是直播的雏形,当然还要加上一些 WEB 管理和手机平台的支援,就是一整套直播软件. 介绍一些基础概念:RTP ...

  2. rtmp 推送h264 + aac 的数据

    相关源码下载: http://download.csdn.net/detail/keepingstudying/8340431 需要libfaac,librtmp 的支持, 1.帧的划分 1.1 H. ...

  3. I.MX6 Android Linux UART send receive with multi-thread and multi-mode demo

    /******************************************************************************************* * I.MX6 ...

  4. H264码流结构分析和rtp打包结构详解

    网络抽象层单元类型 (NALU): NALU头由一个字节组成,它的语法如下: +---------------+      |0|1|2|3|4|5|6|7|      +-+-+-+-+-+-+-+ ...

  5. couldn't open file: data/coco.names

    在ubuntu下配置yolo(v2)的时候,编译了源码后,尝试运行demo: ./darknet detect cfg/yolo.cfg yolo.weights data/dog.jpg 结果报错提 ...

  6. [问题解决] initAndListen: 10309 Unable to create/open lock file: /data/db/mongod.lock

    错误: 在linux下开启mongoDB的 $ >bin: ./mongod 时报错:initAndListen: 10309 Unable to create/open lock file: ...

  7. docs/pcs/rest/file data apis list - 百度开发者中心

    docs/pcs/rest/file data apis list - 百度开发者中心 更新通知: 2013.6.20 上传.下载新域名正式上线使用,相关接口“上传单个文件”.“分片上传-文件分片上传 ...

  8. 07-09 07:28:38.350: E/AndroidRuntime(1437): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.example.googleplay.ui.activity.MainActivity" on path: DexPathList[[zip file "/data/app/c

    一运行,加载mainActivity就报错 布局文件乱写一通,然后急着运行,报莫名其妙的错误: 07-09 07:28:38.350: E/AndroidRuntime(1437): Caused b ...

  9. [ilink32 Error] Fatal: Unable to open file 'DATA.DBXMSSQLMETADATAREADER.OBJ'

    [ilink32 Error] Fatal: Unable to open file 'DATA.DBXMSSQLMETADATAREADER.OBJ' 清除重新编译OK

随机推荐

  1. Linux上的free命令简介

    每次使用free时都比较迷惑,对于上面的内容一直都不是很清楚,今天仔细查了以下,和大家一起分享以下: 先看一下free的运行结果: free打印出的内存信息主要分为两种,一种是安装的内存,一种是用磁盘 ...

  2. go json解析

    JSON转换库为 encoding/json 把对象转换为JSON的方法(函数)为 json.Marshal(),其函数原型如下 func Marshal(v interface{}) ([]byte ...

  3. EasyUI 异步Tree

    用etmvc framework返回json数据.创建HTML标记 <ul id="tt"></ul> 创建jQuery代码我们使用url属性来指向远程数据 ...

  4. Maven中将所有依赖的jar包全部导出到文件夹

    因为我要对Java类的功能在生产环境(服务器端)进行测试,所以需要将jar包导出,然后在服务器端用-Djava.ext.dirs=./lib的方式走一遍, 下面是解决方案: 在pom.xml中加入如下 ...

  5. hdu 4928 Series 2 (优化+模拟)

    题意: 一个含n个数的序列a,每两个相邻的数相减得到一个新数,这些数组成一个新的序列. 假设全部得到的序列都满足非严格的单调性.则原序列为nice series.假设给出的序列 本来不满足单调性.它是 ...

  6. python3----输出所有大小写字母及数字

    1. 用一行输出所有大(小)写字母,以及数字 print([chr(i) for i in range(65, 91)]) # 所有大写字母 print([chr(i) for i in range( ...

  7. iOS 圆角投影

    self.backgroundColor = [UIColor whiteColor]; self.layer.shadowColor = [UIColor lightGrayColor].CGCol ...

  8. php 将一个字符串分割为组成它的字符

    问: php里如何将一个字符串分割为组成它的字符? 比如hello  -> [h, e, l, l, o]   以下有三种方法: 这是需要被分割的字符串:  $str = 'Hello小样'; ...

  9. 论坛模块__发帖时使用FCKeditor

    论坛模块__发帖时使用FCKeditor 测试 <html> <head> <meta http-equiv="content-type" conte ...

  10. 1-1、superset开发环境搭建

    在对superset进行二次开发的过程中,往往需要搭建本地开发环境,修改后立即看到效果,下面我们就讲下开发环境的搭建. 1.打开PyCharm,在菜单栏上执行VCS-->Checkout fro ...