diff --git a/README.rst b/README.rst index 31a0f15dc..2bf289483 100644 --- a/README.rst +++ b/README.rst @@ -6,7 +6,6 @@ MoviePy (full documentation here_) is a Python module for video editing: cuts, c MoviePy can read and write all the most common audio and video formats, including GIF, and runs on Windows/Mac/Linux, with Python 2.7+ and 3. Here it is in action in an IPython notebook: .. image:: https://raw.githubusercontent.com/Zulko/moviepy/master/docs/demo_preview_small.jpeg - :width: 300px :alt: [logo] :align: center diff --git a/docs/getting_started/quick_presentation.rst b/docs/getting_started/quick_presentation.rst index d40e89193..418c73d75 100644 --- a/docs/getting_started/quick_presentation.rst +++ b/docs/getting_started/quick_presentation.rst @@ -19,7 +19,7 @@ Here are a few reasons why you may want to edit videos in Python: And here are a few uses for which MoviePy is NOT the best solution: - You only need to do frame-by-frame video analysis (with face detection or other fancy stuff). This could be done with MoviePy in association with other libraries, but really, just use OpenCV or SimpleCV, these are libraries that specialize in these tasks. -- You only want to convert a video, or convert a series of images to a movie. In this case it is better to directly call ``ffmpeg`` (or ``avconv`` or ``mencoder``...) it will be faster more memory-efficient than going through MoviePy. +- You only want to convert a video file, or turn a series of image files into a movie. In this case it is better to directly call ``ffmpeg`` (or ``avconv`` or ``mencoder``...) it will be faster more memory-efficient than going through MoviePy. Advantages and limitations diff --git a/moviepy/version.py b/moviepy/version.py index ec6dd0f91..b5fdc7530 100644 --- a/moviepy/version.py +++ b/moviepy/version.py @@ -1 +1 @@ -__version__ = "0.2.1.9.07" +__version__ = "0.2.2"