See https://trac.ffmpeg.org/wiki/audio%20types.
Encoding:
ffmpeg -i file.ogg -ar 8000 -f s16le file.s16le
Decoding:
ffmpeg -f s16le -ar 8000 -i file.s16le file.ogg
Encoding:
ffmpeg -i file.ogg -ar 8000 -f mulaw file.g711u
Decoding:
ffmpeg -f mulaw -ar 8000 -i file.g711u file.ogg
Encoding:
ffmpeg -i file.ogg -ar 8000 -f alaw file.g711a
Decoding:
ffmpeg -f alaw -ar 8000 -i file.g711a file.ogg
Encoding:
ffmpeg -i file.ogg -ar 8000 -f g722 file.g722
Decoding:
ffmpeg -f g722 -i file.g722 file.ogg