28 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-6
votes
1
answer
81
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
256
views
stats for srtsrc element is sending a message without any data
Need to get and print stat from srtsrc element from gstreamer 1.22 version. recent version uses this code
GstStructure *stats;
g_object_get(source, "stats", &stats, NULL);
gchar *...
0
votes
1
answer
632
views
Whats the best practice for running concurrent GStreamer pipeline within a Java Service?
I'm writting a Java service leverage Gstreamer Java Bindings to dynamically transform input media file.
Sample Code like this:
Gst.init(Version.BASELINE, "myPipeline");
pipeline = (Pipeline) ...
4
votes
2
answers
2k
views
how to play GStreamer media on Flutter
I want to know how can I get GStreamer to work on Flutter application to show a video on media player.
Any help and tips would be appriciated
2
votes
1
answer
960
views
Using Gstreamer for Android with JNA & gst1-java-core?
Before we start allow me to just say that I know that it is possible to integrate Gstreamer into Android natively using C code as done in the Android Tutorials themselves.
This question is not related ...
1
vote
1
answer
2k
views
Make GStreamer appsink Receive FPS same like streaming video or rtsp stream?
My pipeline grabs frame from mp4 and save to callbacks register using g_signal_connect
gst-launch-1.0 filesrc location=test.mp4 ! qtdemux ! h264parse ! v4l2h264dec ! capsfilter caps=video/x-raw,...
user avatar
user15151965
0
votes
0
answers
692
views
Gstreamer get image width and height
I have a simple gstreamer pipeline which looks like :
| Filesrc | --> | PngDec | --> | ImageFreeze | --> | Queue | --> | Compositor | --> | Fake Sink |
location (input) of the filesrc ...
0
votes
0
answers
697
views
GStreamer and Youtube Problem RTMPSink can not write to resource
I have problem with sending video to youtube using GStreamer.
My pipeline is:
"appsrc name=videoAppSrc ! rawvideoparse name=videoparser use-sink-caps=false format=8 ! videoconvert ! video/x-raw, ...
0
votes
1
answer
946
views
Upgrading GStreamer. Expected NDK STL shared object file
I have been trying to upgrade GStreamer to version 1.16 from 1.14 in my android application but have encountered some problems. Version 1.16 requires, according to gstreamer's website, Android NDK ...
0
votes
1
answer
929
views
error: undefined reference to 'libiconv_close' in Ndk Android Studio
Iam getting error on setting up my ndk for gstreamer library in android studio.
Below is the error which iam getting-:
cerbero.git/1.16/build/sources/android_universal/armv7/glib-2.56.1/_builddir/../...
1
vote
1
answer
966
views
Gstreamer filesink works on commandline but not Java code
I'm trying to stream audio from a Raspberry Pi to a VM.
The Raspberry Pi has a microphone plugged into it and its pipeline is like
so (IP/hostname info redacted):
gst-launch-1.0 -ev alsasrc ...
0
votes
1
answer
188
views
Java Gstreamer Gnonlin source segmentation
Using Java Gstreamer binding 1, I want to read an audio file from disk and write a segment of this file back to disk. For this, I cannot use the "filesrc" element, but instead I found that I can use ...
0
votes
1
answer
3k
views
OpenCV and Gstreamer streaming live video
My aim to get video stream from capture card (Blackmagic decklink) to OpenCV and live stream to red5 or any other rtmp server.
So, I tried done with two branch at gstreamer with command is at below ...
1
vote
1
answer
907
views
GStreamer Java Binding cleanup issue after playback from AppSrc
I'm trying to use GStreamer Java Binding on Raspberry Pi to play some dynamic audio data which is Opus encoded. I'm almost done. My final issue is I cannot have GStreamer clean up nicely when the data ...
0
votes
0
answers
545
views
GStreamer java application receives JNA access error
I am trying to build a simple Gstreamer java according to this tutorial and I found GStreamer cannot be used even if I have already linked both gstreamer library and jna library jar to my file.
The ...