Update audio_processing/T2A.py
Browse files- audio_processing/T2A.py +2 -2
audio_processing/T2A.py
CHANGED
@@ -30,10 +30,10 @@ class T2A:
|
|
30 |
|
31 |
print(f"type : {type(output)}")
|
32 |
|
33 |
-
duration = __get_duration(output)
|
34 |
|
35 |
print(f"duration : {duration}")
|
36 |
|
37 |
return output, SAMPLING_RATE, duration
|
38 |
except Exception as e:
|
39 |
-
logging.error(
|
|
|
30 |
|
31 |
print(f"type : {type(output)}")
|
32 |
|
33 |
+
duration = self.__get_duration(output)
|
34 |
|
35 |
print(f"duration : {duration}")
|
36 |
|
37 |
return output, SAMPLING_RATE, duration
|
38 |
except Exception as e:
|
39 |
+
logging.error(e)
|