Skip to content

Commit

Permalink
fix extension logs and add extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
rsxdalv committed Oct 19, 2024
1 parent 52da152 commit 03ed05b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,21 @@
"website": "https://github.com/SWivid/F5-TTS",
"extension_website": "https://github.com/rsxdalv/extension_f5_tts",
"extension_platform_version": "0.0.1"
},
{
"package_name": "extension_mars5",
"name": "MARS5",
"version": "0.0.1",
"requirements": "git+https://github.com/rsxdalv/extension_mars5@main",
"description": "MARS5: A novel speech model for insane prosody",
"extension_type": "interface",
"extension_class": "text-to-speech",
"author": "CAMB.AI",
"extension_author": "rsxdalv",
"license": "MIT",
"website": "https://github.com/camb-ai/mars5-tts",
"extension_website": "https://github.com/rsxdalv/extension_mars5",
"extension_platform_version": "0.0.1"
}
],
"decorators": [
Expand Down
2 changes: 1 addition & 1 deletion tts_webui/utils/pip_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
def write_log(output, name, type):
script_dir = os.path.dirname((__file__))
with open(
os.path.join(script_dir, "..", "logs", f"{type}-{name}.log"), "w"
os.path.join(script_dir, "..", "..", "logs", f"{type}-{name}.log"), "w"
) as outfile:
outfile.write("\n".join(output))

Expand Down

0 comments on commit 03ed05b

Please sign in to comment.