We dont use the Gnome video grabber

This commit is contained in:
David Heinemeier Hansson
2025-06-26 08:40:36 -07:00
parent b3691be5dd
commit 597e4b25a1

View File

@ -2,13 +2,6 @@
compress() { tar -czf "${1%/}.tar.gz" "${1%/}"; }
alias decompress="tar -xzf"
# Convert webm files generated by the Gnome screenshot video recorder to mp4s that are more compatible
webm2mp4() {
input_file="$1"
output_file="${input_file%.webm}.mp4"
ffmpeg -i "$input_file" -c:v libx264 -preset slow -crf 22 -c:a aac -b:a 192k "$output_file"
}
# Write iso file to sd card
iso2sd() {
if [ $# -ne 2 ]; then