Questions tagged [gst-launch]

Questions related to gst-launch command line tool, used to build and run a GStreamer pipeline.

gst-launch is a command line tool that builds and runs basic GStreamer pipelines. gst-launch is primarily a debugging tool for developers and users.

110 questions
0
votes
1 answer

GStreamer preview RTMP using xvimage

I want to preview RTMP using gstreamer xvimagesink. i can see the output if i use autovideosink like this: gst-launch-1.0 -v rtmpsrc location='rtmp://127.0.0.1:1935/live/stream' ! decodebin3 ! autovideosink but if i replace "autovideosink" with…
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

gst-launch 1.0 window resize

Here I have udp stream sender by gst-launch 1.0: gst-launch-1.0 -v filesrc location="./venom-trailer-3_h720p.mov" ! qtdemux ! rtph264pay pt=96 config-interval=-1 ! udpsink host=face=eth0 -e3 port=5001 multicast-if and here is my receiver…
Macko.lysy
  • 53
  • 1
  • 9
0
votes
2 answers

Gstreamer save camera video input to file returns empty file

I'm trying to save the video input (it can also be frame by frame) from a camera, whose input I can display like this: gst-launch-1.0 udpsrc port=50004 ! application/x-rtp,encoding=JPEG,payload=26 ! rtpjpegdepay ! decodebin ! videoconvert !…
BourbonCreams
  • 353
  • 4
  • 21
0
votes
1 answer

GStreamer's autovideosink missing for command line tools - Debian 9.4

The problem is only present when using GStreamer command line tools. C programs that contain "autovideosink" compile and run as expected. gst-inspect-1.0 autovideosink returns No such element or plugin 'autovideosink' and gst-launch-1.0…
M. P.
  • 91
  • 2
  • 10
0
votes
0 answers

Frame resolution settings in gstreamer pipeline

I am streaming my laptop screen on my IP based display using gstreamer. Here is the pipeline on both ends: Laptop: C:\gstreamer\1.0\x86_64\bin\gst-launch-1.0.exe -v dx9screencapsrc ! queue ! videoconvert ! x264enc ! "video/x-h264,profile=baseline" !…
md.jamal
  • 4,067
  • 8
  • 45
  • 108
0
votes
0 answers

Unable to playback ac3 encoded audio stream using gstreamer

Here am trying to playback an ac3 stream using gst-launch-1.0 application. But am getting the following error, ERROR: from element /GstPlayBin:playbin0/GstURIDecodeBin:uridecodebin0 /GstDecodeBin:decodebin0/GstTypeFindElement:typefind: Could not…
Vysakh A V
  • 111
  • 1
  • 11
0
votes
1 answer

Streaming windows desktop using gstreamer

I have an customized i.MX6 Board which has a LCD Display connected to it. We have been streaming videos over IP using gstreamer udpsrc/udpsink pipelines.. Pipeline at PC: C:\gstreamer\1.0\x86_64\bin\gst-launch-1.0.exe -v filesrc…
md.jamal
  • 4,067
  • 8
  • 45
  • 108
0
votes
1 answer

How to stream MIC input by RTSP with gstreamer

I would like to stream mic input from RTSP server. I use gstreamer1.0 and gstreamer1.0-rtsp-server (v1.12.3). I tried the following commands, but RTSP server created by the pipeline is not responsed. How can I stream it? Tx: GST_DEBUG=3 test-launch…
user8257918
  • 55
  • 3
  • 13
0
votes
1 answer

gstreamer rtsp client connection refused error

I have installed Gstreamer on my i.MX6 board. I want to stream the camera connected using RTSP. The following command displays the camera content on the LVDS screen: gst-launch tvsrc ! Imxv4vl2sink Instead of displaying it on the screen, I want to…
md.jamal
  • 4,067
  • 8
  • 45
  • 108
0
votes
2 answers

Gstreamer gst-launch udpsrc in ubuntu 16.04 doesn't work

I'm trying to save multicast h264 ts to file using this command in gstreamer in ubuntu 16.04: "gst-launch-1.0 udpsrc multicast-iface=eno1 uri=udp://224.1.1.1:3001 ! queue ! filesink location=test.mp4" This command works in gstreamer on windows but…
Hadar
  • 1
  • 2
0
votes
1 answer

Multicast streaming of music file (wav, mp3, ...etc) with GStreamer: can receive but the data is Intermittent

I want to implement multicast streaming in embedded-linux (Yocto) system. I thought that Gstreamer is easy to implement it, but the received data is choppy and like as if it passes low-pass filter when the filesrc is mp3. When the filesrc is wav,…
user8257918
  • 55
  • 3
  • 13
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

gst-launch-1.0 can't stream audio/video through UDP and display it on a window simultaneously

I am successfully streaming a file (audio/video) through UDP on Windows and watching it on another machine with VLC (this was covered on Stackoverflow before): gst-launch-1.0 -v filesrc location=video.mkv ! decodebin name=dec ! videoconvert !…
karlphillip
  • 92,053
  • 36
  • 243
  • 426
0
votes
1 answer

gstreamer pipeline to playback mp4 file on windows

video file is working perfectly with below pipeline. .\gst-launch-1.0.exe playbin uri=file:///C:\\Users\\naseeb\\Downloads\\Gabbroo.mp4 But, i want to create pipeline myself using demux, decoder and sink. I created below…
user2053794