Skip to content

Commit

Permalink
docs(readme): update CIVITAI Model URL (#1250)
Browse files Browse the repository at this point in the history
* Fix CIVITAI URL

CIVITAI use tag `so-vits-svc-fork` for this

* chore(pre-commit.ci): auto fixes

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
Anime4000 and pre-commit-ci[bot] authored Feb 26, 2025
1 parent 55bbf0a commit 0f015e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ svc vc
svc infer source.wav
```

Pretrained models are available on [Hugging Face](https://huggingface.co/models?search=so-vits-svc) or [CIVITAI](https://civitai.com/?query=so-vits-svc).
Pretrained models are available on [Hugging Face](https://huggingface.co/models?search=so-vits-svc) or [CIVITAI](https://civitai.com/tag/so-vits-svc-fork).

#### Notes

Expand Down
8 changes: 5 additions & 3 deletions src/so_vits_svc_fork/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,11 @@ def main():
sg.FileBrowse(
initial_folder=".",
key="input_path_browse",
file_types=get_supported_file_types_concat()
if os.name == "nt"
else get_supported_file_types(),
file_types=(
get_supported_file_types_concat()
if os.name == "nt"
else get_supported_file_types()
),
),
sg.FolderBrowse(
button_text="Browse(Folder)",
Expand Down

0 comments on commit 0f015e3

Please sign in to comment.