Skip to content

Instantly share code, notes, and snippets.

from moviepy.editor import *
from moviepy import *
video = VideoFileClip(r"[MYFILE]").subclip(50,60)
# Make the text. Many more options are available.
txt_clip = ( TextClip("My Holidays 2013",fontsize=70,color='white')
.set_position('center')
.set_duration(10) )