diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2015-02-10 16:00:07 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-02-10 16:00:07 +0000 |
commit | 90badeebadc6abaaa1a16d1f2b6686cbdd5eb322 (patch) | |
tree | 9aaaed96356a0f2a31531ff7fcf2bba84e3023b1 | |
parent | 102ae8511ac99805efb313abecb59c0c6e895fdc (diff) |
splitmuxsink: fix example pipeline properly
x264enc might not have a max-key-int property, but it
has a key-int-max property...
-rw-r--r-- | gst/multifile/gstsplitmuxsink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/multifile/gstsplitmuxsink.c b/gst/multifile/gstsplitmuxsink.c index ff706a5db..3e0932cd4 100644 --- a/gst/multifile/gstsplitmuxsink.c +++ b/gst/multifile/gstsplitmuxsink.c @@ -40,7 +40,7 @@ * <refsect2> * <title>Example pipelines</title> * |[ - * gst-launch-1.0 -e v4l2src num-buffers=500 ! video/x-raw,width=320,height=240 ! videoconvert ! queue ! timeoverlay ! x264enc ! h264parse ! splitmuxsink location=video%02d.mov max-size-time=10000000000 max-size-bytes=1000000 + * gst-launch-1.0 -e v4l2src num-buffers=500 ! video/x-raw,width=320,height=240 ! videoconvert ! queue ! timeoverlay ! x264enc key-int-max=10 ! h264parse ! splitmuxsink location=video%02d.mov max-size-time=10000000000 max-size-bytes=1000000 * ]| * * Records a video stream captured from a v4l2 device and muxes it into |