This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Code for this GIF: | |
# http://imgur.com/gallery/pTypr1Y | |
# This demonstrates how to freeze a region with MoviePy | |
from moviepy.editor import * | |
clip = (VideoFileClip("the_fault_in_our_stars.mp4") | |
.subclip("00:59:48.4","00:59:49.6") | |
.resize(width=600) |