mirror of
https://github.com/wassname/TTS.git
synced 2026-09-09 11:16:00 +08:00
bug fix for sound normalization
This commit is contained in:
+1
-1
@@ -247,7 +247,7 @@ class AudioProcessor(object):
|
||||
print(f' [!] File cannot be trimmed for silence - {filename}')
|
||||
assert self.sample_rate == sr, "%s vs %s"%(self.sample_rate, sr)
|
||||
if self.sound_norm:
|
||||
x = x / abs(x.max()) * 0.9
|
||||
x = x / abs(x).max() * 0.9
|
||||
return x
|
||||
|
||||
@staticmethod
|
||||
|
||||
Reference in New Issue
Block a user