this post was submitted on 14 Aug 2026
79 points (98.8% liked)

Open Source

48566 readers
61 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 7 years ago
MODERATORS
 

as we know capcut is no longer good for free users, any recommendation for open source video editor? i prefer option to export projects so i can archive it to my drive.

you are viewing a single comment's thread
view the rest of the comments
[–] hamsda@feddit.org 9 points 1 week ago (1 children)

For simple cutting & slicing I honestly just write ffmpeg oneliners.

+1 fo ffmpeg and not having to install another tool for a single task.

I do not edit videos, I just record with obs-studio and cut out unneeded parts. ffmpeg does that, it does so fast and without any problems + it also works for converting videos to another codec.

[–] Gekkonen@sopuli.xyz 6 points 1 week ago (1 children)

FFMPEG is nice when you do something like ffmpeg -i input.mp4 -vcodec copy -acodec copy -ss 00:01:00 -t 00:03:00 out.mp4 and the result is almost instant as there's no re-encoding.

[–] hamsda@feddit.org 2 points 6 days ago

FYI - you only need -c copy and do not need to specify acodec and vcodec, if both of them are going to be copy anyway.