pull/2495/head
Eren Gölge 2023-04-10 13:33:42 +02:00
parent 5bd1fb6b2c
commit a49c1931d9
1 changed files with 1 additions and 1 deletions

View File

@ -711,7 +711,7 @@ class AudioProcessor(object):
Args:
filename (str): Path to the wav file.
"""
return librosa.get_duration(path=filename)
return librosa.get_duration(filename=filename)
@staticmethod
def mulaw_encode(wav: np.ndarray, qc: int) -> np.ndarray: