Answers for "how to trim mp4 with moviepy"

1

how to trim mp4 with moviepy

from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
# ffmpeg_extract_subclip("full.mp4", start_seconds, end_seconds, targetname="cut.mp4")
ffmpeg_extract_subclip("full.mp4", 60, 300, targetname="cut.mp4")
Posted by: Guest on August-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language