Skip to main content

All Questions

2 votes
0 answers
358 views

I am unable to play the RTSP stream using ffmpeg

I have two computers with Ubuntu 20.04.5 LTS installed, and one virtual machine with Ubuntu 22.04.3 LTS. I have a docker container with mediamtx installed on one of the computers, let's call it server....
PiotrKulesza's user avatar
1 vote
0 answers
573 views

Redirected RTSP video stream cannot connect to server

I have an Auvidea video encoder/decoder that allows me to stream video via RTSP. I would like to redirect the stream from it to another server. As a server I use MediaMtx software previously known as ...
PiotrKulesza's user avatar
1 vote
1 answer
2k views

ffmpeg to fix video playback speed without re-encoding?

What's the best way to fix incorrect timestamps on a network camera using ffmpeg? Running the camera in h264 mode with a 1fps correctly produces duration=1.000: ffmpeg -hide_banner -rtsp_transport ...
Imaginator's user avatar
4 votes
1 answer
6k views

Reolink RTSP-->ffmpeg, RTP: PT=xx: bad cseq if stopped/restarted quickly

My BeeCam is a Raspberry Pi3/Raspbian Stretch w/freshly compiled ffmpeg version N-89882-g4dbae00bac running this as a service: #!/bin/bash cd /usr/local/bin/ while true do ./ffmpeg -re -...
Steven Kan's user avatar
0 votes
0 answers
4k views

ffmpeg: Record rtsp stream to disk in realtime and put black frames when rtsp times out

I need to record a rtsp video stream to disk in real time. This works nice and well with something like this(tcp not udp): ffmpeg -i rtsp://@stream -acodec copy -vcodec copy -movflags frag_keyframe+...
Michel Chanton's user avatar
2 votes
1 answer
10k views

Ffmpeg how to limit input fps

I save rtsp stream to file with ffmpeg. I see that even the stream is 30 fps, ffmpeg download it on 40-50-33 fps. How can i limit the input frame per sec? I tried ffmpeg -r 30 -i rtsp://ipVideo out....
cool's user avatar
  • 21
1 vote
0 answers
3k views

FFMPEG capture snapshot image from RTSP IPCamera

Hi I am able to stream video successfully from my IP Camera with VLC using the URL: rtsp://192.168.0.6:554/cam/realmonitor When attempting to use FFMPEG it is failing with the following errors: I ...
NxtLevel's user avatar
6 votes
1 answer
10k views

Capturing multiple RTSP streams simultaneously in sync

I would like to capture h264 rtsp streams from up to six IP cameras simultaneously and save them to separate files. The cameras are connected to a Gigabit switch which is connected to my pc. The ...
MartinKS's user avatar
3 votes
2 answers
13k views

Getting error: Unknown encoder 'libvo_aacenc'

I am new to ffmpeg, just trying to build an SDP file for streaming. I'm facing an error when I run the command ffmpeg -re -i "sample.mp4" -f rtp rtp://127.0.0.1:10000 -flags +global_header -c:a ...
mathlearner's user avatar