• Hardware Platform (Jetson / GPU)
Jetson TX2
• DeepStream Version
6.0
• JetPack Version (valid for Jetson only)
4.6
• TensorRT Version
8.0
• Issue Type( questions, new requirements, bugs)
Error: gst-stream-error-quark: Internal data stream error. (1): gstbaseparse.c(3611): gst_base_parse_loop (): /GstPipeline:pipeline0/GstH264Parse:h264-parser:
streaming stopped, reason not-negotiated (-4)
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
Run the python3 deepstream-test1 sample out of the box as per the readme instructions. Altering no code or config files.
I found a user having a similar issue here: Python in DeepStream: error {Internal data stream error} while running deepstream-test1 - #9 by rohit167
The answers provided by support there failed to resolve the issue. One difference between that user and me is I am working directly on the TX2 with a monitor plugged into it, not using SSH. A similar issue also occurs when I try to run the C sample app deepstream-test1.:
Error details: gstbaseparse.c(3611): gst_base_parse_loop (): /GstPipeline:dstest1-pipeline/GstH264Parse:h264-parser:
streaming stopped, reason not-negotiated (-4)
Using python code provided from the forum post linked above yields the following error:
Traceback (most recent call last):
File "deepstream_test_1.py", line 315, in <module>
sys.exit(main(sys.argv))
File "deepstream_test_1.py", line 213, in main
encoder.set_property("bitrate", 2000000)
AttributeError: 'NoneType' object has no attribute 'set_property'
I am able to run other sample projects like the objectDetector_Yolo configuration with no issue. I am unsure why these sample apps in C and Python are different in my environment.
Thanks in advance.