Batch Cut multiple Videos with pre defined times #1228
chickchecker
started this conversation in
General
Replies: 1 comment 1 reply
-
hi. I think you're better off using ffmpeg directly from the command line with bash: for f in *.mp4; do ffmpeg -t 310 -i "$f" -c copy "$f-out.mp4"; done |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
i have hunreds of Videos and have to cut them in one step. Is it possible to let losslesscut do the job.
For example:
i want to cut every 5 Minutes 10 seconds off every Video. I this possibe? I do not want to edit every Video, i just want an automatic cut of multiple Videos at pre defined timestamps and export them to new Videos.
Thank you
Beta Was this translation helpful? Give feedback.
All reactions