4,967 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
26
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
101
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
30
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
78
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 "...
1
vote
0
answers
72
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
53
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
106
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 ...
mapf's user avatar
- 2,054
2
votes
0
answers
73
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
46
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
22
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-...
0
votes
1
answer
65
views
What to do if PostgreSQL and GStreamer dlls depend on different versions of libiconv-2.dll and libwinpthread-1.dll?
I'm updating the project, in which Qt, PostgreSQL and GStreamer are used. I need to update PostgreSQL to the latest version. PostgreSQL libpq.dll depends on several dlls and one of them is libintl-9....
2
votes
0
answers
74
views
Saving an image before a videocrop element and pairing it with the videocrop resulting image
I currently have this pipeline using Gstreamer 1.24.3 C API
uridecodebin -> videorate -> videoconvert -> queue -> tee (2 src)
tee_src1 -> queue -> videocrop -> videoscale -> ...
0
votes
0
answers
146
views
RTSP stream on Wpf using Gstreamer
I'm trying to capture a stream from an Axis encoder on a wpf application using Gstreamer SDK, The stream always tends to start in a new window but not the element I created in the WPF itself.
When I ...
0
votes
0
answers
54
views
GSTREAMER+CAIRO issue with two pipelines render issue
import time
import gi, glob
gi.require_version('Gst', '1.0')
from gi.repository import Gst, GLib
from app.factories import OverlayFactory
import os
os.environ['GST_DEBUG'] = '3'
class GstRunner:
...
1
vote
0
answers
43
views
GStreamer rtpbin DTMF pad linking fails with "caps are incompatible" in Kurento media server
I'm trying to handle DTMF (telephone-event) pads from GStreamer's rtpbin element in a Kurento media server application. Both direct linking and capsfilter approaches fail with "caps are ...