From d8afee295110032a7ddc426ed1115fa0c31521f6 Mon Sep 17 00:00:00 2001 From: lcjh <120989324@qq.com> Date: Tue, 31 Aug 2021 23:49:56 +0800 Subject: [PATCH] typo fix --- doc/html/index.html | 6 +++--- ffmpeg/_filters.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/html/index.html b/doc/html/index.html index eac8967..55d31a9 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -168,7 +168,7 @@ output.

ffmpeg.compile(stream_spec, cmd='ffmpeg', overwrite_output=False)

Build command-line for invoking ffmpeg.

-

The run() function uses this to build the commnad line +

The run() function uses this to build the command line arguments and should work in most cases, but calling this function directly is useful for debugging or if you need to invoke ffmpeg manually for whatever reason.

@@ -340,7 +340,7 @@ the output video.

  • y – The vertical position, in the input video, of the top edge of the output video.

  • width – The width of the output video. Must be greater than 0.

  • -
  • heigth – The height of the output video. Must be greater than 0.

  • +
  • height – The height of the output video. Must be greater than 0.

  • @@ -357,7 +357,7 @@ output video.

  • x – The expression which specifies the top left corner x coordinate of the box. It defaults to 0.

  • y – The expression which specifies the top left corner y coordinate of the box. It defaults to 0.

  • width – Specify the width of the box; if 0 interpreted as the input width. It defaults to 0.

  • -
  • heigth – Specify the height of the box; if 0 interpreted as the input height. It defaults to 0.

  • +
  • height – Specify the height of the box; if 0 interpreted as the input height. It defaults to 0.

  • color – Specify the color of the box to write. For the general syntax of this option, check the “Color” section in the ffmpeg-utils manual. If the special value invert is used, the box edge color is the same as the video with inverted luma.

  • diff --git a/ffmpeg/_filters.py b/ffmpeg/_filters.py index 2691220..c5a6ae9 100644 --- a/ffmpeg/_filters.py +++ b/ffmpeg/_filters.py @@ -182,7 +182,7 @@ def crop(stream, x, y, width, height, **kwargs): y: The vertical position, in the input video, of the top edge of the output video. width: The width of the output video. Must be greater than 0. - heigth: The height of the output video. Must be greater than 0. + height: The height of the output video. Must be greater than 0. Official documentation: `crop `__ """ @@ -199,7 +199,7 @@ def drawbox(stream, x, y, width, height, color, thickness=None, **kwargs): x: The expression which specifies the top left corner x coordinate of the box. It defaults to 0. y: The expression which specifies the top left corner y coordinate of the box. It defaults to 0. width: Specify the width of the box; if 0 interpreted as the input width. It defaults to 0. - heigth: Specify the height of the box; if 0 interpreted as the input height. It defaults to 0. + height: Specify the height of the box; if 0 interpreted as the input height. It defaults to 0. color: Specify the color of the box to write. For the general syntax of this option, check the "Color" section in the ffmpeg-utils manual. If the special value invert is used, the box edge color is the same as the video with inverted luma.