原文: Setting Up Adaptive Streaming with Nginx by Licson。
最近我在为一个组织搭建视频直播系统。对于视频直播来说我是新手,经过一番调研,最终还是觉得Nginx + RTMP module是一个好的选择。
搭建这个系统还是很困难的。经过了好几天的测试和摸索,我得到了一种比较好的配置,值得给大家分享。
Recently, I’m working out a system to smoothly stream live events for an organization. That is pretty new to me and, after a bunch of research, found that Nginx with the RTMP module seems to be a good choice. There are many difficulties when setting all this up and after several days of testing, I found a good setting that is worth a post.
Setup Nginx and RTMP module
First, let’s get Nginx set up. In order to use the RTMP module, we need to compile that as an Nginx module. It would look something like this:
|
|
After all things are done, check whether nginx is compiled properly.
If you can see that Nginx RTMP is included, you can go to the next step. Before we proceed to configuring Nginx for live streaming, we should confirm what kind of resolution we should provide for live streams and how much hardware power you have.
Prerequisites
For converting live streams into several streams for adaptive streaming, you need to make sure your server have enough CPU for such workload. Otherwise, the live stream will suffer from continuous delays and/or server becomes unresponsive. I have spawn some EC2 c3.large and c3.xlarge instances, test with them and I found out their optimized CPU can handle such workload with ease. Something that also worth mention is about the I/O limits of the disks. If possible, store the HLS fragments generated to an high-speed SSD helps maintain smooth streaming experiences.
Then, you also need to think about what kind of resolutions you will be offering for adaptive streaming. Generally about 4-5 variants are good enough to provide great loading speeds for different network speeds and devices. Here’s my recommended list of variants used for live streaming:
- 240p Low Definition stream at 288kbps
- 480p Standard Definition stream at 448kbps
- 540p Standard Definition stream at 1152kbps
- 720p High Definition stream at 2048kbps
- Source resolution, source bitrate
Configuring nginx for live streaming
Here is my own nginx.conf with comments that you can have references on.
|
|
Then, configure your live encoder to use these settings to stream into the server:
- RTMP Endpoint: rtmp://yourserver/live/
- RTMP Stream Name: [Whatever name you like]
Finally, configure your player for live playback. The HLS URL would look like this:
http://yourserver/hls/[The stream name above].m3u8
Recommended encoder settings for live events
If you can adjust the encoder, the following settings can help to gain better experiences.
- Full HD Resolution (1920×1080) is recommended
- H.264 Main profile, with target bitrate of 4000Kbps, maximum 6000Kbps
- 25fps, 2 second keyframe interval
- AAC audio at 128Kbps, 44.1kHz sample rate
And that’s all! I hope you can enjoy doing live events with these techniques.