-
Notifications
You must be signed in to change notification settings - Fork 2
v1_EN_DeliveryRTMP
The kernel feature of SRS is RTMP.
The RTMP and HLS, see: HLS
For information about compare the RTMP and HLS, read RTMP PK HLS.
For information about how to deploy SRS to support RTMP, read Usage: RTMP.
RTMP the first supported video stream for flash, and the best realtime stream on PC flash:
- No plugin: The flash plugin already installed on almost all PC, no need other plugin to play the RTMP stream.
- Fast develop player: Only need 7lines to play a RTMP stream for flash. It is very complex to play the HLS or HDS on PC flash.
- Industrial-strength: RTMP server and flash player is very stable for RTMP.
- Realtime Stream for internet: RTMP latency in 0.8-3s, can be used in live show or meeting.
- The actual standard for encoder output for internet: RTMP is the actual standard protocol, for all encoder to publish stream to internet server, server will mux the RTMP to HLS, HDS or DASH.
SRS live streaming use RTMP as kernel protocol.
SRS vod streaming is in plan and use HTTP protocol.
RTMP is the acient and the first video streaming protocol supported by flash, which is MacroMedia flash player, then rename to Adobe Flash player. Few lines code to play the RTMP stream:
var conn = new NetConnection();
var stream = new NetStream(conn);
var video = new Video();
this.addChild(video);
video.attachNetStream(stream);
conn.connect("rtmp://192.168.1.170/live");
stream.play("livestream");
Config SRS to support RTMP:
listen 1935;
max_connections 1000;
vhost __defaultVhost__ {
}
Start server: ./objs/srs -c conf/rtmp.conf
Use encoder, for instance, FMLE to publish RTMP stream. FMLE use FMS URL
to input the vhost/app, and the Stream
to input the stream name:
# For RTMP url: rtmp://192.168.1.170/live/livestream
FMS URL: rtmp://192.168.1.170/live
Stream: livestream
The RTMP url, see: RTMP URL&Vhost
The deploy sample, see: Usage: RTMP
The FMLE publish example:
User can use flash player or vlc to play RTMP stream, for example, the RTMP url: rtmp://192.168.1.170/live/livestream
The latency of RTMP is in 1-3s, the config see: Low Latency
Winlin 2014.11