'How to trim bulk video files using FFMPEG?

How to trim first 10 seconds of the many videos that are in specific folder? Output should be named with original video files and number of seconds that is trimmed. Example: videofilename_10Seconds

from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
ffmpeg_extract_subclip("video.mp4", 0, 10, targetname="trimmed.mp4")


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source