Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #2033

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@
# The format is a list of tuples containing the path and title.
# epub_pre_files = []

# HTML files shat should be inserted after the pages created by sphinx.
# HTML files that should be inserted after the pages created by sphinx.
# The format is a list of tuples containing the path and title.
# epub_post_files = []

Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started/videoclips.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ VideoClip

import gizeh
import moviepy as mpy

WIDTH, HEIGHT = (128, 128)

def make_frame(t):
Expand Down Expand Up @@ -94,7 +94,7 @@ ImageClip
An ImageClip is a video clip that always displays the same image. You can create one as follows: ::

myclip = ImageClip("some_picture.jpeg")
myclip = ImageClip(somme_array) # a (height x width x 3) RGB numpy array
myclip = ImageClip(some_array) # a (height x width x 3) RGB numpy array
myclip = some_video_clip.to_ImageClip(t='01:00:00') # frame at t=1 hour.

For more, see :py:class:`~moviepy.video.VideoClip.ImageClip`.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ffmpeg_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def test_not_default_audio_stream_audio_bitrate():


def test_stream_deidentation_not_raises_error():
"""Test libavformat reduced streams identation to 2 spaces.
"""Test libavformat reduced streams indentation to 2 spaces.

See https://github.com/FFmpeg/FFmpeg/commit/b7251aed
"""
Expand Down