npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@devozdemirhasancan/rtmp-srt-server

v1.0.4

Published

Simple RTMP to SRT Stream Server

Downloads

7

Readme

RTMP to SRT Stream Server

Simple and lightweight server application that converts RTMP stream from GoPro to SRT protocol.

GoPro kameradan gelen RTMP yayınını SRT protokolüne dönüştüren basit ve hafif bir sunucu uygulaması.

Features / Özellikler

  • RTMP server for GoPro streaming / GoPro yayını için RTMP sunucusu
  • Automatic SRT conversion for OBS / OBS için otomatik SRT dönüştürme
  • Windows and macOS support / Windows ve macOS desteği
  • Low latency / Düşük gecikme süresi
  • Easy to use / Kolay kullanım

Use Cases / Kullanım Senaryoları

  1. Low Latency Streaming from GoPro to OBS / GoPro'dan OBS'ye Düşük Gecikmeli Yayın:

    • Receives RTMP stream from GoPro / GoPro'dan RTMP yayını alınır
    • Converts to SRT protocol / SRT protokolüne dönüştürülür
    • Use as Media Source in OBS / OBS'de Media Source olarak kullanılır
  2. Local Network Streaming / Yerel Ağda Yayın:

    • GoPro and OBS must be on same network / GoPro ve OBS aynı ağda olmalı
    • No port forwarding required / Port yönlendirme gerekmez
    • Stream with low latency / Düşük gecikme ile yayın yapılır

Requirements / Gereksinimler

  • FFmpeg (Must be installed on your system / Sisteminizde yüklü olmalıdır)
    # For Windows / Windows için:
    # Download FFmpeg from / FFmpeg'i buradan indirin: https://ffmpeg.org/download.html
    # Copy ffmpeg.exe to this folder / İndirdiğiniz ffmpeg.exe dosyasını bu klasöre kopyalayın
      
    # For macOS / macOS için:
    brew install ffmpeg

Installation / Kurulum

Using Pre-built Binaries / Hazır Executable Kullanımı:

  1. Download the latest release from GitHub / GitHub'dan son sürümü indirin:

    • Windows: Download rtmp-srt-server-win.exe
    • macOS: Download rtmp-srt-server-macos
  2. Start the application / Uygulamayı başlatın:

    # For Windows / Windows için:
    ./rtmp-srt-server-win.exe
       
    # For macOS / macOS için:
    ./rtmp-srt-server-macos

Using NPM Package / NPM Paketi Kullanımı:

  1. Install globally / Global olarak yükleyin:

    npm install -g @devozdemirhasancan/rtmp-srt-server
  2. Run the server / Sunucuyu çalıştırın:

    rtmp-srt-server

From Source / Kaynak Koddan:

  1. Clone and install / Klonlayın ve yükleyin:

    git clone https://github.com/devozdemirhasancan/rtmp-srt-server.git
    cd rtmp-srt-server
    npm install
  2. Run / Çalıştırın:

    npm start

Configuration / Yapılandırma

  1. GoPro Settings / GoPro Ayarları:

    • RTMP URL: rtmp://localhost:7002/live
    • Stream Key: test
  2. OBS Media Source Settings / OBS Media Source Ayarları:

    • SRT URL: srt://127.0.0.1:7005
    • Format: mpegts

Notes / Notlar

  • Press Ctrl+C to stop the application / Uygulamayı durdurmak için Ctrl+C tuşlarına basın
  • Works in SRT Listener mode on Windows, Caller mode on macOS / Windows'ta SRT Listener modunda, macOS'ta Caller modunda çalışır
  • Logs will be displayed in case of errors / Hata durumunda loglar ekranda görüntülenecektir

Development / Geliştirme

  1. Install Node.js dependencies / Node.js bağımlılıklarını yükleyin:

    npm install
  2. Run in development mode / Geliştirici modunda çalıştırın:

    npm start
  3. Build executables / Executable oluşturun:

    npm run build

Release Process / Yayınlama Süreci

  1. Update version / Versiyon güncelleyin:

    npm version patch|minor|major
  2. Push with tags / Tag'lerle push yapın:

    git push --follow-tags

GitHub Actions will automatically:

  • Create a new GitHub release
  • Upload Windows and macOS executables
  • Publish to NPM registry

GitHub Actions otomatik olarak:

  • Yeni bir GitHub release oluşturur
  • Windows ve macOS executable'larını yükler
  • NPM registry'ye yayınlar

License / Lisans

MIT License - See LICENSE file for details / Detaylar için LICENSE dosyasına bakın.

Contact / İletişim

Hasan Can Özdemir