Information Technology Grimoire

Version .0.0.1

IT Notes from various projects because I forget, and hopefully they help you too.

ffmpeg

Convert *.mp3 to *.ogg

apt-cache search ffmpeg
apt install ffmpeg
man ffmpeg
for f in ./*.mp3; do ffmpeg -i "$f" -c:a libvorbis -q:a 4 "${f/%mp3/ogg}"; done