RTSP URL with query params? #974
-
Hi @niyatim23, Is this issue fixed? gst-launch-1.0 --gst-debug-level=3 rtspsrc location=rtsp://admin:[email protected]:8554/recorded/4784640?start_time=2022-07-25T00:00:00Z ! rtph264depay ! h264parse ! decodebin ! kvssink stream-name=demo storage-size=512 Originally posted by @ajith-karkera in #800 (comment) |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
I tried doing URL encoding of query params in pipeline like below, still it fails. |
Beta Was this translation helpful? Give feedback.
-
Can you please try with the
If it doesn't work please post logs attached as a separate file. Are you specifying any additional parameters in your |
Beta Was this translation helpful? Give feedback.
-
Hi @hassanctech , Thanks for the reply, I tried the pipline that you have shared. One with the RTSP URL as it is: One with RTSP URL encoded: Please find attached logs for the same. |
Beta Was this translation helpful? Give feedback.
-
Hi @hassanctech, I have also tried the pipline that you have shared with the live RTSP URL as below, It works like charm, the issue is with the RTSP URL of recording which has query string. gst-launch-1.0 -v rtspsrc location=rtsp://admin:[email protected]:8554/4784640 ! rtph264depay ! h264parse ! kvssink stream-name=Demo storage-size=128 Please find attached logs for the same. |
Beta Was this translation helpful? Give feedback.
-
Hi @hassanctech , Any update on the issue? |
Beta Was this translation helpful? Give feedback.
-
This issue is fixed, We need to add a / at the end of RTSP URL. gst-launch-1.0 -v rtspsrc location=rtsp://admin:[email protected]:8554/recorded/4784640%3Fstart_time=2022-08-03T11:20:00Z/ ! rtph264depay ! h264parse ! kvssink stream-name=Demo storage-size=128 |
Beta Was this translation helpful? Give feedback.
This issue is fixed,
We need to add a / at the end of RTSP URL.
gst-launch-1.0 -v rtspsrc location=rtsp://admin:[email protected]:8554/recorded/4784640%3Fstart_time=2022-08-03T11:20:00Z/ ! rtph264depay ! h264parse ! kvssink stream-name=Demo storage-size=128