Search results

  1. mynameisnothere

    Fix "Non-monotonous DTS" errors in ffmpeg?

    I use ffmpeg -hide_banner -rtsp_transport tcp -use_wallclock_as_timestamps 1 -thread_queue_size 512 -i "rtsp://user:mypass@192.168.1.12:554/" -c copy cam_recording.mp4 Though I'm guessing you want to know the HLS command, for that I use: ffmpeg -hide_banner -rtsp_transport tcp...
  2. mynameisnothere

    Fix "Non-monotonous DTS" errors in ffmpeg?

    My cam doesn't do audio, so no, I hear no audio. Also I've gone back to ffmpeg, as the recorded stream from gst would get jumpy whenever the cam would detect movement and send me alerts. ffmpeg seems to handle this better and only produce a tiny stutter in the recorded file, hardly noticeable...
  3. mynameisnothere

    Fix "Non-monotonous DTS" errors in ffmpeg?

    Thanks Aziz, I gave the `-copytb 1` a try, but a few hours later I still got the "muxing overhead: unknown" error. So I've switched back to gstreamer, as that's been running fine since I switched to it without any errors. But thanks for the supervisor tip! Will still use that in case one day...
  4. mynameisnothere

    Fix "Non-monotonous DTS" errors in ffmpeg?

    Nevermind, here's what I ended up doing if anyone else has these issues. After trying many different options with ffmpeg (even trying the latest ffmpeg v4) I couldn't get it to work reliably. I ended up giving gstreamer a try, after a bit of googling and trail and error I found the parameters...
  5. mynameisnothere

    Fix "Non-monotonous DTS" errors in ffmpeg?

    I'm trying to grab the live RTSP stream from my DS-2CD2085FWD-I camera and stream it in the browser, to do that I need to change it to the HLS format, but when I do that I get a bunch of DTS errors. The command I use: ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -thread_queue_size 512 -i...
Top