Is it possible to generate using the command-line? #242
Labels
No Label
bug
duplicate
enhancement
help wanted
insufficient info
invalid
news
not a bug
question
wontfix
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: mrq/ai-voice-cloning#242
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
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?
Apologies if this is a dumb question, but I could not find an answer on the wiki or in existing issues.
Is it possible to generate outputs from the command line, or is that only doable from the Web UI? Thanks!
Right, I keep forgetting to re-implement a CLI interface. When I get a moment I can whip up something.
Oh that would be super cool, thanks!
In the meantime, I figured out that I can use the autogenerated Gradio API to create files programmatically. The Gradio API kind of sucks but it's better than generating every file manually using the GUI.
Shit, I forgot to do this. Gomen. I'm a bit tied up for the rest of the week, so...
You might get lucky with just copying an existing
do_tts.py
(such as from 152334H's fork, I think it has one) and plunk it with my fork.If I was a good dev, I would have:
do_tts.py
scriptsThe way I had in mind was just another script that's guided by a bunch of argument flags that then get fed into
./src/utils.py
'sgenerate()
function.bruh you owe noone nothing im just grateful you gave us an interface to experiment
Sorry it took so long, especially for how simple the
cli.py
script ended up being. My work ethic has taken quite the nosedive.Should be added in commit
76ed34ddd2
. Use (after activating the venv):and additional flags should be pretty much whatever is under
./cfg/generate.json
up to but not includingexperimentals
(but it will use the JSON as defaults).Thank you so much, this is fantastic!