Hey FOSS enthusiasts, I just discovered the top tools you can use to edit videos or make VFX,Animations,modelling.
Here is the list of tools
Hey FOSS enthusiasts, I just discovered the top tools you can use to edit videos or make VFX,Animations,modelling.
Here is the list of tools
BIG BUCK BUNNY
one should really watch this awesome artwork by open source tools.
For simple cutting and joining, the CLI tool ffmpeg
can be used.
But learning a good tool like Kdenlive is totally worth it in the long term.
ffmpeg can be used to quickly trim a video from a given start time to end time.
ffmpeg -i video.webm -ss 00:00:00 -t 00:05:04 -c copy video-cut.webm
ss and t can be skipped in case of start of video or end of video respectively.
See this for joining videos.
Thanks for the quick command for cutting a video, its very helpful.