Questions tagged [node-media-server]
22 questions
2
votes
0 answers
Media Streaming Servers for Django
I and my team are starting a project where in we are building a scalable live streaming platform just like Youtube. We are using Django as the backend framework.
Which is the best media streaming library/server that can be used to achieve the…

Harsh Wasnik
- 31
- 3
2
votes
1 answer
How to set-up node-media-server with rtmp on DO Droplet
All Files Below
I have trouble hosting my RTMP server on a digital-ocean droplet.
I have 2 node application, 1 is just an API written with Hapi.js that runs on port 8000
The second one is a node-media-server app running on port 8888 and 1935 for…

Davit
- 793
- 6
- 17
2
votes
2 answers
How to send Video Stream to RTMP Server with React and node
I have a RTMP Server (node-media-server) where i can send stream from OBS and watch them in Browsers. To make the sending process easier i want to send streams directly from Browser.
1st idea was to get the Streamdata with…

Daniel Richter
- 768
- 5
- 23
1
vote
1 answer
using ffmpeg and node to stream a fixed video
I am trying to use a node module to stream a video on a website. The modules name is node-media-server. I currently have set it up to work when streaming a live source from obs and it works fine. What I can't figure out is how to stream a fixed…

seriously
- 1,202
- 5
- 23
1
vote
0 answers
Node Media Server [rtmp play] Close stream
This is my app.js file:
const NodeMediaServer = require('./');
const config = {
rtmp: {
port: 1935,
chunk_size: 60000,
gop_cache: true,
ping: 60,
ping_timeout: 30,
/*
ssl: {
port: 443,
key:…

Android'e Doğru
- 21
- 2
1
vote
0 answers
How to use the node media server npm module with auth for publish and play streamings?
How to use auth for play and publish streams?
How to send the user pass params using Larix Software or by URL?
How to use the URL to send auth data?
Example:
auth: {
play: true,
publish: true,
api: true,
api_user:…

LT-Sites
- 375
- 5
- 15
1
vote
0 answers
How to secure node media server admin panel with username and password and each streamer keys - Node Media Server
First of that, thanks to the team which has created this wonderful project for live streaming.
It works more than what i expected.
The only problem is that both streamer keys and the admin panel is open to the world
So anyone can see the admin and…

Hussain Baduhsa
- 21
- 6
0
votes
0 answers
project hosted on firebase rtmp server is running but rtmp protocol not working
rtmp server working on local machine and I can do video streaming on local network but rtmp server not working on global network
I am working on live video streaming project I have used nod-media-server library in project
when I run my project on…
0
votes
1 answer
Is it possible to add custom endpoint to NodeMediaServer's HTTP server?
I have a NodeMediaServer to livestream to and save the vods. I want to add a custom endpoint to the HTTP server of NodeMediaServer. Is this possible or do I have to run an express server next to it? I know it is possible to access a single file but…

kevin van gils
- 31
- 5
0
votes
0 answers
Get video path after the user ended the live stream
I created RTMP server with node-media-server, I wanted to upload video after the stream ends. The scenario is :
USER A -> rtmp://localhost:1935/userA
USER B -> rtmp://localhost:1935/userB
After both stream ends, it will save on ./media folders,…

mandaputtra
- 922
- 3
- 18
- 36
0
votes
1 answer
How to call an hls server in a react app that is using https
So, I have a react app that is built and run through a nodejs server. This nodejs server is run with nginx which handles the cert. This react/nodejs server also is running a RTMP server this RTMP server is running an hls server.
So, basically the…

Devin Tripp
- 1
- 1
0
votes
1 answer
Save Media Stream for playback
I've setup a local RTMP media server with the node-media-server library. It receives media-stream from Streamlabs. I can access it with the localhost link easily and it works without any issue.
const NodeMediaServer =…

Ajit Kumar
- 367
- 1
- 10
- 35
0
votes
0 answers
HLS - Clip maker with Node media server
Hello how are you? I'm looking for a way to make a clip system like twitch, with HLS. I'm using Node media server as a streaming server and what I want to do is that by pressing a button on the client, I get the last 60 seconds of the node media…
0
votes
0 answers
How to transcode audio from an RTMP stream in real-time to an audio stream
I’m looking to transcode the audio from an RTMP stream in real-time to an audio stream. I am currently having the RTMP stream published to an RTMP server (https://www.npmjs.com/package/node-media-server). From there, I would like to be able to…

catfishq55
- 1
- 1
0
votes
0 answers
Web socket disconnects early when ffmpeg finishes proccess
I am using ffmpeg to stream an mp4 video to an rtmp server then display in on the front end using websocket and the process works fine. The problem i'm having is once the video nears its end the web socket connection on the front end disconnects and…

seriously
- 1,202
- 5
- 23