All Questions

Tagged with
Filter by
Sorted by
Tagged with
17 votes
4 answers
8k views

GStreamer or DirectShow for Windows development? [closed]

I'm implementing a lecture-capture project for a local university. Multiple video streams will arrive at one PC: the presenter's desktop slides, a video camera image of the presenter himself and ...
StackedCrooked's user avatar
8 votes
3 answers
29k views

gstreamer python bindings for windows

I am looking into gstreamer as a means to choose a video device from a list to feed it to an opencv script. I absolutely do not understand how to use gstreamer with python in windows. I installed the ...
Raoul's user avatar
  • 1,892
7 votes
1 answer
7k views

UdpSink in GStreamer is not working in Windows

I am new to GSTreamer. I tried to upsink a video using GStreamer. While running the folloing command, gst-launch-1.0 videotestsrc ! udpsink port=5200 I get warnings as follows. WARNING: from ...
Jogi Joseph George's user avatar
7 votes
3 answers
9k views

GStreamer Qt WINDOWS

There is lot's of information about configuring .pro file for Qt in linux to run GStreamer. But it looks so difficult to do the same in WINDOWS. I downloaded Gst from their official site and ran an ...
Vadim's user avatar
  • 85
6 votes
1 answer
8k views

xvimagesink not found by gst-inspect

I have installed GStreamer SDK (x64) and GStreamer SDK (Development Files) (x64) on a Windows 7 PC. This was a complete install - all features were enabled. When I run gst-inspect-0.10 xvimagesink ...
pnswdv's user avatar
  • 181
4 votes
2 answers
2k views

gstreamer webrtc h264 playback stops after few frames in browser

I need help for debugging a probabilistic issue. I built a gstreamer pipeline to stream NVENC encoded h264 bitstreams(video only) to browser. Browser seldom plays properly. In most cases only few ...
miqilin's user avatar
  • 43
3 votes
1 answer
6k views

Gstreamer : gst_element_factory_make() : always fail and return NULL : Qt5

My problem is, I cannot create Gstreamer element. I am creating Gstreamer project using Qt 5.2.1 What I am doing : gst_init( NULL, NULL ); GstElement *m_pipeline = gst_pipeline_new ("pipeline1"); ...
AB Bolim's user avatar
  • 2,035
3 votes
1 answer
15k views

Using Gstreamer in Windows

I usually use Gstreamer in Linux and there I install it simply using the command yum install gstreamer... and then I can play an RTP stream by the command gst-launch-0.01 playbin2 ... Now I need to ...
user573014's user avatar
3 votes
2 answers
899 views

Error accessing GStreamer Library in Qt C++ - Program excited with code 0xc0000135 when Debugging

I want to use gstreamer library for video programming and I read that Qt5.5.0 provided support for gstreamer-1.0, which is the library I use. I downloaded firstly version 1.0.7, but I got the ...
Dionis's user avatar
  • 73
3 votes
0 answers
900 views

Capturing a certain window using Gstreamer in Windows 10

In Ubuntu 18.04, I'm able to capture a certain X-Window using ximagesrc element of GStreamer (v1.16) simply by setting the xid or xnameof that window. I want to have the same screen capture ...
chronosynclastic's user avatar
3 votes
0 answers
2k views

Gstreamer- MJPEG- RTSP streaming from Raspberry pi to windows

I want to create a pipeline to stream a rtsp stream from my raspberry pi to Windows. I have created the following pipeline, but facing some errors when i try to get it on window side. My pipeline is ...
Shubham Saini's user avatar
3 votes
1 answer
3k views

Feeding gstreamer fdsrc via STDIN only produces fraction of expected result

I am using gstreamer windows port OSSBuild. I want to feed gst-launch with video data via its STDIN using the fdsrc element. Doing so it seems as if the pipline is consuming just a small fraction of ...
lakai's user avatar
  • 31
2 votes
2 answers
11k views

