this post was submitted on 31 Aug 2024
3 points (100.0% liked)

Linux Video Editing

81 readers
2 users here now

Welcome! This community is focused on sharing video editing tips, tricks, best practices, and software

Some quick rules:

With all of that being said - welcome to the Linux Video Editing community! The goal here is to help each other with tips, tricks, suggestions, and advice.

In my (limited) experience, different software works better for different styles of projects. Here's my personal list of software that I use for various projects which can all be easily installed from most (all?) package managers:

Kdenlive is fantastic for quick edits, though it can do a lot more (beyond the quick edits it is clunky imo). ShotCut can do cool things like motion tractking easily. Olive is fantastic for subtitles, but I absolutely would not recommend it for anything with audio.

founded 3 months ago
MODERATORS
 

I edited this video with Pikimov! It worked well, and was easy to use once I had chromium up and running.

This post is a follow up to vid.stab.

For general camera wobble it corrects nicely, though if the shaking is moderate the correction leads to some nauseating wiggling effect in the resulting file. I'm still looking for a way to fix that.

Here's the current shell script I use on the footage:

#!/bin/bash

ARG_COUNT=$#
INPUT=$1
VID="${INPUT%.*}"
EXT="${INPUT##*.}"

if [ $ARG_COUNT -ne 1 ]
then
	echo "Usage: ./stabilize.sh input.MP4"
	exit 1
fi

ffmpeg -i "$VID.$EXT" -vf vidstabdetect=shakiness=10 -f null -
ffmpeg -i "$VID.$EXT" -vf vidstabtransform=smoothing=30:zoom=5:crop=black "$VID.stab10_z5.$EXT"
#ffmpeg -i "$VID.stab.$EXT" -filter:v scale=1920:-1 -c:a copy "$VID.stab.small.$EXT"
no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here