how to trim mp4 with moviepy

Solutions on MaxInterview for how to trim mp4 with moviepy by the best coders in the world

showing results for - "how to trim mp4 with moviepy"
Nahel
26 Feb 2020
1from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
2# ffmpeg_extract_subclip("full.mp4", start_seconds, end_seconds, targetname="cut.mp4")
3ffmpeg_extract_subclip("full.mp4", 60, 300, targetname="cut.mp4")
4