How to install GStreamer plugin having "MPEG-2 Transport Stream demuxer" element on windows

I have installed GStreamer on windows using .msi files from the following link - gstreamer-1.0-x86-1.2.0.msi and gstreamer-1.0-devel-x86-1.2.0.msi I can run the following command and play .webm video ...
Yashil's user avatar
  • 170
2 votes
4 answers
2k views

Windows Gstreamer ALSA Alternative?

Does anyone know an alternative to ALSA that can be used on windows, with gstreamer, and how to install it, and where to find python bindings for it if it needs it? thanks xxx
jma's user avatar
  • 808
2 votes
2 answers
3k views

Gstreamer unable to play audio through rtspsrc

I am having trouble to play the audio from the rtsp server, i have no problem for the video playback, but some error occurred while i tried to play audio, the following is the command used to play ...
Alan Lee's user avatar
2 votes
1 answer
4k views

GStreamer missing plugins on Windows

I have installed the latest version of gstreamer (v1.16.2) on a Windows 10 with a full installation and testing simple examples I have checked that several common elements are missing. With a command ...
superarce's user avatar
  • 403
2 votes
1 answer
4k views

Compiling a gstreamer app using cmake on Windows

I am trying to use the gstreamer library under windows, using cmake. Here is my simple test code: #include <gst/gst.h> int main (void) { gst_init (NULL, NULL); return 0; } I got the ...
Cyrus4ever's user avatar
2 votes
2 answers
8k views

Sending UDP stream Gstreamer

How do you send a udp video stream to a port using gstreamer on windows? I would like to send the testvideo to a specific port but nothing is being output when I check the network using wireshark. ...
unmanned15's user avatar
2 votes
1 answer
1k views

Writing GStreamer plugins using Visual Studio 2010

I’m trying to write a Gstreamer plugin in Visual Studio 2010. First, I've downloaded GStreamer package for Windows from http://gstreamer.freedesktop.org/download/. Then, I’ve added required property ...
Alexey's user avatar
  • 5,938
2 votes
1 answer
5k views

GStreamer audio streaming on Windows

I'm experimenting a bit with GStreamer (ossbuild 0.10.7) on Windows, but I can't seem to make audio streaming between two computers work. All I hear at the receiver side is a short beep followed by ...
SVC's user avatar
  • 113
2 votes
1 answer
442 views

Why gst_deinit freeze application?

OS: Windows 10 Gstreamer: 1.16.2 Qt: 5.14.0 I have application in QT, which use gstreamer. Now I would like to many times init and deinit gstreamer using: gst_init(NULL, NULL) and gst_deinit(). When I ...
Tommmmmm's user avatar
  • 101
2 votes
1 answer
2k views

GStreamer opencv videowriter fails to create pipeline

I'm working with Opencv 4.4 and using GStreamer 1.18 running in Windows c++. I have added the gstreamer to the opencv compilation. I'm trying to run a program that displays in a browser what is ...
Uris's user avatar
  • 55
2 votes
0 answers
605 views

Gstreamer kivy dependencies not installing on windows 10

Whenever I use the command from the /docs section on the kivy website to install gstreamer, I receive: Could not find a version that satisfies the requirement kivy.deps.gstreamer (from versions: ) No ...
12edd's user avatar
  • 15
2 votes
0 answers
2k views

Gstreamer SDK on Windows

I am new to Gstreamer and I have some problems by installing the sdk. I followed what is wrote here: http://docs.gstreamer.com/display/GstSDK/Installing+on+Windows And this is what I done: I ...
Selvaline's user avatar
  • 188
2 votes
1 answer
2k views

How to read binary data from Gstreamer child process on Windows?

f = os.popen("gst-launch -q whateversrc ! ... ! fdsink") f.read(1024); Works just fine on GNU/Linux, but leads to \x0d\x0a instead of each \x0a of Windows. How to fix? I also tried just gst-launch -...
Vi.'s user avatar
  • 37.8k
