Questions tagged [rtmp]
RTMP is an internet protocol for streaming audio, video and data over the internet.
38 questions
1 vote
0 answers
42 views
Timestamp discontinuity errors with HLS to RTMP using ffmpeg
I'm having the following ffmpeg error message while streaming HLS to RTMP using ffmpeg: [mpegts @ 0x6164ab82c600] Packet corrupt (stream = 0, dts = 475920), dropping it. [vist#0:0/h264 @ ...
0 votes
1 answer
321 views
Video delay when transcoding from an nginx-rtmp-module RTMP stream
I am using the nginx-rtmp-module for accepting RTMP streams and then publishing them locally for transcoding with FFmpeg. After a recording is made, there is an observable freeze in the video for the ...
1 vote
0 answers
240 views
routing rtmp ect streams via ffmpeg+python is it possible?
Is it possible to solve this problem using ffmpeg+python or in conjunction with another solution. I need a server solution, so Vmix, obs, etc are not suitable. ( eg: I have two (and/or more) streams ...
0 votes
1 answer
916 views
Combine mp4 video and a RTMP stream into 1 RTMP output stream via ffmpeg
I need a ffmpeg command to first feed a mp4 video into a RTMP output stream, then followed by a RTMP input subsequently; what should be the parameters to get it working?
1 vote
1 answer
1k views
Monitor FFMPEG Rtmp live stream with FFPLAY pipe
I have wrestled with this for hours and can not figure out how to pipe this to ffplay so that i can monitor it. google searches and searches on here and stack overflow come up empty ffmpeg -...
0 votes
0 answers
2k views
Infinite loop RTMP Stream Using FFmpeg or Equivalent
I'm trying to do an infinite loop RTMP stream on a CentOS 7 server and it seems like FFmpeg would be the best way to accomplish that. However, I cannot seem to coax FFmpeg into doing it despite ...
0 votes
1 answer
2k views
NDI vs RTSP/RTMP in PTZOptics cameras
I am working on building a live streaming system for my church and have settled on using PTZOptics cameras for the project. Our AV dealer wanted to set them up with SDI connections and then go through ...
1 vote
0 answers
786 views
Streaming video file to YouTube Live with FFmpeg - Automatically resume after crash?
ffmpeg -re -i [FILENAME] -codec copy -f flv rtmp://a.rtmp.youtube.com/live2/[STREAM KEY] I'm able to use this command to stream a video file to YouTube Live without re-encoding. If FFmpeg crashes for ...
1 vote
1 answer
4k views
FFmpeg rtmp listen not working correctly: Connection Refused
Im trying to convert rtmp into an HLS stream using ffmpeg as the rtmp server. In the docs they mention that providing -listen 1 makes ffmpeg act as an rtmp server yet the behaviour is very weird. ...
2 votes
1 answer
6k views
ffmpeg rtmp server connection issues
I am trying to stream using ffmpeg rtmp using, ffmpeg -i out2.mp4 -c:v copy -c:a aac -listen 1 -ar 44100 -ab 64000 -f flv rtmp://localhost/live The process starts but nothing is happening after ...
1 vote
1 answer
633 views
Network Stream reloading in a loop (Nginx/RTMP Streaming Server)
As the generic title suggests, I do not know exactly how to explain my problem, neither do I know what could cause it. Hopefully this ends up to be the right place looking for help, as I do not find ...
1 vote
0 answers
503 views
Switch between HLS input streams to output a new HLS stream
I'm trying to generate a HLS stream from an input of N (in this example 2) HLS streams but I cannot figure out the right settings to get the PTS values right. My streams can be represented this way : ...
1 vote
2 answers
5k views
Combining two live RTMP streams into another RTMP stream, synchronization issues (with FFMPEG)
I'm trying to combine (side by side) two live video streams coming over RTMP, using the following ffmpeg command: ffmpeg -i "rtmp://first" -i "rtmp://first" -filter_complex "[0v][1v]xstack=inputs=2:...
0 votes
1 answer
827 views
OBS RTMP to Web player
Good morning, I'm biiiiig newbie and I struggle to understand one thing I want to stream video with e.g OBS, it supports RTMP, so I'm setting up RTMP server. It works fine, I'm able to watch it via ...
0 votes
0 answers
2k views
FFmpeg to RTMP streaming stucks after few seconds
I'm trying to stream to online service via FFmpeg. All my test commands works fine with restream.io preview and with local rtmp server viewer. My OBS setup works fine too (same resolution, server and ...