1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-12 11:21:52 +00:00
No description
Find a file
2013-10-25 17:16:23 +08:00
trunk support h264/avc codec by rtmp complex handshake(SrsComplexHandshake) 2013-10-25 17:16:23 +08:00
.gitignore Initial commit 2013-10-16 23:15:20 -07:00
LICENSE Initial commit 2013-10-16 23:15:20 -07:00
README.md add rtmp complex handshake classes 2013-10-25 07:15:33 +08:00

simple-rtmp-server

simple rtmp origin live server over state-threads.
can be used as origin server, or rtmp-server for encoder.

Summary:
srs is a simple, high-performance, running in single process,
origin live server, with single vhost(like FMS __defaultVhost__).

Features:

  1. simple: also stable enough.
  2. high-performance: single-thread, async socket, event/st-thread driven.
  3. no edge server, origin server only.
  4. no vod streaming, live streaming only.
  5. no vhost, __defaultVhost__ only.
  6. no multiple processes, single process only.

DevLog:

  • 2013-10-23, release v0.1, support FMLE/FFMPEG publish, vp6 codec live streaming. 8287 lines.
  • 2013-10-17, created.

Compare:

  • srs v0.1: 8287 lines.
  • nginx-rtmp v1.0.4: 26786 lines
  • nginx v1.5.0: 139524 lines

Features:

  • v0.2, 2013-10-25, support h264/avc codec by rtmp complex handshake(SrsComplexHandshake).
  • v0.2, 2013-10-24, support time jitter detect and correct algorithm(SrsConsumer::jitter_correct).
  • v0.2, 2013-10-24, support decode the video/audio codec type(SrsCodec), cache the h264/avc sequence header.
  • v0.1, 2013-10-23, support basic amf0 codec, simplify the api using c-style api.
  • v0.1, 2013-10-23, support shared ptr msg(SrsSharedPtrMessage) for zero memory copy.
  • v0.1, 2013-10-22, support vp6 codec with rtmp protocol specified simple handshake.
  • v0.1, 2013-10-20, support multiple flash client play live streaming.
  • v0.1, 2013-10-20, support FMLE/FFMPEG publish live streaming.
  • v0.1, 2013-10-18, support rtmp message2chunk protocol(send message).
  • v0.1, 2013-10-17, support rtmp chunk2message protocol(recv message).

Winlin