My previous post included a video. I made that video with OBS which outputs .mkv video files. I wanted to do my best to ensure that folks with a variety of devices and browsers would be able to watch the video if they wanted to, so, I converted it into a few different formats. Here’s the bash script I wrote to do that. It relies on ffmpeg. #!/bin/bash# Won't work if ffmpeg isn't installedif ! command -v ffmpeg &> /dev/null; thenecho"ffmpeg is not installed. Please install ffmpeg to use this...