forked from mrq/tortoise-tts
Fixed out of order settings causing other settings to flipflop
This commit is contained in:
parent
5b5e32338c
commit
a2bac3fb2c
8
webui.py
8
webui.py
|
@ -471,12 +471,12 @@ def get_voice_list():
|
||||||
def update_voices():
|
def update_voices():
|
||||||
return gr.Dropdown.update(choices=sorted(get_voice_list()) + ["microphone"])
|
return gr.Dropdown.update(choices=sorted(get_voice_list()) + ["microphone"])
|
||||||
|
|
||||||
def export_exec_settings( share, listen, check_for_updates, models_from_local_only, low_vram, embed_output_metadata, latents_lean_and_mean, voice_fixer, cond_latent_max_chunk_size, sample_batch_size, concurrency_count, output_sample_rate, output_volume ):
|
def export_exec_settings( listen, share, check_for_updates, models_from_local_only, low_vram, embed_output_metadata, latents_lean_and_mean, voice_fixer, cond_latent_max_chunk_size, sample_batch_size, concurrency_count, output_sample_rate, output_volume )
|
||||||
args.share = share
|
|
||||||
args.listen = listen
|
args.listen = listen
|
||||||
args.low_vram = low_vram
|
args.share = share
|
||||||
args.check_for_updates = check_for_updates
|
args.check_for_updates = check_for_updates
|
||||||
args.models_from_local_only = models_from_local_only
|
args.models_from_local_only = models_from_local_only
|
||||||
|
args.low_vram = low_vram
|
||||||
args.cond_latent_max_chunk_size = cond_latent_max_chunk_size
|
args.cond_latent_max_chunk_size = cond_latent_max_chunk_size
|
||||||
args.sample_batch_size = sample_batch_size
|
args.sample_batch_size = sample_batch_size
|
||||||
args.embed_output_metadata = embed_output_metadata
|
args.embed_output_metadata = embed_output_metadata
|
||||||
|
@ -487,8 +487,8 @@ def export_exec_settings( share, listen, check_for_updates, models_from_local_on
|
||||||
args.output_volume = output_volume
|
args.output_volume = output_volume
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
'share': args.share,
|
|
||||||
'listen': None if args.listen else args.listen,
|
'listen': None if args.listen else args.listen,
|
||||||
|
'share': args.share,
|
||||||
'low-vram':args.low_vram,
|
'low-vram':args.low_vram,
|
||||||
'check-for-updates':args.check_for_updates,
|
'check-for-updates':args.check_for_updates,
|
||||||
'models-from-local-only':args.models_from_local_only,
|
'models-from-local-only':args.models_from_local_only,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user