Answer the question
In order to leave comments, you need to log in
How to batch cut the first 10 seconds from a view using ffmpeg?
Good day!
there is a folder with a lot of videos c:/ffmpeg/videos/
you need to cut off the first 10 seconds of all videos, without re-encoding while maintaining quality and with the same file names.
Save the final result to c:/ffmpeg/videos2/
Thank you so much!
Answer the question
In order to leave comments, you need to log in
With one file, everything is simple:
ffmpeg \
-i "c:/ffmpeg/videos/video_1.avi" \
-t 10 \
-c:v copy \
-c:a copy \
"c:/ffmpeg/videos2/video_1.avi"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question