gstreamer-cheat-sheet/test_streams.md

20 lines
374 B
Markdown
Raw Normal View History

2018-02-20 12:23:23 +00:00
# Test streams (GStreamer command-line cheat sheet)
Display a test pattern:
```
gst-launch-1.0 videotestsrc ! videoconvert ! autovideosink
```
Listen to a test audio (beep):
```
gst-launch-1.0 audiotestsrc ! audioconvert ! autoaudiosink
```
Combine both the test pattern and test audio:
```
gst-launch-1.0 audiotestsrc ! autoaudiosink videotestsrc ! autovideosink
```