LoginSignup
0
0

More than 5 years have passed since last update.

mp3の音が全体に小さい時にあげる方法 (Mac)

Posted at

つまり、ピークが0dBとなるようにノーマライズする方法。

準備

lameが入っていなければ入れます。

brew install lame

soxが入っていなければいれます。

brew install sox

正規化します

sox in.mp3 out.mp3 gain -n

in.mp3のbit rateによらずout.mp3はbit rateが128kになってしまうようなので(?)、bit rateを指定したい時は、

sox in.mp3 -C 256 out.mp3 gain -n 

でOK

soxi out.mp3

で確認してみましょう。

参考

おわり。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0