[last updated: 2025-03-28]
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. It is a "container" that may include both audio and video. The audio may use aac codec, which has tighter compression and higher quality than mp3, but is still lossy. Or it may use other codecs, including the lossless ALAC (Apple).
The ogg container may use (lossy) Vorbis audio codec, but may use the lossless FLAC or OggPCM.
- 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