Skip to content

Performance Benchmark

Method

To conduct the performance benchmarking, all the applications are packaged as Docker images and deployed to Azure Container Instances with the configuration of 1 vCPU, 2 GiB memory, 0 GPUs, running on Linux OS.

To facilitate large-scale stream publishing and subscription, the srs-bench benchmarking tool is employed. Besides, all benchmark tests were performed with the same set of videos at different resolutions and bitrates, including 240P at 200 kbps, 480P at 500 kbps, and 720P at 1500 kbps.

Code

The following code sets up a live streaming server capable of:

  1. Accepting and broadcasting AVC/AAC RTMP streams.
  2. Transmuxing all the incoming RTMP streams into HLS streams with the built-in HLS transmuxer.
  3. Serving HLS streams via ASP.NET Core’s static file middleware.
  4. Enabling GOP caching based on the RTMP_ENABLE_GOP_CACHING environment variable.
  5. Batching media packages within a 350ms window to optimize performance for large-scale RTMP broadcasting.
  6. Providing an admin panel UI.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using LiveStreamingServerNet;
using LiveStreamingServerNet.AdminPanelUI;
using LiveStreamingServerNet.Rtmp;
using LiveStreamingServerNet.Standalone;
using LiveStreamingServerNet.Standalone.Installer;
using LiveStreamingServerNet.StreamProcessor.AspNetCore.Installer;
using LiveStreamingServerNet.StreamProcessor.Installer;
using System.Net;

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddLiveStreamingServer(
    new IPEndPoint(IPAddress.Any, 1935),
    serverConfig =>
    {
        serverConfig.Configure(options =>
        {
            options.EnableGopCaching = builder.Configuration.GetValue("RTMP_ENABLE_GOP_CACHING", true);
            options.MediaPackageBatchWindow = TimeSpan.FromMilliseconds(350);
        });

        serverConfig.AddVideoCodecFilter(builder => builder.Include(VideoCodec.AVC))
                    .AddAudioCodecFilter(builder => builder.Include(AudioCodec.AAC));

        serverConfig.AddStandaloneServices();

        serverConfig.AddStreamProcessor()
                    .AddHlsTransmuxer();
    }
);

builder.Services.AddCors(options =>
    options.AddDefaultPolicy(policy =>
        policy.AllowAnyHeader()
              .AllowAnyOrigin()
              .AllowAnyMethod()
    )
);

var app = builder.Build();

app.UseCors();

app.UseHlsFiles();

app.MapStandaloneServerApiEndPoints();

app.UseAdminPanelUI();

await app.RunAsync();

Results

Live-Streaming-Server-Net

150 Publishers Streaming RTMP Video at 240P and 200kbps

CPU Usage

Memory Usage

Network Bytes Received

300 Publishers Streaming RTMP Video at 240P and 200kbps

CPU Usage

Memory Usage

Network Bytes Received

150 Publishers Streaming RTMP Video at 480P and 500kbps

CPU Usage

Memory Usage

Network Bytes Received

100 Publishers Streaming RTMP Video at 720P and 1500kbps

CPU Usage

Memory Usage

Network Bytes Received

1000 Subscribers Receiving RTMP Video at 720P and 1500kbps

CPU Usage

Memory Usage

Network Bytes Received

Network Bytes Transmitted

Live-Streaming-Server-Net with GOP caching disabled

Generally, if the stream is to be served as HLS, GOP caching, which consumes additional memory, is not necessary. Therefore, the benchmark tests are also conducted with GOP caching disabled.

150 Publishers Streaming RTMP Video at 240P and 200kbps

CPU Usage

Memory Usage

Network Bytes Received

300 Publishers Streaming RTMP Video at 240P and 200kbps

CPU Usage

Memory Usage

Network Bytes Received

150 Publishers Streaming RTMP Video at 480P and 500kbps

CPU Usage

Memory Usage

Network Bytes Received

100 Publishers Streaming RTMP Video at 720P and 1500kbps

CPU Usage

Memory Usage

Network Bytes Received

200 Publishers Streaming RTMP Video at 720P and 1500kbps

CPU Usage

Memory Usage

Network Bytes Received

300 Publishers Streaming RTMP Video at 720P and 1500kbps

CPU Usage

Memory Usage

Network Bytes Received

400 Publishers Streaming RTMP Video at 720P and 1500kbps

CPU Usage

Memory Usage

Network Bytes Received

SRS (Simple Realtime Server) 5

As a reference, similar benchmark tests are performed on SRS 5.

150 Publishers Streaming RTMP Video at 240P and 200kbps

CPU Usage

Memory Usage

Network Bytes Received

150 Publishers Streaming RTMP Video at 480P and 500kbps

CPU Usage

Memory Usage

Network Bytes Received

100 Publishers Streaming RTMP Video at 720P and 1500kbps

CPU Usage

Memory Usage

Network Bytes Received

1000 Subscribers Receiving RTMP Video at 720P and 1500kbps

CPU Usage

Memory Usage

Network Bytes Received

Network Bytes Transmitted