Skip to content

Commit

Permalink
Fix plugin in new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisewf committed Aug 10, 2024
1 parent 91b9faf commit f9a622f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Binary file modified Elevenlabs-TTS/Elevenlabs-TTS.zip
Binary file not shown.
8 changes: 4 additions & 4 deletions Elevenlabs-TTS/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ def run_tts_script(
print(f"TTS with {tts_voice} completed. Output TTS file: '{output_tts_path}'")

voice_converter.convert_audio(
f0_up_key=pitch,
pitch=pitch,
filter_radius=filter_radius,
index_rate=index_rate,
rms_mix_rate=rms_mix_rate,
volume_envelope=rms_mix_rate,
protect=protect,
hop_length=hop_length,
f0_method=f0method,
Expand All @@ -195,10 +195,10 @@ def run_tts_script(
clean_audio=clean_audio,
clean_strength=clean_strength,
export_format=export_format,
embedder_model=embedder_model,
embedder_model_custom=embedder_model_custom,
upscale_audio=upscale_audio,
f0_file=f0_file,
embedder_model=embedder_model,
embedder_model_custom=embedder_model_custom,
)

return f"Text {tts_text} synthesized successfully.", output_rvc_path.replace(
Expand Down

0 comments on commit f9a622f

Please sign in to comment.