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
Write and read structs to/from files in Cc
Add lazy loading of images in Jekyll posts
Take a screenshot in Plan9plan9
10/GUI 10 Finger Multitouch User Interface
Simple presentations with Markdown
Display xterm color palette
Sending signals to C programsc
Alacritty open links with modifier
Drawing Pixels in Plan9plan9
Download list of YouTube files
Execute not blocking async shell command in C#
Development environments with Nix
Calling assembly functions from Cc
Make B/W SVG charts with matplotlib
Install Plan9port on Linuxplan9