Hey need a video editor or a program to cut videos

mecalec13

Regular Member
Joined
Jan 29, 2019
Messages
275
Reaction score
85
hey i need a video editor or a program to auto cut a full video as i chosse lets say from 7 sec to 9 sec or something like that but to do it auto , ive searched everywhere on google but cant come across one , does anyone has any ideea if something like this exists ?
 
Camtasia Studio should be yojr friend
hey ty ! ive install it but dosnt have any option to auto cut the video you have to do it manual from 7 to 7 sec :)) i can use any other editor for that :(
 
Maybe try a command line software like ffmpeg

Maybe this post can help you in the right direciton: https://fritzthecat-blog.blogspot.com/2020/09/video-cut-automation-with-ffmpeg.html
 
What do you mean by auto cut?
I always use kapwing trimmer it's free to use. Just need to signup, browser based tool.
 
What do you mean by auto cut?
I always use kapwing trimmer it's free to use. Just need to signup, browser based tool.
i mean , i want the program to let 7 seconds in cut 7 seconds out from the video , something like that
 
You can use this code with ffmpeg

Code:
ffmpeg -i input.mp4 -c copy -map 0 -segment_time 00:01:00 -f segment output%03d.mp4

Let say you have a 1 hour video and you want to split it in many parts, ps 1 min on each part. Ffmpeg with that code will split your video in 60 parts in just few seconds.
You also can do it on bulk to target a specific folder and it will do the same for all videos on that folder.

Or if you want you can split specific duration of video by using this code:
Code:
ffmpeg -i input.mp4 -ss 00:10:00 -to 00:12:00 -c copy output.mp4
 
Hmmm...

hey i need a video editor or a program to auto cut a full video as i chosse lets say from 7 sec to 9 sec or something like that but to do it auto , ive searched everywhere on google but cant come across one , does anyone has any ideea if something like this exists ?

You need ffmpeg.

You'll have to learn it, but it will do what you need.

Code:
https://www.ffmpeg.org/about.html
 
thak you guys i will try to learn ffmpeg properly ! ty for your answers <3 stay safe and be blessed
 
You can use this code with ffmpeg

Code:
ffmpeg -i input.mp4 -c copy -map 0 -segment_time 00:01:00 -f segment output%03d.mp4

Let say you have a 1 hour video and you want to split it in many parts, ps 1 min on each part. Ffmpeg with that code will split your video in 60 parts in just few seconds.
You also can do it on bulk to target a specific folder and it will do the same for all videos on that folder.

Or if you want you can split specific duration of video by using this code:
Code:
ffmpeg -i input.mp4 -ss 00:10:00 -to 00:12:00 -c copy output.mp4
keep trying getting so error with permision denied :(
 
You can use this code with ffmpeg

Code:
ffmpeg -i input.mp4 -c copy -map 0 -segment_time 00:01:00 -f segment output%03d.mp4

Let say you have a 1 hour video and you want to split it in many parts, ps 1 min on each part. Ffmpeg with that code will split your video in 60 parts in just few seconds.
You also can do it on bulk to target a specific folder and it will do the same for all videos on that folder.

Or if you want you can split specific duration of video by using this code:
Code:
ffmpeg -i input.mp4 -ss 00:10:00 -to 00:12:00 -c copy output.mp4
DUUUUUDE IT WORKED GOSH I MANAGE TO MAKE IT TY SO MUCh
 
Back
Top