将音量转化为 db
function this.Volume2DB(vol) vol = math.max(math.epsilon, vol) return 20 * math.log(vol, 10) end