1 vote
1 answer
2k views

Desktop GPU encoding using gstreamer in WINDOWS

I have developed the gstreamer GPU encoding on Nvidia Jetson Tx2. but now i am trying for Desktop Nvidia GPU encoding using gstreamer. I am not able get "omxh264enc" in the listed supported elements ...
Amir Raza's user avatar
1 vote
1 answer
3k views

Error : cannot find D:/gstreamer-sdk/0.10/x86/lib: Permission denied : Qt5

I am developing my Application in Qt 5.2.1. In .pro file: LIBS += "D:/gstreamer-sdk/0.10/x86/lib" While build the project got the Error: error: cannot find D://gstreamer-sdk//0.10//x86//lib: ...
AB Bolim's user avatar
  • 2,035
1 vote
2 answers
3k views

Needed environment for building gstreamer plugins in Windows

I've been strugling for two weeks to create an environment for building a gstreamer plugin on windows (needed for a songbird addon). I've installed MSYS, MinGW and Cygwin, then installed GStreamer ...
utnapistim's user avatar
  • 27.2k
1 vote
1 answer
105 views

Custom Gstreamer plugin cannot be registered on Windows

I am writing plugin for C++ that uses boost shared memory as source. I am using Visual Studio 2022 and Windows 11 as environment. I used gstplugin.c gstplugin.h files from official gstreamer ...
Coffiee's user avatar
  • 31
1 vote
1 answer
385 views

Segmentation fault using GstDiscoverer (GStreamer)

I am writing desktop app for windows on C++ using Qt for GUI and GStreamer for audio processing. In my app I need to monitor several internet aac audio streams if they are online, and listen to ...
locomotion's user avatar
  • 1,628
1 vote
1 answer
7k views

Gstreamer on windows

I'd like to build application using Gstreamer 1.0 and GTK+-3.0 on Windows 8 (64bit). I have sucessfully install and build GTK+-3.0, 32 bit version using Dev-C++ and Mingw 32-bit (there is no 64 bit ...
Petr's user avatar
  • 1,169
1 vote
1 answer
10k views

How to stream video from webcam using Gstreamer?

How to stream video(and if it possible audio too) from webcam using Gstreamer? I already tried to stream video from source, but I can't stream video from webcam on Windows. How I can do this? Client: ...
konstantin_doncov's user avatar
1 vote
1 answer
4k views

what is the correct input for gstreamer to get rtsp stream into opencv on windows 10

I am trying to get a realtime video input into opencv. My video input is coming from a ip camera on my localnetwork, that sends a rtsp video feed. What I want to make is a body tracker that uses the ...
BramSanden's user avatar
1 vote
1 answer
3k views

How to play .wav audio file with gstreamer on Windows?

The wavparse documentation provides this example to play a .wav audio file through the speakers on Linux with Alsa audio. gst-launch-1.0 filesrc location=sine.wav ! wavparse ! audioconvert ! alsasink ...
Woodrow Barlow's user avatar
1 vote
1 answer
4k views

Cannot compile gstreamer on Windows because it is missing glib-2.0

