From 102736a94d2bf0d3451f2be9e43d49c3bb469fdb Mon Sep 17 00:00:00 2001 From: winlin Date: Fri, 23 Jan 2015 10:38:54 +0800 Subject: [PATCH] for #250, update readme add streamer arch. --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a0555f54f..ce74e07b0 100755 --- a/README.md +++ b/README.md @@ -1116,7 +1116,13 @@ SRS always use the most simple architecture to support complex transaction. +----------------------+ | | | MediaSource(2) | | | | (RTSP,FILE, | | | -| HTTP,HLS, ------+->-- Ingester ----(rtmp)-+-> SRS | +| HTTP,HLS, --pull-+->-- Ingester ----(rtmp)-+-> SRS | +| Device, | | | +| ......) | | | ++----------------------+ | | +| MediaSource(2) | | | +| (RTSP,FILE, | | | +| HTTP,HLS, --push-+->-- Streamer ----(rtmp)-+-> SRS | | Device, | | | | ......) | | | +----------------------+-------------------------+----------------+ @@ -1125,7 +1131,9 @@ Remark: (1) Encoder: encoder must push RTMP stream to SRS server. (2) MediaSource: any media source, which can be ingest by ffmpeg. (3) Ingester: SRS will fork a process to run ffmpeg(or your application) -to ingest any input to rtmp, push to SRS. +to ingest any input to rtmp, push to SRS. Read Ingest. +(4) Streamer: SRS will listen for some protocol and accept stream push +over some protocol and remux to rtmp to SRS. Read Streamer. ### [HDS/HLS origin backup](https://github.com/winlinvip/simple-rtmp-server/wiki/v1_CN_RTMP-ATC)