added simple websocket server which allows to start tts generation tasks, retrieving autoregressive models and voices list #328
No reviewers
Labels
No Label
bug
duplicate
enhancement
help wanted
insufficient info
invalid
news
not a bug
question
wontfix
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: mrq/ai-voice-cloning#328
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch ":master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
this is really simple but works for me,
by default the server only listens on localhost, if you want to access it from the whole network you got to change the listen_address from 127.0.0.1 to something else, personally i wouldn't advice to start the server on a public network address, as there's no security checks at all, so only recommended for local usage!
the requests are performed in json, e.g.:
important note, it might be necessary to add the websockets package to the requirements, not sure about that, i barely know what i do in python...
Nice nice.
When I get a moment I can have it leverage the listen argument as that handles what IP to listen on and the port.
Just add the PIP-named package in the
requirements.txt
. I can do that too when I get a moment.