Skip to content

Commit 03ed05b

Browse files
committed
fix extension logs and add extensions
1 parent 52da152 commit 03ed05b

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

extensions.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,21 @@
224224
"website": "https://github.com/SWivid/F5-TTS",
225225
"extension_website": "https://github.com/rsxdalv/extension_f5_tts",
226226
"extension_platform_version": "0.0.1"
227+
},
228+
{
229+
"package_name": "extension_mars5",
230+
"name": "MARS5",
231+
"version": "0.0.1",
232+
"requirements": "git+https://github.com/rsxdalv/extension_mars5@main",
233+
"description": "MARS5: A novel speech model for insane prosody",
234+
"extension_type": "interface",
235+
"extension_class": "text-to-speech",
236+
"author": "CAMB.AI",
237+
"extension_author": "rsxdalv",
238+
"license": "MIT",
239+
"website": "https://github.com/camb-ai/mars5-tts",
240+
"extension_website": "https://github.com/rsxdalv/extension_mars5",
241+
"extension_platform_version": "0.0.1"
227242
}
228243
],
229244
"decorators": [

tts_webui/utils/pip_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
def write_log(output, name, type):
66
script_dir = os.path.dirname((__file__))
77
with open(
8-
os.path.join(script_dir, "..", "logs", f"{type}-{name}.log"), "w"
8+
os.path.join(script_dir, "..", "..", "logs", f"{type}-{name}.log"), "w"
99
) as outfile:
1010
outfile.write("\n".join(output))
1111

0 commit comments

Comments
 (0)