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.
diff --git a/ffmpeg/dag.py b/ffmpeg/dag.py
index 9564d7f..5f16b6c 100644
--- a/ffmpeg/dag.py
+++ b/ffmpeg/dag.py
@@ -65,7 +65,7 @@ class DagNode(object):
"""Provides information about all incoming edges that connect to this node.
The edge map is a dictionary that maps an ``incoming_label`` to ``(outgoing_node, outgoing_label)``. Note that
- implicity, ``incoming_node`` is ``self``. See "Edges" section above.
+ implicitly, ``incoming_node`` is ``self``. See "Edges" section above.
"""
raise NotImplementedError()