|
| 1 | +from moviepy import * |
| 2 | +import numpy as np |
| 3 | + |
| 4 | +# Run the code inside the movie_py |
| 5 | +# loading the base video |
| 6 | +video = VideoFileClip("./example_vids/async_work.mkv") |
| 7 | + |
| 8 | +""" - agenda ⇒ 0.14 to 1.01 |
| 9 | +- dont_hire ⇒3.22 to 3.50 |
| 10 | +- communication ⇒ 7:05 to 7:25 |
| 11 | +- clear_process ⇒ 8:00 to 8:54 |
| 12 | +- open_source ⇒ 12:44 to 13:44 |
| 13 | + """ |
| 14 | + |
| 15 | +agenda = video.subclipped(14, 61) |
| 16 | +dont_hire = video.subclipped(202, 225) |
| 17 | +communication = video.subclipped(425, 450) |
| 18 | +clearproc = video.subclipped(480, 505) |
| 19 | +opensource = video.subclipped(764, 824) |
| 20 | + |
| 21 | +# Preview the clips |
| 22 | + |
| 23 | +""" agenda.preview(fps=25) |
| 24 | +dont_hire.preview(fps=25) |
| 25 | +communication.preview(fps=25) |
| 26 | +clearproc.preview(fps=25) |
| 27 | +opensource.preview(fps=25) """ |
| 28 | + |
| 29 | +opensource = opensource.with_section_cut_out(start_time=50, end_time=70) |
| 30 | + |
| 31 | +# opensource.preview(fps=25) |
| 32 | + |
| 33 | +# Lets get some Text clips & emojis |
| 34 | + |
| 35 | +font = "./fonts/FiraCode/FiraCodeNerdFont-Bold.ttf" |
| 36 | +agenda_text = TextClip(font=font, |
| 37 | + text="Agend is:", |
| 38 | + font_size=50, |
| 39 | + color="#fff") |
| 40 | +dont_hire_text = TextClip(font=font, |
| 41 | + text="Think Automation before you Hire", |
| 42 | + font_size=40, |
| 43 | + color="#fff") |
| 44 | +comm_text = TextClip(font=font, |
| 45 | + text="The game changer is Communication.", |
| 46 | + font_size=40, |
| 47 | + color="#fff") |
| 48 | +clear_proc_text = TextClip(font=font, |
| 49 | + text="Setting up Process is step towards Automation.", |
| 50 | + font_size=50, |
| 51 | + color="#fff") |
| 52 | +opensource_text = TextClip(font=font, |
| 53 | + text="Make it as Open Source to gain Traction.", |
| 54 | + font_size=50, |
| 55 | + color="#fff") |
| 56 | + |
0 commit comments