srt VS nginx-rtmp-module

Compare srt vs nginx-rtmp-module and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
srt nginx-rtmp-module
15 31
2,917 13,067
1.7% -
8.7 0.0
3 days ago 15 days ago
C++ C
Mozilla Public License 2.0 BSD 2-clause "Simplified" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

srt

Posts with mentions or reviews of srt. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-21.
  • Mobile SRT stability
    1 project | /r/VIDEOENGINEERING | 23 May 2023
    Is receiver side also using mobile internet? You could try to setup this on separate server and both sender and receiver connnect to it. https://github.com/Haivision/srt/blob/master/docs/apps/srt-live-transmit.md
  • Nginx + SRT streaming - I need a push in the right direction
    3 projects | /r/selfhosted | 21 Apr 2023
    Here is one example how to feed SRT stream to ffmpeg. Try streaming directly to this via OBS first and confirm it works before stacking more software between endpoints. https://github.com/Haivision/srt/issues/506
  • 4 Different ways to Broadcast SRT Streams
    2 projects | dev.to | 9 Jan 2023
    SRT, or Secure Reliable Transport, is a type of streaming protocol that provides enhanced security and reliability for video streaming. SRT is becoming increasingly popular among broadcasters and streamers including industry stalwarts such as ESPN because of its ability to deliver high-quality content over challenging network conditions and for its ability to make contribution and stream ingestion easy. SRT streams provide improved security, low latency, and flexibility and is supported by a global community of developers all contributing to the open-source project. Because of the power of SRT streams, Dolby.io Real-Time Streaming has decided to launch support with an SRT open beta program.
  • SRT rendezvous confusion
    1 project | /r/VIDEOENGINEERING | 3 Jan 2023
    https://github.com/Haivision/srt/discussions/2220 I think this is probably the basis of what i did...
  • SRT Streaming failing when adding audio
    1 project | /r/ffmpeg | 27 Dec 2022
    If it turns out to be an SRT/socket issue (rather than an audio issue) you can pump FFmpeg into https://github.com/Haivision/srt srt-live-transmit, and let that do the SRT. It is a very long time since I played with srt-live-transmit, but it did behave differently to both FFmpeg and TSDuck's SRT impementations when there were input issues. Obviously, putting more components in the chain may be disadvantageous, but component abstraction can help when debugging.
  • SRT Client
    1 project | /r/VIDEOENGINEERING | 5 Nov 2022
  • Ousterhout: It's time to replace TCP in the Datacenter [pdf]
    8 projects | news.ycombinator.com | 30 Oct 2022
  • Video Streaming Protocols: What Are They & How to Choose The Best One
    2 projects | dev.to | 15 Sep 2022
    SRT is an open-source protocol developed by streaming technology provider Haivision. Known for its security, reliability, compatibility, and low-latency streaming it is the preferred protocol for members of the SRT Alliance. This protocol does not rely on a single codec, which allows developers to pair it with any audio and video codecs they desire.
  • Options for multicasting or streaming using AV1?
    1 project | /r/AV1 | 18 Jul 2022
    I've also looked at SRT, which to all intents and purposes ought to work, but doesn't?
  • OBS – Open Broadcaster Software
    11 projects | news.ycombinator.com | 21 Jun 2022

nginx-rtmp-module

Posts with mentions or reviews of nginx-rtmp-module. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-23.
  • Modifying source code of NGINX RTMP module to maintain connection to output stream while switching between input streams
    1 project | /r/nginx | 11 Dec 2023
    Regarding the first solution, I've looked through some of the source code for the NGINX RTMP Module, and I believe the code I would need to modify lives in the ngx_rtmp_cmd_module.c file: https://github.com/arut/nginx-rtmp-module/blob/master/ngx_rtmp_cmd_module.c
  • How can I develop a real time video streaming service with Django?
    1 project | /r/django | 2 Feb 2023
  • How to securely show web cam live stream 24/7 on website?
    2 projects | /r/selfhosted | 23 Jan 2023
    You could look at setting up the RTMP module on nginx and securing it with lets encrypt - https://github.com/arut/nginx-rtmp-module
  • We made KVRR vrc first radio station using jukeboxes placed across different worlds
    1 project | /r/VRchat | 18 Dec 2022
    foobar2000 -> OBS -> nginx server running nginx-rtmp-module
  • Adding WebRTC support to OBS using Rust
    9 projects | news.ycombinator.com | 15 Dec 2022
  • Ask HN: FFmpeg real-time desktop streaming
    10 projects | news.ycombinator.com | 27 Nov 2022
    If stuck for a server I've used this in the past. nginx with an RTMP module.

    Also linking a config file I commented. Unsure if it'll still work and you can definitely simplify it for OP's needs. It was a proof of concept for a streaming service I was thinking up before realising how much money I don't have, haha

    https://github.com/arut/nginx-rtmp-module

    https://gist.github.com/cohan/7f676d3f561be62d0550785c015f00...

  • Quick question on recording through an encoder
    1 project | /r/VIDEOENGINEERING | 25 Nov 2022
    If you can only output something like RTMP, then your options are a bit more limited. Set up an RTMP server somewhere (e.g. https://github.com/arut/nginx-rtmp-module), and connect with another client that will soak up the RTMP into a file - I think ffmpeg should be able to do that, but I've had the most luck with GStreamer. Again, avoid transcoding it on the way into a file, both ffmpeg and GStreamer can be set up to never touch the encoded media (just copy/pass it along).
  • RTMP with nginx and OBS on Ubuntu
    2 projects | /r/ShinobiCCTV | 11 Nov 2022
    Are you using the rtmp nginx module?
  • Criando seu próprio servidor de stream usando NGINX- RTMP
    1 project | dev.to | 27 Oct 2022
    FROM buildpack-deps:stretch ENV NGINX_VERSION nginx-1.18.0 ENV NGINX_RTMP_MODULE_VERSION 1.2.1 RUN apt-get update && \ apt-get install -y ca-certificates openssl libssl-dev && \ rm -rf /var/lib/apt/lists/* RUN mkdir -p /tmp/build/nginx && \ cd /tmp/build/nginx && \ wget -O ${NGINX_VERSION}.tar.gz https://nginx.org/download/${NGINX_VERSION}.tar.gz && \ tar -zxf ${NGINX_VERSION}.tar.gz RUN mkdir -p /tmp/build/nginx-rtmp-module && \ cd /tmp/build/nginx-rtmp-module && \ wget -O nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION}.tar.gz https://github.com/arut/nginx-rtmp-module/archive/v${NGINX_RTMP_MODULE_VERSION}.tar.gz && \ tar -zxf nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION}.tar.gz && \ cd nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION} RUN cd /tmp/build/nginx/${NGINX_VERSION} && \ ./configure \ --sbin-path=/usr/local/sbin/nginx \ --conf-path=/etc/nginx/nginx.conf \ --error-log-path=/var/log/nginx/error.log \ --pid-path=/var/run/nginx/nginx.pid \ --lock-path=/var/lock/nginx/nginx.lock \ --http-log-path=/var/log/nginx/access.log \ --http-client-body-temp-path=/tmp/nginx-client-body \ --with-http_ssl_module \ --with-threads \ --with-ipv6 \ --add-module=/tmp/build/nginx-rtmp-module/nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION} && \ make -j $(getconf _NPROCESSORS_ONLN) && \ make install && \ mkdir /var/lock/nginx && \ rm -rf /tmp/build RUN ln -sf /dev/stdout /var/log/nginx/access.log && \ ln -sf /dev/stderr /var/log/nginx/error.log COPY nginx.conf /etc/nginx/nginx.conf EXPOSE 1935 CMD ["nginx", "-g", "daemon off;"]
  • Streaming to Multiple Platforms Simultaneously
    1 project | /r/streaming | 1 Oct 2022
    But, if it's something you want to do, and want to do it inexpensively you want to use Nginx-RTMP - http://nginx-rtmp.blogspot.com/ - this is a free version of AntMedia Server without the $70 per month fee.

What are some alternatives?

When comparing srt and nginx-rtmp-module you can also consider the following projects:

nginx-rtmp-module

rtsp-simple-server - Also known as rtsp-simple-server. ready-to-use RTSP / RTMP / LL-HLS / WebRTC server and proxy that allows to read, publish and proxy video and audio streams. [Moved to: https://github.com/aler9/mediamtx]

OBS-studio-webrtc - This is a fork of OBS-studio with generic support for webrtc. It leverages the same webrtc implementation most browsers use.

docker-nginx-rtmp - 🐋 A Dockerfile for nginx-rtmp-module + FFmpeg from source with basic settings for streaming HLS. Built on Alpine Linux.

srs - SRS is a simple, high-efficiency, real-time video server supporting RTMP, WebRTC, HLS, HTTP-FLV, SRT, MPEG-DASH, and GB28181.

YouPHPTube - Create Your Own Broadcast Network With AVideo Platform Open-Source. OAVP OVP

srt-live-server - srt live server for low latency

PeerTube - ActivityPub-federated video streaming platform using P2P directly in your web browser

obs-studio - OBS Studio - Free and open source software for live streaming and screen recording

Project-Lightspeed - A self contained OBS -> FTL -> WebRTC live streaming server. Comprised of 3 parts once configured anyone can achieve sub-second OBS to the browser livestreaming

OpenLoco - An open source re-implementation of Chris Sawyer's Locomotion