Tagged Questions

gstreamer is a versatile open-source multimedia framework.

learn more… | top users | synonyms

10
votes
3answers
1k views

How do I find the length of media with gstreamer?

How do I find the playback time of media with gstreamer?
8
votes
4answers
809 views

What are some good resources for getting started with gstreamer?

I'd like to learn the gstreamer media framework. Where should I start?
7
votes
4answers
2k views

GStreamer or DirectShow for Windows development?

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 ...
6
votes
4answers
160 views

How can a small change in a code which is never executed make a difference?

I have a very strange problem and since it is not possible for me to send code I will try to explain. This is more like philosophical problem - I hope someone has time/knowledge to think about this. ...
6
votes
1answer
87 views

Display image without gtk

I would like to display an image in Python using gstreamer bindings, but without using GTK+ (I'm on ARM). I know how to listen to music with python and gstreamer : #!/usr/bin/python # Simply ...
6
votes
1answer
107 views

Haskell GStreamer tee element(1-N) trouble

The problem i have relates to the following piece of code: module Main(main) where import qualified Media.Streaming.GStreamer as GS import Data.Maybe import System.IO import System.Exit import ...
6
votes
1answer
140 views

Creating Segments in Video

I'm using Python 2.7, PyGTK 2.24, and PyGST (Gstreamer). To ensure smooth playback from one clip to another (without a blink), I combined all the clips I needed into one larger video. This lets me ...
6
votes
2answers
806 views

How do you play or record audio (to .WAV) on Linux in C++?

Hello, I've been looking for a way to play and record audio on a Linux (preferably Ubuntu) system. I'm currently working on a front-end to a voice recognition toolkit that'll automate a few steps ...
5
votes
1answer
140 views

How to program videomixer using Gstreamer C API

I am trying to simulate the following gstreamer pipeline using the C API: gst-launch -e videomixer name=mix ! ffmpegcolorspace ! xvimagesink \ videotestsrc pattern=1 ! ...
5
votes
1answer
153 views

How can i get the application code created by gst-launch or gstreamer pipeline editor?

see if i have made one application like below by gst-launch commnad gst-launch -v filesrc location=ed_hd.mkv ! matroskademux ! vorbisdec ! audioconvert ! audioresample ! autoaudiosink when ever i ...
5
votes
2answers
93 views

use maemo camera by python

I wrote a simple program for Maemo by Python to check some pixels color every time that my function is called. But this program is working so slow (3-5 seconds each call). Is there any faster way for ...
5
votes
2answers
3k views

How to display avi video with gstreamer?

I want to write an object tracking program which needs to play the tracked result. As gstreamer is a good multimedia frame work, I want to use it in my demo program. But I don't know how to implement ...
5
votes
5answers
465 views

Supporting GPL based plugins

I'm working on a C++ gStreamer 'like' engine that, at some point in the future, I'd like to make some money out of (wouldn't we all!). After many hours reading up on the GPL licence, I still can't ...
4
votes
8answers
222 views

what is the advantage of using goto in this code?

static gboolean gst_fd_src_start (GstBaseSrc * bsrc) { GstFdSrc *src = GST_FD_SRC (bsrc); src->curoffset = 0; if ((src->fdset = gst_poll_new (TRUE)) == NULL) goto socket_pair; ...
4
votes
1answer
446 views

H.264 decoding using gstreamer and ffmpeg

I have a voip application I am working on using the OPAL voip SIP stack. I am overriding a class called OpalLocalEndpoint and reading/writing encoded data to and from my gstreamer pipelines. For ...
4
votes
1answer
330 views

Detecting blowing on a microphone with GStreamer (or another library)

Can I detect blowing on a microphone with GStreamer (or another Linux-compatible sound library)? I can get some informations about the sound doing that: import gtk, gst def playerbinMessage(bus, ...
4
votes
3answers
960 views

Pushing images into a gstreamer pipeline

After playing around with some toy applications, exploring the documentation and googling around (including the mailing list archives) I am still puzzled for what I would think is a rather common use ...
4
votes
1answer
570 views

Add some OpenCV processing to a gstreamer video stream

I'm trying to have OpenCV process a frame in the middle of a gstreamer pipe. I have one gstreamer pipe generating the stream, sending it to appsink for OpenCV code to receive: v4l2src ! ...
4
votes
3answers
629 views

HTML5 live video “hack”

For the last two month I have been trying to "fool" safari into thinking that it's looking at a file on the server, which in fact is a live video stream from a camera encoded and muxed upon request ...
4
votes
1answer
486 views

Turn a video into a sequence of images using GStreamer (not ffmpeg)

I have an ogg vorbis video. It plays fine in totem and mplayer. I want to covert it to a sequnces of images, one image per frame. I can do this on ffmpeg with the following command: ffmpeg -i ...
4
votes
4answers
2k views

Python + QT + Gstreamer

I'm working with PyQt and trying to get video from a webcam to play within a QT widget. I've found tutorials for C and Qt, and for python and gtk, but NOTHING for this combo of pyQt and gstreamer. ...
4
votes
1answer
709 views

GStreamer plugin search path?

Can I somehow tell GStreamer to look for plugins in a specified directory?
3
votes
2answers
167 views

Play audio and video with a Pipeline in Gstreamer (Python)

Is there a way make a pipeline that will play any video file (which will contain audio too)? I have tried linking elements like: filesrc -> decodebin along with queue -> audioconvert -> ...
3
votes
1answer
111 views

Gstreamer+python: adding and removing audio sources while pipeline is running

I'm working on a sample python script, originally found here: Adding and removing audio sources to/from GStreamer pipeline on-the-go. The aim is to make a script such as the one above, able to insert ...
3
votes
0answers
289 views

Create MJPEG stream using GStreamer

I'm trying to mimic IP camera that use MJPEG. At this moment to receive the stream in command line I'm using: gst-launch -v souphttpsrc location=http://IP:PORT/video.mjpg is-live=true user-id=USER ...
3
votes
1answer
113 views

Bizarre Intermittent Error on Video (GStreamer)

I have a project that runs Python 2.7, PyGTK 2.24, and the most recent version of PyGST. I am getting a weird intermittent error in the following code. With the first, longer error, the video will ...
3
votes
1answer
97 views

What is the best way to manage multiplatform video stream usign Python?

I have this question in my head for over a year now. And I guess you guys may have the answer. In some Python GUI app, I need to display a video stream. I need to record some part of this stream to ...
3
votes
1answer
222 views

How To : Create Video chat using gst and python and show initiators and accepter's video, in single gtk window

I am developing video chat using gst and python. where, I would like to view end user's webcam and also want to view my own webcam in one gtk window (similar to empathy video chat). for that, I have ...
3
votes
3answers
337 views

Gstreamer - Convert command line gst-launch to C code

I have been making a few experiments with GStreamer by using the gst-launch utility. However, ultimately, the aim is to implement this same functionality on my own application using GStreamer ...
3
votes
0answers
171 views

Transitions with GStreamer Editing Services freezes, but works OK without transitions

I'm trying to use gstreamer's GStreamer Editing Services to concatinate 2 videos, and to have a transition between the two. This command, which just joins 2 segments of the videos together without a ...
3
votes
1answer
171 views

Overlaying widgets on gstreamer video in qt

I have connected gstreamer to the QWidget using gst_x_overlay_set_xwindow_id(),and getting the video on the QWidget.How can we overlay another widget(e.g. pushbutton,combobox) on top of this video ...
3
votes
0answers
388 views

Videomixer fails on sources rather than Videotestsrc

I want to play two different local video files at the same time in a single window. The code below without demux and decoder works fine. static void play_video(){ GMainLoop *loop; ...
3
votes
1answer
146 views

Combining GStreamer, AnyEvent and EV (perl)

I'm trying to use GStreamer within an existing perl application that uses AnyEvent with the EV event loop. It is not a Glib application. I have loaded EV::Glib to get the Glib main loop to use EV. I ...
3
votes
1answer
302 views

Video Output In Tkinter From GStreamer?

does anyone know how i would go about using a tkinter window as an output from a videosink/pipeline from within python? i have found methods for lots of other GUI systems, but i dont want to have to ...
3
votes
2answers
1k views

Convert video to WebM using GStreamer

Documentation for GStreamer is confusing. This is still no excuse for resorting to StackOverflow.com, but still: What is the GStreamer command line to convert any video file (from any format) to WebM ...
3
votes
3answers
785 views

Images Slideshow in Gstreamer

I want to make a GStreamer application which takes a xml file process its content which provides information like image url, its weight and the duration for which it is going to be displayed on the ...
3
votes
1answer
386 views

Why does python gstreamer crash without “gobject.threads_init()” at the top of my script?

I have written a python script to use gstreamer (pygst and gst modules) to calculate replaygain tags, and it was crashing inconsistently with various gobject errors. I found somewhere that you could ...
3
votes
1answer
759 views

ImportError: [libraryname].so: undefined symbol: [function name]

I'm extending my Python program with a C module that uses the GstPhotography interface for GStreamer. My C module compiles fine, but when I try running it from Python, I get this error: $python ...
3
votes
2answers
540 views

Why does this gstreamer pipeline stall?

This works: gst-launch-0.10 \ videotestsrc ! ffmpegcolorspace ! 'video/x-raw-yuv' ! mux. \ audiotestsrc ! audioconvert ! 'audio/x-raw-int,rate=44100,channels=1' ! mux. \ avimux name=mux ! filesink ...
3
votes
1answer
739 views

How to generate an audio stream using gst-python?

I'm looking to generate a stream in gstreamer, and I'd prefer to do it from python if possible. This points towards using gst-python, but I don't see a clear way to do it. It looks like creating a new ...
3
votes
3answers
7k views

How to implement a video widget in Qt that builds upon GStreamer?

I want to use Qt to create a simple GUI application that can play a local video file. I could use Phonon which does all the work behind the scenes, but I need to have a little more control. I have ...
3
votes
2answers
5k views

Play RTP video stream using Qt?

I want to create a Qt widget that can play incoming RTP streams where the video is encoded as H264 and contains no audio. My basic plan for implementation is this: Create a Phonon MediaSource ...
3
votes
3answers
2k views

CMake linking problem

I am trying to use CMake to compile a C++ application that uses the C library GStreamer. My main.cpp file looks like this: extern "C" { #include <gst/gst.h> #include <glib.h> } int ...
3
votes
4answers
1k views

Combine multiple videos into one

I have three videos: a lecture that was filmed with a video camera a video of the desktop capture of the computer used in the lecture and the video of the whiteboard I want to create a final video ...
3
votes
2answers
2k views

How can I record live video with gstreamer without dropping frames?

I'm trying to use gstreamer 0.10 from Python to simultaneously display a v4l2 video source and record it to xvid-in-avi. Over a long period of time the computer would be fast enough to do this but if ...
2
votes
1answer
14 views

gstreamer find out decoding bit rate

The function query_position(gst.FORMAT_BYTES, None)[0] returns me the no. of bytes in the pipeline after gstreamer has decoded the video/audio. I want to know the no. of bytes of the source file that ...
2
votes
1answer
94 views

gstreamer and mp4 or avi output with audio

I have the syntax below that will show the video of my webcam on the screen and encode the video to an ogv file. What I would like to do is show the video on the screen but change it from an ogv file ...
2
votes
1answer
116 views

gstreamer code for playing avi file is hanging

I am new to gstremaer. I have written a code for playing avi file using gstreamer. But on executing the code it just hangs after a while, I am unable to debug whats the problem, Can ...
2
votes
3answers
183 views

How to use GStreamer in Visual Studio 2010?

Do I have to compile GStreamer on my own? Can I do it using Visual Studio 2010? I'm struggling to find a good step-by-step guide with instructions on how to do this. Is there a good one? My ...
2
votes
2answers
146 views

GStreamer force decodebin2 output type

I'm trying to write a program in C which replicates the pipeline: gst-launch -v filesrc location="bbb.mp4" ! decodebin2 ! ffmpegcolorspace ! autovideosink DecodeBin2 has a dynamic pad and I've ...

1 2 3 4 5 7