Fix markdown

This commit is contained in:
Matthew Clark 2018-03-25 23:45:02 +01:00
parent a7ddba0273
commit 883c610c16
2 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@ A few Python examples are also included for when you need GStreamer to be dynami
* [Test streams](test_streams.md)
* [Basics](basics.md)
* [RTMP](rtmp.md)
* [Mixing video](mixing.md)
* [Mixing video & audio](mixing.md)
* [Images](images.md)
* [Capturing images](capturing_images.md)
* [Sending/receiving video from shared memory](memory_transfer.md)

View file

@ -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
```
## 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/)).
@ -99,4 +99,4 @@ Mix to audio streams:
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.