Questions tagged [playbin2]
20 questions
4
votes
1 answer
How to get Pipeline created by playbin in textual format in Gstreamer?
I'm playing a transport stream file (*.ts) using the following pipeline:
gst-launch-0.10 playbin2 uri=file:///c:/bbb.ts
But I need to convert that into a pipeline myself. I'm not sure how to achieve this.
So far I have tried: (works…

rubndsouza
- 1,224
- 15
- 23
3
votes
0 answers
Gstreamer Playbin could not determine type of stream
I am currently trying to create an audio application in linux using gstreamer 1.0. THe main issue I'm having is that running
gst-launch-1.0 playbin uri="file:///home/root/Documents/MP3/songs/test.mp3"
results in an error,
ERROR: from element…

oneb1got
- 153
- 1
- 4
- 8
3
votes
2 answers
GStreamer iOS, unable to build pipeline: no element "playbin2"
I'm currently trying to integrate GStreamer on iOS project.
I've downloaded gstreamer-1.0-devel-1.2.1-ios-universal.pkg and add GStreamer.framework into the project. I followed tutorials iOS on…

machackx
- 167
- 1
- 9
2
votes
0 answers
How to create transparent image overlay with GStreamer?
I try to overlay a cross-hair with transparent background on top a playbin video, but could not get the video to display. I found a few similar questions but the answers do not work (probably something has changed since they were posted. I tried…

Chu Bun
- 513
- 1
- 5
- 17
2
votes
3 answers
How to play two videos at the same time with gstreamer?
I want to play two videos at the same time with gstreamer.But I have no idea with it.I use playbin2 as the pipeline,xvimagesink as the sink element.Now I want this pipeline to play two videos.Any solutions?

lidedongsn
- 125
- 2
- 12
2
votes
0 answers
Changing current-video while playing in Playbin2 makes the video stop
I have a playbin2 pipeline playing a video file with multiple tracks. I can change the currently playing track by setting the current-video property:
current-video : Currently playing video stream (-1 = auto)
flags:…

Brendan Long
- 53,280
- 21
- 146
- 188
1
vote
1 answer
Linking Gstrplaybin to custom video sink videoconvert and sink not linking gstreamer
Trying to make gstreamer application from the pipeline: gst-launch-1.0 playbin uri=rtsp:// video-sink="videoconvert ! video/x-raw,width=720, height=480 ! ximagesink"
Getting error to link elements. Posting my code:
#include
int main(int…

RajviK
- 41
- 1
- 9
1
vote
0 answers
How to further investigate linking problems in gstreamer?
First of all, you should know this question is titled that way because that's were I ended up stuck after narrowing down my problem for quite a while. Since there probably are better approaches to my problem I'm also explaining below my problem and…

Guilherme Santos
- 328
- 4
- 11
1
vote
0 answers
GStreamer Basic Tutorial 1 Visual Studio 2010 C++
Hi I am having some issues with gstreamer-0.10 on Windows 7 64bit (using 32 bit gstreamer).
Please see code below for tutorial 1 (modified for VS2010):
#include
int main(int argc, char *argv[]) {
GstElement *pipeline;
GstBus *bus;
…

Adam Jocepos
- 11
- 3
1
vote
1 answer
What is the sequence to be followed to play a song using gstreramer?
I am building a music player based on gstreamer-0.10. I am able to play the successfully , but I have issues when I change the state of the pipeline. I have posted the code to initialize and start the pipeline below :
void start_gstreamer()
{
…

Harish Wali
- 51
- 4
1
vote
0 answers
Gstreamer smb link for playbin2 uri
I am trying to play a video file located in windows pc using gstreamer playbin2 on android.
My uri is as follows
"smb://xxxxx-pc/share/1.mp4"
The error says : Error code from element uridecodebin0: No URI handler implemented for smb.
Is it that smb…

user2622949
- 23
- 1
- 5
1
vote
1 answer
Does gstreamer element with incrementing suffix index mean a possible memory leak?
I wrote a simple code based on gstreamer-1.0 to decode a certain file for loop using playbin, and each time the playbin created the element mpeg2dec element, the element has a new name. The name at the very first time could be "mepg2dec0", and then…

user1547688
- 121
- 1
- 8
0
votes
1 answer
GStreamer Playbin video speed is too fast
I am trying to create virtual web camera using GStreamer and v4l2loopback. The problem is that I want to use Playbin but the video speed is too fast when I use it. For instance, it happens when I execute the following command:
gst-launch-1.0 -v…

Danylo Zatorsky
- 5,856
- 2
- 25
- 49
0
votes
0 answers
How to set the video format in playbin
I'm quite new to gstreamer. I'm trying to play a mpg video file with the gstreamer1.0 playbin element.
When I use the following pipeline everything works fine and the video is shown:
gst-launch-1.0 -vm --gst-debug=3 filesrc…

facze
- 1
- 2
0
votes
1 answer
Python: How can I get the video resolution from a Gst video playbin?
I have the following code that works and displays a video in a window. Can someone help me and give a simple python example on how I can extract the video resolution ( width x height ) of the video file ?
I am stuck on this since several days ...…

A. Pace
- 45
- 1
- 8