开源流媒体服务端
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
winlin 598aaa5c98 detect the video/audio codec, only cache the h264/aac sequence header 12 years ago
trunk detect the video/audio codec, only cache the h264/aac sequence header 12 years ago
.gitignore Initial commit 12 years ago
LICENSE Initial commit 12 years ago
README.md update README 12 years ago

README.md

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

Winlin