-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rtsp Pipeline with ROS2 humble #97
Comments
Debugging tips:
What errors are you seeing? What's the behavior? Another note, that I think could be a problem - if you don't set gstreamer to log errors, it could quietly have pipeline problems. For instance, I had this one:
However, a pipeline was still created, so the node error/exit was not triggered. I'm going to probably suggest (once I get a little more comfortable with this) adding the following after this detection so it's at least printed:
So that even in non-verbose mode, we'll see the errors, like in my issue:
So, not a direct answer to your question because I don't really understand exactly what you're asking, but my error was that I was setting my configuration wrong:
The above fails because I'm not properly escaping my quotes Fixed with
And then, I get a nice video stream with
|
I am using a rgb camera with |
I am trying to get gscam working on ROS2 Humble.
Pipeline
gst-launch-1.0 -v rtspsrc location=rtsp://main:main@1xx.1xx.100.xxx:554/11 do-retransmission=false latency=0 ! queue ! rtph264depay ! h264parse ! avdec_h264 ! videoconvert ! videoscale ! video/x-raw,width=640,height=480 ! autovideosink
Environment
ROS_DISTRO=humble RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
Can you please help me? @gitjuanr @jeremroy @KnechtNoobrecht
The text was updated successfully, but these errors were encountered: