Skip to content

Commit

Permalink
Merge pull request #687 from msrks/msrks-patch-1
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
tburrows13 authored Dec 22, 2017
2 parents f444f8c + 4523734 commit a90d4ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/getting_started/effects.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ but this is not easy to read. To have a clearer syntax you can use ``clip.fx``:
.fx( effect_2, args2)
.fx( effect_3, args3))

Much better ! There are already many effects implemented in the modules ``moviepy.video.fx`` and ``moviepy.audio.fx``. The fx methods in these modules are automatically applied to the sound and the mask of the clip if it is relevant, so that you don't have to worry about modifying these. For practicality, when you use ``from moviepy import.editor *``, these two modules are loaded as ``vfx`` and ``afx``, so you may write something like ::
Much better ! There are already many effects implemented in the modules ``moviepy.video.fx`` and ``moviepy.audio.fx``. The fx methods in these modules are automatically applied to the sound and the mask of the clip if it is relevant, so that you don't have to worry about modifying these. For practicality, when you use ``from moviepy.editor import *``, these two modules are loaded as ``vfx`` and ``afx``, so you may write something like ::
from moviepy.editor import *
clip = (VideoFileClip("myvideo.avi")
Expand Down

0 comments on commit a90d4ab

Please sign in to comment.