I want to remove the first few seconds from a video that's about 25 minutes long. I found the moviepy
package, and tried writing this code:
from moviepy.editor import *
clip = VideoFileClip("video1.mp4").cutout(0, 7)
clip.write_videofile("test.mp4")
However, it's very slow even for a single video. Is there a faster way to do this in Python?