LiveStreamingServerNet.Flv 0.16.0

dotnet add package LiveStreamingServerNet.Flv --version 0.16.0                
NuGet\Install-Package LiveStreamingServerNet.Flv -Version 0.16.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LiveStreamingServerNet.Flv" Version="0.16.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LiveStreamingServerNet.Flv --version 0.16.0                
#r "nuget: LiveStreamingServerNet.Flv, 0.16.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LiveStreamingServerNet.Flv as a Cake Addin
#addin nuget:?package=LiveStreamingServerNet.Flv&version=0.16.0

// Install LiveStreamingServerNet.Flv as a Cake Tool
#tool nuget:?package=LiveStreamingServerNet.Flv&version=0.16.0                

Live-Streaming-Server-Net

Nuget MIT License JetBrains OSS

Live-Streaming-Server-Net is a high-performance and flexible toolset that allows you to build your own live streaming server using .NET.

Please check the documentation for more details.

Features

  • RTMP/RTMPS protocol: Supports the RTMP and RTMPS protocols for streaming audio, video, and data.
  • RTMP Client: Provides a client library for connecting to RTMP servers and publishing/subscribing live streams.
  • HTTP-FLV/WebSocket-FLV with ASP.NET CORE: Provides support for serving FLV live streams using HTTP-FLV and WebSocket-FLV protocols within an ASP.NET Core application.
  • Transmuxing RTMP streams into HLS streams: Allows you to transmux RTMP streams into HLS (HTTP Live Streaming) streams using the built-in HLS transmuxer.
  • Transcoding RTMP streams into Adaptive HLS streams: Integrates with FFmpeg to transcode RTMP streams into multiple-bitrate Adaptive HLS streams.
  • Integration with FFmpeg: Provides support for processing the incoming RTMP stream with FFmpeg, for example, to create an MP4 archive.
  • GOP caching: Supports caching the Group of Pictures (GOP) to ensure immediate availability of live streaming content.
  • Custom authorization: Enables you to implement custom authorization mechanisms for accessing live streams.
  • Admin panel: Includes an admin panel that provides an user interface for managing and monitoring the live streaming server.
  • Cloud Storage Integration: Enabling real-time uploading of HLS files to cloud storage services like Azure Blob Storage, Google Cloud Storage, and AWS S3, which ensures scalable and efficient HLS stream distribution through CDN.
  • Codecs: Supports AVC/H.264, HEVC/H.265, AAC, and MP3 codecs.

Quick Start

Run the RTMP Server

Create a .NET 8 console application project and add the dependencies

dotnet new console
dotnet add package LiveStreamingServerNet
dotnet add package Microsoft.Extensions.Logging.Console

Program.cs

using LiveStreamingServerNet;
using Microsoft.Extensions.Logging;
using System.Net;

using var server = LiveStreamingServerBuilder.Create()
    .ConfigureLogging(options => options.AddConsole())
    .Build();

await server.RunAsync(new IPEndPoint(IPAddress.Any, 1935));

Run the application

dotnet run

Publish a Live Stream

With FFmpeg

Use the following command to publish a video as the live stream using FFmpeg

ffmpeg -re -i <input_file> -c:v libx264 -c:a aac -f flv rtmp://localhost:1935/live/demo
With OBS Studio
  1. Open OBS Studio and go to "Settings".
  2. In the "Settings" window, select the "Stream" tab.
  3. Choose "Custom" as the "Service".
  4. Enter "Server": rtmp://localhost:1935/live and "Stream Key": demo.
  5. Click "OK" to save the settings.
  6. Click the "Start Streaming" button in OBS Studio to begin sending live stream to the RTMP server.

Play the Live Stream

With FFplay

Use the following command to play the live stream using FFplay

ffplay rtmp://localhost:1935/live/demo
With VLC Media Player
  1. Open VLC Media Player.
  2. Go to the "Media" menu and select "Open Network Stream".
  3. In the "Network" tab, enter the URL: rtmp://localhost:1935/live/demo.
  4. Click the "Play" button to start playing the live stream.

License

This project is licensed under the terms of the MIT license.

Acknowledgments

Special thanks to JetBrains for providing the open-source software license that supports the development of this project.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.16.0 0 10/5/2024
0.15.1 32 10/3/2024
0.14.2 467 9/8/2024
0.14.1 744 7/13/2024
0.14.0 122 7/2/2024
0.13.0 128 6/16/2024
0.12.0 107 6/8/2024
0.11.0 103 6/1/2024
0.10.0 96 5/28/2024
0.9.3 110 5/17/2024
0.9.1 148 4/27/2024
0.9.0 118 4/13/2024
0.8.1 95 4/1/2024
0.8.0 96 3/31/2024
0.7.5 105 3/31/2024
0.7.0 142 3/24/2024
0.6.0 104 3/10/2024
0.5.1 106 3/1/2024
0.5.0 183 2/1/2024
0.4.2 88 1/28/2024
0.4.1 102 1/28/2024
0.4.0 104 1/19/2024
0.3.0 154 1/14/2024
0.2.0 117 1/14/2024
0.1.3 103 1/13/2024