gstreamer-cheat-sheet/basics.md

137 lines
4.3 KiB
Markdown
Raw Normal View History

2018-02-20 12:23:23 +00:00
# Basics (GStreamer command-line cheat sheet)
## Playing content
2018-02-20 12:32:33 +00:00
For these,set `SRC` to be e.g. an mp4 file., e.g.
```
export SRC=/home/me/videos/test.mp4
```
2018-02-20 12:23:23 +00:00
### Play a video (with audio)
2018-02-23 08:07:52 +00:00
`playbin` is a magical element that can play anything:
2018-02-23 08:07:52 +00:00
```
gst-launch-1.0 playbin uri=file://$SRC
```
This works with video, audio, RTMP streams, and so much more.
The 'bin' in 'playbin' means that under-the-hood, it's a collection of elements. For example, we can achieve the same thing by going to the next level of elements, which separate the decoding part from the playing part:
2018-02-20 12:23:23 +00:00
```
2018-02-23 08:07:52 +00:00
gst-launch-1.0 filesrc location=$SRC ! decodebin ! playsink
2018-02-20 12:23:23 +00:00
```
2018-02-23 08:07:52 +00:00
Or, we can split down even further:
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 filesrc location=$SRC ! \
2018-02-23 08:07:52 +00:00
qtdemux name=demux demux.audio_0 ! queue ! decodebin ! audioconvert ! audioresample ! \
2018-02-20 12:32:33 +00:00
autoaudiosink \
demux.video_0 ! queue ! \
decodebin ! videoconvert ! videoscale ! autovideosink
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:26:20 +00:00
### Play a video (no audio)
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 -v uridecodebin uri="file://$SRC" ! autovideosink
2018-02-20 12:23:23 +00:00
```
which could also have been done as:
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 -v filesrc location="$SRC" ! decodebin ! autovideosink
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
### Play just the audio from a video
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 -v uridecodebin uri="file://$SRC" ! autoaudiosink
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
### Visualise the audio:
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 filesrc location=$SRC ! qtdemux name=demux demux.audio_0 ! queue ! decodebin ! audioconvert ! wavescope ! autovideosink
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
(or replace `wavescope` with `spectrascope` or `synaescope` or `spacescope`)
2018-02-20 12:23:23 +00:00
Or even better visualisation:
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 filesrc location=$SRC ! decodebin ! tee name=t ! queue ! audioconvert ! wavescope style=color-lines shade-amount=0x00080402 ! alpha alpha=0.5 ! videomixer name=m background=black ! videoconvert ! vertigotv ! autovideosink t. ! queue ! audioconvert ! spacescope style=color-lines shade-amount=0x00080402 ! alpha alpha=0.5 ! m. t. ! queue ! autoaudiosink
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
### Add filters
2018-02-20 12:23:23 +00:00
2018-02-20 12:32:33 +00:00
Go slightly mad:
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 -v filesrc location="$SRC" ! decodebin ! videoconvert ! vertigotv ! autovideosink
2018-02-20 12:23:23 +00:00
```
Try also rippletv, streaktv, radioactv, optv, quarktv, revtv, shagadelictv, warptv (I like), dicetv, agingtv (great), edgetv (could be great on real stuff)
2018-04-17 22:51:33 +00:00
### Add A clock
```
gst-launch-1.0 -v filesrc location="$SRC" ! decodebin ! clockoverlay font-desc="Sans, 48" ! videoconvert ! autovideosink
```
2018-02-20 12:26:20 +00:00
### Resize video
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 -v filesrc location="$SRC" ! decodebin ! videoconvert ! videoscale ! video/x-raw,width=100 ! autovideosink
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:26:20 +00:00
### Change framerate
2018-02-20 12:23:23 +00:00
2018-03-28 22:11:31 +00:00
Changing framerate is quiet common, as the world does not have a consistent standard. Facebook Live wants 30fps, YouTube wants 30 or 60fps. There's a nice summary on the [https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=D%26section=4%26tasks=true](Apple FCP site).
Change framerate:
2018-02-20 12:23:23 +00:00
```
2018-02-20 12:32:33 +00:00
gst-launch-1.0 -v filesrc location="$SRC" ! decodebin ! videoconvert ! videorate ! video/x-raw,framerate=5/1 ! autovideosink
2018-02-20 12:23:23 +00:00
```
And of course you can resize the video and change the framerate:
```
gst-launch-1.0 -v \
2018-02-20 12:32:33 +00:00
filesrc location="$SRC” ! \
2018-02-20 12:23:23 +00:00
decodebin ! videoconvert ! videoscale ! video/x-raw,width=100 ! videorate ! video/x-raw,framerate=5/1 ! \
autovideosink
```
2018-02-23 08:07:52 +00:00
2018-02-25 17:16:54 +00:00
Here's a more complete example, that keeps the audio, and changes the size and framerate:
```
gst-launch-1.0 filesrc location=$SRC ! \
qtdemux name=demux demux.audio_0 ! queue ! decodebin ! audioconvert ! audioresample ! \
autoaudiosink \
demux.video_0 ! queue ! \
decodebin ! videoconvert ! videoscale ! videorate ! \
'video/x-raw, format=(string)I420, width=(int)320, height=(int)240, framerate=(fraction)30/1' ! \
autovideosink
```
2018-03-26 10:08:07 +00:00
### Play an MP3 audio file
Set the environment variable `$AUDIO_SRC` to be the location of the MP3 file. Then:
```
# All three of these do the same thing:
gst-launch-1.0 playbin uri=file://$AUDIO_SRC
gst-launch-1.0 -v uridecodebin uri="file://$AUDIO_SRC" ! autoaudiosink
gst-launch-1.0 -v filesrc location=$AUDIO_SRC ! mpegaudioparse ! decodebin ! autoaudiosink
```
2018-03-20 08:18:38 +00:00
### Play files back to back
See (https://coaxion.net/blog/2014/08/concatenate-multiple-streams-gaplessly-with-gstreamer/)[https://coaxion.net/blog/2014/08/concatenate-multiple-streams-gaplessly-with-gstreamer/]