Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React UI Bark, MusicGen, Tortoise #234

Merged
merged 42 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
c8c4e62
audio send-to-x core
rsxdalv Oct 27, 2023
b343ac8
cleanup
rsxdalv Oct 27, 2023
a7f870e
enable audio on favorites page
rsxdalv Oct 27, 2023
b308b4b
new file input cache location
rsxdalv Oct 27, 2023
19bc249
update gitignore
rsxdalv Oct 27, 2023
77dcb3c
streamlined file inputs and save state
rsxdalv Oct 27, 2023
0eaafd7
rename musicgen -> demucs in file
rsxdalv Oct 30, 2023
d994dbc
cleanup and add prefix
rsxdalv Oct 30, 2023
abf01ab
Clean up Demucs
rsxdalv Oct 30, 2023
7157376
improve titles and file transfer
rsxdalv Oct 30, 2023
79fdd64
add the ability to send files to MusicGen
rsxdalv Oct 30, 2023
d8e3035
clean up API, add vocos endpoint
rsxdalv Oct 30, 2023
8ecf4b3
fix localStorage update bug, add vocos base
rsxdalv Oct 30, 2023
b36c111
finish vocos_wav tab
rsxdalv Oct 30, 2023
b47d80e
Vocos NPZ
rsxdalv Oct 30, 2023
6bc20e0
add encodec decode option
rsxdalv Oct 30, 2023
449cdb1
voice generation tab
rsxdalv Oct 30, 2023
d577c55
update comment
rsxdalv Oct 30, 2023
a1ffeb6
initial bark UI
rsxdalv Dec 23, 2023
9c7d74b
conda clean command
rsxdalv Dec 23, 2023
40fd927
fix
rsxdalv Dec 23, 2023
4df8d4b
disable dark theme
rsxdalv Dec 24, 2023
23efa43
add npz file refresh to bark, clean up UI
rsxdalv Dec 24, 2023
2dffd82
improve bark UI IO
rsxdalv Dec 24, 2023
907f6b6
show only the relevant selection
rsxdalv Dec 25, 2023
3c0be5b
display chosen voice
rsxdalv Dec 25, 2023
82b48c4
fix funcs interface bug
rsxdalv Dec 25, 2023
7b1f707
reoder bark to first place
rsxdalv Dec 25, 2023
40754e4
add basic tortoise tab
rsxdalv Dec 26, 2023
47169bb
add useParameters functions
rsxdalv Dec 26, 2023
9095b3f
fix model list refresh
rsxdalv Dec 26, 2023
cddd7d4
Fix speaker refresh
rsxdalv Dec 26, 2023
65a521c
CVVP as a slider
rsxdalv Dec 26, 2023
1c10bf6
fix visual bug
rsxdalv Dec 26, 2023
6bc6241
add tortoise model settings and custom tokenizer
rsxdalv Dec 26, 2023
80f471d
basic RVC
rsxdalv Jan 3, 2024
f4a5a0d
include RVC parameters/metadata
rsxdalv Jan 3, 2024
3d00418
fix metadata bug
rsxdalv Jan 5, 2024
1ea71f7
add index page
rsxdalv Jan 5, 2024
2cc4190
voices and history outputs
rsxdalv Jan 6, 2024
7602458
improve history UI
rsxdalv Jan 8, 2024
7da2671
add bark settings to react ui
rsxdalv Jan 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,14 @@ Not exactly, the dependencies clash, especially between conda and python (and de

* Potentially needed to install build tools (without Visual Studio): https://visualstudio.microsoft.com/visual-cpp-build-tools/

### React UI

* Install nodejs (if not already installed with conda)
* Install react dependencies: `npm install`
* Build react: `npm run build`
* Run react: `npm start`
* Also run the python server: `python server.py` or with `start_(platform)` script

## Docker Setup

tts-generation-webui can also be ran inside of a Docker container. To get started, first build the Docker image while in the root directory:
Expand Down
2 changes: 2 additions & 0 deletions optimize_conda_storage.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@REM conda clean --all --dry-run
conda clean --all
2 changes: 1 addition & 1 deletion react-ui/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ next-env.d.ts
.vscode

# upload cache
/file-input-cache/
/public/file-input-cache/

Loading