Questions tagged [gstreamer-0.10]

Legacy version of GStreamer framework which is still in use because of lacking support of some drivers or older python bindings or just because the legacy code is written for it.

GStreamer-0.10 and GStreamer-1.0 are the main version 'series' currently in use. For all practical purposes you should think of them as two completely different libraries which just happen to have a similar name. They can be installed in parallel and are completely independent.

For the 0.10 version you will need the 0.10 plugins and bindings (gst-plugins 0.10.x, gst-ffmpeg 0.10.x, gst-python 0.10.x etc.), while for the 1.0 version you will need the 1.0 plugins and bindings (ie. gst-plugins-base 1.0.x, gst-plugins-good 1.0.x, gst-plugins-ugly 1.0.x, gst-plugins-bad 1.0.x, gst-ffmpeg 1.0.x, gst-python 1.0.x). The micro version for each main version does not have to match exactly, only the major versions needs to be the same (ie. it may be that the current gst-plugins-good version is 1.0.6 and the current GStreamer core version is 1.0.13). GStreamer-1.0 will not see or use any of the GStreamer-0.10 plugins and vice versa.

All GStreamer command line tools are suffixed with their main version, e.g. gst-launch-0.10 and gst-launch-1.0, or gst-inspect-0.10 and gst-inspect-1.0.

Applications will use either GStreamer-0.10 or GStreamer-1.0, since the 0.10 and 1.0 API/ABI are not compatible.

24 questions
0
votes
1 answer

Gstreamer Cannot Play Raw PCM Buffer

I was following the guide here How to play a PCM data array with GStreamer step by step (Florian Zwoch's solution). However, there is no sound output from gstreamer. I am using windows and installed gstreamer through msys2 along with various…
0
votes
1 answer

Push GstBuffer list to next downstream element

I have a GstBufferList *list inside the upstream element and wanted to pass the same to the downstream element for further processing. Is there any way in Gstreamer to pass this Gstbufferlist to the next element?
0
votes
1 answer

How to play two different videos in two different displays simultaneously using gstreamer?

I am using 1. Raspberry Pi 4 Model B which has 2 HDMI ports. 2. Gstreamer-1.0 I have two videos saved in memory card. I want to drive two videos to two different HDMI port and play videos in two different Displays simultaneously. I would like to…
0
votes
2 answers

gst-launch-0.10 no syncronized audio with alsa and hdmi

I'm working on a imx 6DualLite. I can't add or edit system libraries. I have to play an audio file from hdmi and speakers. This is the pipeline I am using: gst-launch-0.10 filesrc location=/home/root/beep.wav ! wavparse ! audioconvert !…
Tinne
  • 11
  • 3
0
votes
1 answer

pocketsphinx voice recognition - install gconf

I am using a ubuntu 14.04 and just recently installed the pocketsphinx package. When I try to run the sample robocup.launch file, I get an error saying gconfaudiosrc is no element. Hence when i try sudo apt-get install gstreamer0.10-gconf, I get the…
nithu
  • 29
  • 3
0
votes
0 answers

Weird video artifacts when streaming from ffmpeg to gstreamer

I'm seeing weird video artifacts when trying to stream from ffmpeg to gstreamer 0.10. Sending command: ffmpeg -re -i test.mp4 -an -pix_fmt yuv420p -crf 0 -b 1000k -f mpegts udp://10.33.1.2:9968 Receiving command: gst-launch-0.10 udpsrc port=0068…
Toast
  • 596
  • 2
  • 19
  • 39
0
votes
1 answer

video streaming on imx6 board using gstreamer and RTSP server

I am working on yocto project imx6 board and having problem with video streaming, gstreamer and RTSP server is successfully installed on board. after this command "gst-launch -v \rtspsrc latency=300 location=rtsp://10.55.165. 128:9001/1.mp4 name=s…
Amruta
  • 11
  • 4
0
votes
0 answers

converting gstreamer0.10 pipeline to gstreamer1.0

Hello I need to convert a gstreamer0.10 pipeline to a gstreamer1.0 pipeline but don't know much about gstreamer in general. My 0.10 pipeline is looking like this: gst-launch-0.10 v4l2src num-buffers=2 device=/dev/video0 ! video/x-raw-yuv,…
Kingalione
  • 4,237
  • 6
  • 49
  • 84
0
votes
1 answer

Visual Studio 2013 - Qt5 - Gstreamer: "libgstreamer-0.10-0.dll is missing from you computer" even though I correctly installed Gstreamer

A similiar question was already asked on stackoverflow, yet nobody answered, so I'm asking again. I followed all steps in http://docs.gstreamer.com/display/GstSDK/Installing+on+Windows Therefore, I believe that I correctly installed Gstreamer SDK +…
user4458707
1
2