RTSP seems to be broken
With your instructions (thank you so very much), I was able to launch UWP Debug x64 on WIN 10 platform and also on Hololens 2 (no issues) videotestsrc works too, no issue.
BUT
when I launch RTSP client by changing this line in Scenario3.xaml.cpp from: pipeline = gst_parse_launch("videotestsrc ! queue ! glimagesink name=overlay", nullptr); to pipeline = gst_parse_launch("rtspsrc location=rtsp://192.168.50.167:8554/realtime latency=0 ! decodebin3 ! autovideosink sync=false name=overlay", nullptr);
I am running v 1.18.0 RTSP server on WINDOWS machine and can reach it with successful video using the following pipeline:
"gst-launch-1.0 rtspsrc location=rtsp://192.168.50.167:8554/realtime latency=0 ! decodebin3 ! autovideosink sync=false"
Thoughts ?