Skip to content

Commit

Permalink
Fixed typo in audioclips.rst (#1954)
Browse files Browse the repository at this point in the history
* Fixed typo in effects.rst

Fixed typo in effects.rst

* Fixed typo in audioclips.rst

Fixed typo in audioclips.rst
  • Loading branch information
46319943 authored Apr 22, 2023
1 parent 86fd511 commit 69ac313
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/getting_started/audioclips.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/effects.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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: ::

Expand Down

0 comments on commit 69ac313

Please sign in to comment.