From 69ac313a20f746be3dc14b81b894498f97142c96 Mon Sep 17 00:00:00 2001 From: PiaoYang <495384481@qq.com> Date: Sat, 22 Apr 2023 20:27:35 +0800 Subject: [PATCH] Fixed typo in audioclips.rst (#1954) * Fixed typo in effects.rst Fixed typo in effects.rst * Fixed typo in audioclips.rst Fixed typo in audioclips.rst --- docs/getting_started/audioclips.rst | 2 +- docs/getting_started/effects.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting_started/audioclips.rst b/docs/getting_started/audioclips.rst index 4727149e6..a7d979614 100644 --- a/docs/getting_started/audioclips.rst +++ b/docs/getting_started/audioclips.rst @@ -5,7 +5,7 @@ Audio in MoviePy This section shows how to use MoviePy to create and edit audio clips. -Note that when you cut, mix or concatenate video clips in MoviePy the audio is automatically handled and you need to worry about it. This section is of interest if you just want to edit audiofiles or you want custom audio clips for your videos. +Note that when you cut, mix or concatenate video clips in MoviePy the audio is automatically handled and you don't need to worry about it. This section is of interest if you just want to edit audiofiles or you want custom audio clips for your videos. What audioclips are made of ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/getting_started/effects.rst b/docs/getting_started/effects.rst index 543658497..768811511 100644 --- a/docs/getting_started/effects.rst +++ b/docs/getting_started/effects.rst @@ -7,7 +7,7 @@ There are several categories of clip modifications in MoviePy: - The very common methods to change the attributes of a clip: ``clip.with_duration``, ``clip.with_audio``, ``clip.with_mask``, ``clip.with_start`` etc. - The already-implemented effects. Core effects like ``clip.subclip(t1, t2)`` (keep only the cut between t1 and t2), which are very important, are implemented as class methods. More advanced and less common effects like ``loop`` (makes the clip play in a loop) or ``time_mirror`` (makes the clip play backwards) are placed in the special modules ``moviepy.video.fx`` and ``moviepy.audio.fx`` and are applied with the ``clip.fx`` method, for instance ``clip.fx(time_mirror)`` (makes the clip play backwards), ``clip.fx(black_white)`` (turns the clip black and white), etc. -- The effects that you can create yourself. using +- The effects that you can create yourself using ``clip.fl``. All these effects have in common that they are **not inplace**: they do NOT modify the original clip, instead they create a new clip that is a version of the former with the changes applied. For instance: ::