H265 streaming using voxl-streamer
-
I am using the Sentinel drone with VOXL SDK 1.0.
By default, the camera server is configured for H265 encoding, but it doesn't seem to work with VOXL Streamer, as I am unable to decode this stream using the following GStreamer pipeline:
gst-launch-1.0 rtspsrc location=rtsp://100.90.151.134:8900/live latency=100 ! queue ! rtph265depay ! h265parse ! avdec_h265 ! videoconvert ! videoscale ! autovideosink
However, if I change the encoding to H264, the same pipeline for h264 decoding works fine:
gst-launch-1.0 rtspsrc location=rtsp://100.90.151.134:8900/live latency=100 ! queue ! rtph264depay ! h264parse ! avdec_h264 ! videoconvert ! videoscale ! autovideosink
Is it that the VOXL Streamer is still not compatible with H265 streams as mentioned here?