Android RTSP 视频处理


A solution for streaming H.264, H.263, AMR, AAC using RTP on Android

  • With the RTSP client: if you want to stream to a Wowza Media Server, it's the way to go. The example 3 illustrates that use case.需要用到a Wowza Media Server,这个服务器大量商用要付费的。
  • With the RTSP server: in that case the phone will act as a RTSP server and wait for a RTSP client to request a stream. This use case is illustated in the example 1.这个例子,直接流媒体咯放弃VLC等播放此处的RTSP的视频流
  • Or you use libstreaming without using the RTSP protocol at all, and signal the session using SDP over a protocol you like. The example 2 illustrates that use case.

以下地址有更详细的说明:

https://github.com/fyhertz/libstreaming

https://github.com/fyhertz/libstreaming-examples


可以从http://download.csdn.net/detail/csqingchen/8404787 下载官方示例的打包


你可能感兴趣的:(android,RTSP,视频处理)