gstreamer-cheat-sheet/tee.md

58 lines
2.5 KiB
Markdown
Raw Permalink Normal View History

2018-04-03 21:51:32 +00:00
# Multiple outputs (tee)
This page describes the `tee` element, which allows audio & video streams to be sent to more than one place.
2018-04-03 21:51:32 +00:00
2022-07-20 20:31:01 +00:00
## Tee to two local video outputs
2018-04-17 22:51:33 +00:00
2018-04-03 21:51:32 +00:00
Here's a simple example that sends shows video test source twice (using `autovideosink`)
```
# The two windows may overlay on top of each other
gst-launch-1.0 \
videotestsrc ! tee name=t \
t. ! queue ! videoconvert ! autovideosink \
t. ! queue ! videoconvert ! autovideosink
```
2022-07-20 20:31:01 +00:00
## Tee to two different video outputs
2018-04-17 22:51:33 +00:00
2018-04-03 21:51:32 +00:00
Here's an example that sends video to both `autovideosink` and a TCP server (`tcpserversink`).
2018-04-17 22:51:33 +00:00
Note how `async=false` is required on both sinks, because the encoding step on the TCP branch takes longer, and so the timing will be different.
2018-04-03 21:51:32 +00:00
```
gst-launch-1.0 videotestsrc ! \
decodebin ! tee name=t \
t. ! queue ! videoconvert ! autovideosink async=false \
t. ! queue ! x264enc ! mpegtsmux ! tcpserversink port=7001 host=127.0.0.1 recover-policy=keyframe sync-method=latest-keyframe async=false
```
2018-04-17 22:51:33 +00:00
However, as discussed [here](http://gstreamer-devel.966125.n4.nabble.com/tee-won-t-go-in-playing-state-td4680128.html), `async=false` can cause issues. Adding `tune=zerolatency` to the `x264enc` also resolves the issue, by telling the encoding step not to add a delay, and thus making its branch as quick as the `autovideosink` one.
2018-04-03 21:51:32 +00:00
```
gst-launch-1.0 videotestsrc ! \
decodebin ! tee name=t \
t. ! queue ! videoconvert ! autovideosink \
t. ! queue ! x264enc tune=zerolatency ! mpegtsmux ! tcpserversink port=7001 host=127.0.0.1 recover-policy=keyframe sync-method=latest-keyframe
```
2018-04-17 22:51:33 +00:00
Or, if you'd rather not reduce the quality of x264 encoding, you can increase the queue size:
```
gst-launch-1.0 videotestsrc ! \
decodebin ! tee name=t \
t. ! queue max-size-time=3000000000 ! videoconvert ! autovideosink \
t. ! queue ! x264enc ! mpegtsmux ! tcpserversink port=7001 host=127.0.0.1 recover-policy=keyframe sync-method=latest-keyframe
```
2022-07-20 20:31:01 +00:00
## Tee on inputs
2018-04-17 22:51:33 +00:00
2018-04-03 21:51:32 +00:00
You can also use `tee` in order to do multiple things with inputs. This example combines two audio visualisations:
```
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
```