Hey @Alex-Kushleyev! To answer your questions:
-
Yes, with the latest SDK, RTSP streaming works in VLC as long as the cache is not set to 0 ms. I’ve seen stable playback once the cache is increased (around ~300 ms).
-
I’m using VLC to test playback, but I also tested using ffmpeg and was able to successfully record video from the RTSP stream even with 0ms cache. This led me to think that frames are being transmitted correctly, but there’s likely a timing / timestamp issue in the RTSP stream that ffmpeg is tolerant of, but causes VLC to freeze. I don't remember the exact command I used but it was similar to:
ffmpeg \
-rtsp_transport tcp \
-fflags nobuffer \
-flags low_delay \
-an \
-i rtsp://<voxl-ip>:8900/live \
-t 10 \
-c copy \
out.mp4
- Yes, '''hires_misp_color''' has been available when I've tested this. When I set VLC to 0ms cache, I always only receive one frame before the stream freezes.



