blob: 25c87f07e7f575396345cbac9e0693fc7485356c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# 15 Oct 2021
ffmpeg -i openShedSlidingDoor.wav -codec:a libmp3lame -q:a 4 openShedSlidingDoor.mp3
# build this out.
-q:a <n> ==mp3 quality
see https://trac.ffmpeg.org/wiki/Encode/MP3
S
# 26 Jan 2022
sox can also do it
sox file.wav file.mp3
|