[last updated: 2022-12-15]
Midi
Audacity
OBS Studio
Audio Recorder notes
-----
- Formats:
- Lossless:
wav, wma, aiff & alac (Apple), flac, mqa
- Lossy:
mp3, aac, ogg
m4a is an mpeg-4 file. They use aac codec. It has tighter compression and higher quality than mp3, but is still lossy.
- See Programs/apps below for techniques for changing between formats
- Metadata:
- Programs/apps to read/extract metadata:
- ffmpeg
- Convert m4a to wav:
- $ ffmpeg -i input.mp4 output.wav
- Convert all m4a files in a directory,:
for f in *.m4a; do ffmpeg -i "$f" "${f/%m4a/wav}"; done
- Script files to extract/edit metadata:
-
- Rename and convert a bunch of music files:
- Editing metadata:
.
.
eof