mirror of
https://github.com/matthew1000/gstreamer-cheat-sheet.git
synced 2024-11-24 01:01:01 +00:00
Fix markdown
This commit is contained in:
parent
a7ddba0273
commit
883c610c16
2 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ A few Python examples are also included for when you need GStreamer to be dynami
|
||||||
* [Test streams](test_streams.md)
|
* [Test streams](test_streams.md)
|
||||||
* [Basics](basics.md)
|
* [Basics](basics.md)
|
||||||
* [RTMP](rtmp.md)
|
* [RTMP](rtmp.md)
|
||||||
* [Mixing video](mixing.md)
|
* [Mixing video & audio](mixing.md)
|
||||||
* [Images](images.md)
|
* [Images](images.md)
|
||||||
* [Capturing images](capturing_images.md)
|
* [Capturing images](capturing_images.md)
|
||||||
* [Sending/receiving video from shared memory](memory_transfer.md)
|
* [Sending/receiving video from shared memory](memory_transfer.md)
|
||||||
|
|
|
@ -89,7 +89,7 @@ gst-launch-1.0 \
|
||||||
tcpserversink host=127.0.0.1 port=7001 recover-policy=keyframe sync-method=latest-keyframe sync=false
|
tcpserversink host=127.0.0.1 port=7001 recover-policy=keyframe sync-method=latest-keyframe sync=false
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mixing audio
|
## Mixing audio
|
||||||
|
|
||||||
Use the `audiomixer` element to mix audio. It replaces the `adder` element, which struggles under some circumstances (according to the [GStreamer 1.14 release notes](https://gstreamer.freedesktop.org/releases/1.14/)).
|
Use the `audiomixer` element to mix audio. It replaces the `adder` element, which struggles under some circumstances (according to the [GStreamer 1.14 release notes](https://gstreamer.freedesktop.org/releases/1.14/)).
|
||||||
|
|
||||||
|
@ -99,4 +99,4 @@ Mix to audio streams:
|
||||||
gst-launch-1.0 audiotestsrc freq=100 ! audiomixer name=mix ! audioconvert ! alsasink audiotestsrc freq=500 ! mix.
|
gst-launch-1.0 audiotestsrc freq=100 ! audiomixer name=mix ! audioconvert ! alsasink audiotestsrc freq=500 ! mix.
|
||||||
```
|
```
|
||||||
|
|
||||||
[This Python example(python_examples/audio_dynamic_add.py)] shows a dynamic equivalent of this example - the second test source is only mixed when the user presses Enter.
|
[This Python example](python_examples/audio_dynamic_add.py) shows a dynamic equivalent of this example - the second test source is only mixed when the user presses Enter.
|
||||||
|
|
Loading…
Reference in a new issue