I'm trying to build a Rust program that implements gstreamer on Windows, but I can't figure out how to get the dependencies right. I keep getting this error: --- stderr `"pkg-config" "--...
Zachary Delano's user avatar
1 vote
2 answers
1k views

GStreamer linking error

I'm trying to build the source code of https://github.com/iiordanov/remote-desktop-clients/tree/master/eclipse_projects/Opaque. Now there's an error while building the gstreamer library: FAILURE: ...
ForJ9's user avatar
  • 745
1 vote
2 answers
3k views

Rtsp h264 missing plugin

I'm trying to receive a live H264 stream from a wireless camera using RTSP. The camera IP is 192.168.150.1 and it doesn't require authentication. Since I'm developing under windows, I installed ...
Danidan's user avatar
  • 61
1 vote
1 answer
2k views

What is the proper way to incorporate gstreamer into Qt (Windows)?

Since there is no real tutorial on the internet except for a very few similar questions that have had no answer, how do I incorporate gstreamer into Qt on Windows 7? I have installed gstreamer ...
user avatar
1 vote
0 answers
36 views

cloning / compiling with msys shell , some files appear "\#include "xyz.h"

I am cloning/compiling some gstreamer repos within msys64 shell , for example : git clone git://anongit.freedesktop.org/git/gstreamer/gst-plugins-base && cd gst-plugins-base && git ...
Mohammad Kanan's user avatar
1 vote
1 answer
2k views

How to use GStreamer to send and receive a RTSP feed on same computer in Windows

I am trying to send Opencv images over the network. I was suggested to use GStreamer for that purpose. I have installed GStreamer and now testing it on my Windows 10. I am able to display test video ...
A.k.'s user avatar
  • 302
1 vote
0 answers
479 views

Include gstreamer in qt .pro for windows

I'm trying to link a gstreamer, but constantly getting an undefined reference to a different functions gstreamer. GSTREAMER _1_0_ROOT_X86_64 exist in environment variable and path is correct ...
wardump's user avatar
  • 11
1 vote
0 answers
1k views

Gstreamer 1.13.91 + Node.js

I'm trying to setup node.js server with Gstream v1.13.91 but when I'm start javascript file I get the following error: D:\xampp\htdocs\testicek\camera>node main.js LiveCam parameters: { ...
Kvovadis's user avatar
1 vote
1 answer
919 views

gstreamer lower framerate after interruption of data stream

My setup looks like this: An ethernet camera connected to a wireless link node. The camera sends an H264 encoded stream (320*184 at 25 FPS) using UDP. Another wireless link node connected to a ...
Doojoo's user avatar
  • 45
1 vote
0 answers
710 views

gstreamer low latency audio capture- windows

I am trying to use gstreamer for low-latency streaming purpose under windows, and what I am facing now is the audio capturing latency. I tested audio capture latency by creating a loopback pipeline ...
yamens's user avatar
  • 79
1 vote
1 answer
4k views

How to make a rtsp server with gstreamer on Windows?

I am trying to create a RTSP server to stream the feed from my webcam but am encountering some issues. I already installed the lastest version of Gstreamer-devel for Windows 7 with all the plug-ins. ...
Clem's's user avatar
  • 41
1 vote
0 answers
1k views

RTSP GStreamer Server for windows

I want to create a basic GStreamer server for some test. Indeed I want to create a RTSP MediaPlayer which reads an IPCAM videostream in RTSP. So for my tests, I want to create a RTSP GStreamer server ...
Mr. Starck's user avatar
1 vote
0 answers
374 views

Windows console escapes sprop-parameter-sets

I'm using the Windows console to launch my GStreamer video pipeline. The video consists of an H264 encoded stream that is received via UDP. In order to mux and record the stream I must provide ...
Ferdinand Wörister's user avatar
1 vote
1 answer
3k views

Gstreamer error could not set property "caps" in element "udpsrc0" to "application/x-rtp ..."

Very very strange problem. A working pipe in my Linux boxes (fedora/ubuntu/bsd) does not work in Windows Xp/Vista (using Gstreamer for Windows). I have this following pipeline in Windows Vista also ...
user avatar
0 votes
3 answers
3k views

LNK2019 unresolved external symbol gStreamer tutorials Visual Studio 2015

After installing gStreamer SDK Installed from here I am now attempting to compile and run the tutorial files that come with it, using Visual studio 2015. Tutorial documentation here Given that these ...
workdamnit's user avatar
0 votes
2 answers
1k views

Is it possible to stream a windows (7 / vista / xp) webcams via Gstreamer

I very new to the world of gstreamer. I was wondering, if it's possible to stream windows webcam via gstreamer? The only package i have seen so far is for linux. v4l2 (video for linux). Is there also ...
DJ.'s user avatar
  • 2,081