4,954 questions
0
votes
0
answers
37
views
GStreamer issue with rtsp stream
Distro: Slackware-15 64bit
GStreamer 1.18.5
I am trying to access an rtsp stream from a cheap FPV drone with GStreamer. I can access the stream with ffplay, and gst-discover accesses the stream and ...
0
votes
1
answer
41
views
clone metadata in deepstream pipeline in python
I am currently implementing a deepstream pipeline in python with a tee split as follows:
streammux -> tee -> queue1 -> detector1 -> tracker1
-> queue2 -> detector2 -> tracker2
The ...
Tooling
0
votes
0
replies
19
views
Gst wpe plugin from gst-plugins-bad seems to be missing?
I'm trying to the the wpe plugin for gstreamer on ubuntu 20.04 but it doesn't seem like it's in the gst-plugins-bad package anymore? I saw in the official gst documentation that wpe plugin is in bad ...
0
votes
0
answers
83
views
Read an RTSP python GStreamer stream from multiple clients
I am trying to connect my module with an RTSP stream using GStreamer. I am mainly using this example and I have modified it a bit to my needs.
# import necessary arguments
import gi
import cv2
import ...
1
vote
2
answers
140
views
WebRTC working on Chrome/Edge and Safari but does not works on Firefox or opera
I’m sending a WebRTC H264 stream from a GStreamer webrtcbin pipeline. It works in Chromium/Edge and Safari (video renders, frames/bytes received). In Firefox, the connection succeeds, and a video ...
0
votes
1
answer
60
views
gstreamer pipeline error dynamically adding pads
I am using a GStreamer pipeline to redirect a video stream to a file.
pipelineCamRec0 = gst_pipeline_new("pipeline");
sourceCam0Rec = gst_element_factory_make("rtspsrc", "...
0
votes
1
answer
144
views
Splitmuxsink creates files with wrong timestamp
I am trying to create a simple rolling recorder with gstreamer using splitmuxsink.
std::string getTime() {
std::time_t t = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
...
0
votes
0
answers
58
views
Configuring RTSPServer within GStreamer without affecting original stream
I'm wanting to setup a stream that performs ultra low latency calculations on a video stream, but also makes it available to rtsp clients. Ie:
Incoming stream -> Scale & Perform work (Ultra ...
-6
votes
1
answer
155
views
Why does GStreamer rtspclientsink fail intermittently with TCP when pushing to local RTSP server (only stable with GST_DEBUG=4)
Description
I’m developing a GStreamer-based RTSP client that pushes a local video stream to a MediaMTX RTSP server over TCP using rtspclientsink.
However, the pipeline fails intermittently with “...
0
votes
0
answers
110
views
Green video output when streaming to RTSPtoWeb using GStreamer
I’m trying to make a script in python that restream an RTSP feed that has been processed in OpenCV (where I overlay the current date and time on each frame).
After processing, I use GStreamer to ...
0
votes
0
answers
65
views
Gstreamer Qt6 Mutlimedia Video stops 3 secs before end
I am working with Qt 6.8 (QtWidgets) on an embedded Linux/Yocto device. I want to play a video in my application. It should be possible to play, pause, seek 5 sec forward, seek 5 sec backward and load ...
0
votes
0
answers
136
views
How to properly shut down an RTSP server using the C++ API?
I am trying to set up an RTSP server using the GStreamer API for C++. I would like to cleanly shut down and relaunch this streamer on command. I have finally managed to implement a pipeline that seems ...
2
votes
0
answers
94
views
Setting up customized value to GST_PLUGIN_PATH to GStreamer in Rust
I'm creating an ABR controller for streaming user's desktop using Rust and GStreamer.
The purpose of my abrcontroller.rs is to set up a GStreamer instance and handle bitrate changes. The sink I'm ...
0
votes
0
answers
51
views
Video Output Not Displaying in QVideoWidget with Playbin Element
I am encountering an issue where video playback does not correctly display within a QVideoWidget when using a playbin element in a GStreamer pipeline with Qt's QMediaPlayer. However, when I use a ...
0
votes
0
answers
24
views
LOCAL_MODULE_FILENAME must not contain a file extension (Implementing GStreamer in Andriod Studio Project)
I am trying to integrate GStreamer via JNI into an existing Android Studio project.
My Android.mk file looks like this:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := rtsp-...