Convert all MKV files into other formats

note, May 14, 2023, on Mitja Felicijan's blog

You will need ffmpeg installed on your system. This will convert all MKV files into WebM format.

# Convert all MKV files into WebM format.
find ./ -name '*.mkv' -exec bash -c 'ffmpeg -i "$0" -vcodec libvpx -acodec libvorbis -cpu-used 5 -threads 8 "${0%%.mp4}.webm"' {} \;
# Convert all MKV files into MP4 format.
find ./ -name '*.mkv' -exec bash -c 'ffmpeg -i "$0" c:a copy -c:v copy -cpu-used 5 -threads 8 "${0%%.mp4}.mp4"' {} \;

Other notes

DateTitle
Making cgit look nicer
Use option key as meta in Alacritty under macOS
60's IBM Computers Commercial
Uninstall Ollama from a Linux box
Edsger W. Dijkstra Manuscripts ebook
Alacritty open links with modifier
Extract lines from a file with sed
Cache busting in Hugo
Simple presentations with Markdown
Drawing Pixels in Plan9plan9
Execute not blocking async shell command in C#
Parse RSS feeds with Lua
Write and read structs to/from files in Cc
Sending signals to C programsc
10/GUI 10 Finger Multitouch User Interface