diff --git a/ChangeLog b/ChangeLog index 49d878af7b..0d997a0895 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-03 Tim-Philipp Müller + + * ext/ogg/gstoggmux.c: + Fix sample pipeline description. + 2008-04-03 Stefan Kost * docs/plugins/Makefile.am: diff --git a/ext/ogg/gstoggmux.c b/ext/ogg/gstoggmux.c index dd607dec4c..2c7649d85d 100644 --- a/ext/ogg/gstoggmux.c +++ b/ext/ogg/gstoggmux.c @@ -30,9 +30,10 @@ * Example pipelines * * - * gst-launch v4l2src ! video/x-raw-yuv,width=320,height=240 ! ffmpegcolorspace ! theoraenc ! oggmux ! filesink location=video.ogg + * gst-launch v4l2src num-buffers=500 ! video/x-raw-yuv,width=320,height=240 ! ffmpegcolorspace ! theoraenc ! oggmux ! filesink location=video.ogg * - * Decodes the vorbis audio stored inside an ogg container. + * Encodes a video stream captured from a v4l2-compatible camera to Ogg/Theora + * (the encoding will stop automatically after 500 frames) * * *