The free version is limited to 24 hours !I use this website to trim my tiktok videos, hope it will help you.
online-video-cutter.com
can you give me the code to do a 5-10 second deletion of every part in the video, and it happens once every 15 seconds?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
Sure, dm mecan you give me the code to do a 5-10 second deletion of every part in the video, and it happens once every 15 seconds?
Ffmpeg is my first choicehey 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 ?
i can edit vedios for you, nphey 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 ?
Maybe try a command line software like ffmpeg
Maybe this post can help you in the right direciton: fritzthecat-blog: Video Cut Automation with ffmpeg
https://github.com/ozmartian/vidcutter
Cross platform ffmpeg GUI
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
Yes there is.is there a code to delete a 2 minute video part automatically every 5 minutes, and automatically becomes 1 video output
U can give me bruh?Yes there is.
Check ffmpeg tutorials on youtubethak you guys i will try to learn ffmpeg properly ! ty for your answers <3 stay safe and be blessed