how to trim mp4 with moviepy

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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