GStreamer-Python icon indicating copy to clipboard operation
GStreamer-Python copied to clipboard

Fetch RTSP Stream using GStreamer in Python and get image in Numpy

Results 5 GStreamer-Python issues
Sort by recently updated
recently updated
newest added

Hello, I have 11 child-processes and 1 parent-process. Child-processes are exist for streaming each eleven cameras and the parent-process makes and runs child-processes. Some processes in 11 processes were killed...

Works: ``` gst-launch-1.0 rtspsrc location=rtsp://192.168.188.31:6554/trackID=0 ! rtph264depay ! h264parse ! avdec_h264 ! videoconvert autovideosink sync=false ``` Does not work: ``` Neils-MBP:GStreamer-Python neilyoung$ python3 main_prg.py Unexpected message received. Pipeline state changed...

For 1920x1080 resolution. The CPU is around 2 i7 cores. May the pipeline configured with TCP/UDP connection will yield more efficiency.

Probably too much libraries inside Dockerfile, haven't tested.

Hi, I'm using your code and it works with very low latency as with its basic configuration. I see you already put latency=0 in the code... I like it! I've...