From 37b42bcb7db92a23da74f4e29fc11f810e8c6be5 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 15 Feb 2013 02:07:02 +0100 Subject: [PATCH] doc/filters: itemize unsharp examples Also drop pointless example. --- doc/filters.texi | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 0253530ed2..6dea243199 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -4944,17 +4944,21 @@ Negative values will blur the input video, while positive values will sharpen. @end table +Some examples follow: +@itemize +@item +Apply strong luma sharpen effect: @example -# Strong luma sharpen effect parameters unsharp=7:7:2.5 - -# Strong blur of both luma and chroma parameters -unsharp=7:7:-2:7:7:-2 - -# Use the default values with @command{ffmpeg} -ffmpeg -i in.avi -vf "unsharp" out.mp4 @end example +@item +Apply strong blur of both luma and chroma parameters: +@example +unsharp=7:7:-2:7:7:-2 +@end example +@end itemize + @section vflip Flip the input video vertically.