Spaces:
Runtime error
Runtime error
Commit ·
46dd7aa
1
Parent(s): b8dbc3e
bug fix
Browse files- src/predict.py +2 -2
src/predict.py
CHANGED
|
@@ -259,7 +259,7 @@ class Predictor:
|
|
| 259 |
|
| 260 |
|
| 261 |
|
| 262 |
-
def predict_with_emotions(self,s3_url,passage,output_extension
|
| 263 |
output_dir = 'processed'
|
| 264 |
gen_id = str(uuid.uuid4())
|
| 265 |
os.makedirs(output_dir,exist_ok=True)
|
|
@@ -300,7 +300,7 @@ class Predictor:
|
|
| 300 |
}
|
| 301 |
|
| 302 |
|
| 303 |
-
def predict_with_multi_lang(self,s3_url,passage,output_extension
|
| 304 |
print("In multi lang voice cloning")
|
| 305 |
output_dir = 'processed'
|
| 306 |
gen_id = str(uuid.uuid4())
|
|
|
|
| 259 |
|
| 260 |
|
| 261 |
|
| 262 |
+
def predict_with_emotions(self,s3_url,passage,process_audio,output_extension):
|
| 263 |
output_dir = 'processed'
|
| 264 |
gen_id = str(uuid.uuid4())
|
| 265 |
os.makedirs(output_dir,exist_ok=True)
|
|
|
|
| 300 |
}
|
| 301 |
|
| 302 |
|
| 303 |
+
def predict_with_multi_lang(self,s3_url,passage,process_audio,output_extension):
|
| 304 |
print("In multi lang voice cloning")
|
| 305 |
output_dir = 'processed'
|
| 306 |
gen_id = str(uuid.uuid4())
|