Bookmark this page. The next time your video analytics pipeline fails, paste rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov into VLC. If that works, your code is fine, and your camera network is the problem.
rtsp://[username:password@]host[:port]/path[?query] rtsp sample url
Consequently, studying default RTSP sample URLs teaches a critical lesson in security hygiene. The very convenience that makes rtsp://username:password@ip easy to test also makes it a gaping vulnerability if left unchanged. The sample URL thus serves as a double-edged sword: a tool for learning and a warning sign of misconfiguration. Bookmark this page
Most RTSP URLs follow this general syntax: rtsp://[username]:[password]@[ip-address]:[port]/[stream-path] rtsp:// identifies the protocol. your code is fine
A sample RTSP URL typically follows this format:
gst-launch-1.0 filesrc location=test.mp4 ! qtdemux ! h264parse ! rtph264pay ! rtspbin name=rtspbin
rtsp://admin:password123@192.168.1.100:554/ch1