Questions tagged [nginx-rtmp]
14 questions
2
votes
0 answers
docker - RTMP nginx server access only from phone
I am quite new to this Docker universe. What I am trying to do is creating a RTMP server which I can stream to from my phone and then use VLC media player to playback the network stream.
I installed this container tiangolo/nginx-rtmp and ran it. My…

JonasDenmark
- 33
- 3
2
votes
1 answer
How to know if nginx rtmp streaming is stopped or finished?
We are trying to make a live streaming and we implemented nginx rtmp module and added on_publish callback to check if the stream key is valid or not.
Now we need one thing
We need to call api like on_publish when the user stops streaming for…

Hkm Sadek
- 2,987
- 9
- 43
- 95
1
vote
1 answer
nginx rtmp exec logs but does not execute
Is there a way I can execute a script when my stream finishes creating a ts segment? Or when a user connects and starts/stops viewing a stream?
The NGINX RTMP EXEC Directives says: "Specifies external command with arguments to be executed on every…

Ran Bo
- 33
- 8
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
0 answers
Nginx-rtmp-module exec_publish doesn't execute at all
I am trying to transcode the rtmp stream into hls and provide multiple quality streams with FFMPEG. I am trying to run the transcoding script on push, which from my understanding should start once the streamer is authenticated, but it never…

Otar Natsvaladze
- 83
- 1
- 6
0
votes
0 answers
Nginx rtmp access url parameters
I have two application blocks in my nginx.conf:
rtmp {
server {
listen 1935;
chunk_size 4096;
allow publish 127.0.0.1;
allow publish all;
application preview {
…

Skauen
- 11
- 1
0
votes
2 answers
Shell script rclone push to object storage works when run manually but not programmatically
Background
I have a docker container that runs nginx-rtmp module
On this container I receive an rtmp stream, that is recorded, transformed to hls and displayed on an html page
the streaming and displaying via hls works fine
Goal
My goal is to…

Merlin Duty
- 25
- 1
- 7
0
votes
1 answer
Docker Nginx | Where are the configs file?
I'm a brand-new Docker user, and despite my research on the internet, I can't find the configuration files or even the Nginx directory on my server (Debian 11). I'm using rtmp-hls to create a stream server, but without access to the config file it's…

H.LK
- 3
- 3
0
votes
0 answers
How can increase image processing FPS in YOLOv7 using Azure CLoud
I am developing the framework for Image processing using the Deep learning neural network YOLOv7. I have 20000 live data stream images per second, which is produced by the real-time machine. I want to handle these 20000Frames in minimal time using…

RAVINDRA PUROHIT
- 71
- 1
- 1
- 4
0
votes
3 answers
HLS never plays on iPhone with Nginx fed by ffmpeg. Works on Desktop Safari and iPad
I am live streaming a Camera via RTMP to a Nginx RTMP server like so:
ffmpeg -rtsp_transport tcp -i rtsp://user:pass@192.168.1.XXX/ -f image2 -stream_loop -1 -re -i /tmp/overlay.png -filter_complex "overlay" -vcodec libx264 -preset ultrafast…

Yllier123
- 66
- 14
0
votes
0 answers
How do I secure my hls link so that no other site will use it?
I made a streaming server using Nginx RTMP.
I created a live streaming server using Nginx, according to the explanation in this link: Create a secure adaptive bit-rate HLS stream with Nginx/RTMP/Ffmpeg on Ubuntu 20.04 (2021).
I streamed on the…

SHERLOV
- 1
0
votes
0 answers
nginx rtm "server_name" directive is not allowed
My nginx configuring is below:
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off;
hls…

anamul
- 13
- 4
0
votes
0 answers
Nginx rtmp live and save on s3bucket
I have successfully setup nginx-rmtp-module for live streaming, i have tested it with obs software, it works great !
But i am having trouble to save the video on s3bucket for future use.
This is what i setup:
rtmp {
server {
…
user19409887
0
votes
0 answers
Nginx-Rtmp not able to set latency
I'm using nginx-rtmp module to capture RTMP streams from my cameras and transmit them to further systems.
Generally my setup is working fine and generating .m3u8 files properly. For…

Krzysztof Majewski
- 2,494
- 4
- 27
- 51