Created
February 9, 2021 05:49
-
-
Save Abhayparashar31/6e38e0392f57072a4d352bf4f281dda5 to your computer and use it in GitHub Desktop.
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
| from moviepy.editor import * | |
| video = VideoFileClip("sample_video.mp4") ## Video Link | |
| # Make the text. Many more options are available. | |
| txt_clip = ( TextClip("Live Your Dream To The Fullest",fontsize=70,color='white') | |
| .set_position('center') | |
| .set_duration(10) ) | |
| result = CompositeVideoClip([video, txt_clip]) # Overlay text on video | |
| result.write_videofile("myHolidays_edited.webm",fps=25) ## Saving Video | |
| result.ipython_display(width=250) ## display Video |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment