1

I want to convert mp3/wav audio file into wav format with a specific bitrate quality of 16bit or any if possible. How can I convert this file as well as change its quality bitrate in ubuntu linux 18.04?

codewhiz
  • 111

1 Answers1

2

SoX is "the Swiss Army knife of audio manipulation". With that tool, you can read and write audio files in different formats, and you even can apply effects to them. Install sox with:

sudo apt install sox

Read about how it works:

man sox
vanadium
  • 97,564