oItsMineZ commited on
Commit
f6cf01c
·
verified ·
1 Parent(s): 9a4dbd0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +107 -0
app.py CHANGED
@@ -1032,6 +1032,113 @@ def GradioSetup(UTheme=gr.themes.Soft()):
1032
  interactive=True,
1033
  )
1034
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1035
  with gr.Accordion(label="f0method8", visible=False): #Don't Remove
1036
  with gr.Row():
1037
  with gr.Column():
 
1032
  interactive=True,
1033
  )
1034
 
1035
+ # Advanced batch settings container
1036
+ with gr.Row(visible=False) as advanced_settings_batch: # Initially hidden
1037
+ with gr.Row(label = "Advanced Settings", open = False):
1038
+ with gr.Column():
1039
+ file_index3 = gr.Textbox(
1040
+ label="Feature search database file path:",
1041
+ value="",
1042
+ interactive=True,
1043
+ )
1044
+
1045
+ f0method1 = gr.Radio(
1046
+ label="Select the pitch extraction algorithm:",
1047
+ choices=["pm", "harvest", "crepe", "rmvpe"],
1048
+ value="rmvpe",
1049
+ interactive=True,
1050
+ )
1051
+ f0_autotune = gr.Checkbox(
1052
+ label="Enable autotune",
1053
+ interactive=True,
1054
+ )
1055
+ filter_radius1 = gr.Slider(
1056
+ minimum=0,
1057
+ maximum=7,
1058
+ label="If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness.",
1059
+ value=3,
1060
+ step=1,
1061
+ interactive=True,
1062
+ )
1063
+
1064
+ with gr.Row(visible=False):
1065
+ format1 = gr.Radio(
1066
+ label="Export file format",
1067
+ choices=["wav", "flac", "mp3", "m4a"],
1068
+ value="wav",
1069
+ interactive=True,
1070
+ )
1071
+
1072
+ with gr.Column(visible=False):
1073
+ resample_sr1 = gr.Slider(
1074
+ minimum=0,
1075
+ maximum=48000,
1076
+ label="Resample the output audio in post-processing to the final sample rate. Set to 0 for no resampling:",
1077
+ value=0,
1078
+ step=1,
1079
+ interactive=True,
1080
+ )
1081
+ rms_mix_rate1 = gr.Slider(
1082
+ minimum=0,
1083
+ maximum=1,
1084
+ label="Use the volume envelope of the input to replace or mix with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is used:",
1085
+ value=1,
1086
+ interactive=True,
1087
+ )
1088
+ protect1 = gr.Slider(
1089
+ minimum=0,
1090
+ maximum=0.5,
1091
+ label="Protect voiceless consonants and breath sounds to prevent artifacts such as tearing in electronic music. Set to 0.5 to disable. Decrease the value to increase protection, but it may reduce indexing accuracy:",
1092
+ value=0.33,
1093
+ step=0.01,
1094
+ interactive=True,
1095
+ )
1096
+ vc_output3 = gr.Textbox(label="Output information:", visible=False)
1097
+ but1 = gr.Button("Convert", variant="primary", visible=False)
1098
+ but1.click(
1099
+ vc.vc_multi,
1100
+ [
1101
+ spk_item,
1102
+ dir_input,
1103
+ opt_input,
1104
+ inputs,
1105
+ vc_transform1,
1106
+ f0method1,
1107
+ file_index3,
1108
+ file_index4,
1109
+ index_rate2,
1110
+ filter_radius1,
1111
+ resample_sr1,
1112
+ rms_mix_rate1,
1113
+ protect1,
1114
+ format1,
1115
+ crepe_hop_length,
1116
+ minpitch_slider if (not rvc_globals.NotesOrHertz) else minpitch_txtbox,
1117
+ maxpitch_slider if (not rvc_globals.NotesOrHertz) else maxpitch_txtbox,
1118
+ f0_autotune
1119
+ ],
1120
+ [vc_output3],
1121
+ )
1122
+
1123
+ sid0.change(
1124
+ fn=vc.get_vc,
1125
+ inputs=[sid0, protect0, protect1],
1126
+ outputs=[spk_item, protect0, protect1],
1127
+ )
1128
+ if not sid0.value == '':
1129
+ spk_item, protect0, protect1 = vc.get_vc(sid0.value, protect0, protect1)
1130
+
1131
+ # Function to toggle advanced settings
1132
+ def toggle_advanced_settings_batch(checkbox):
1133
+ return {"visible": checkbox, "__type__": "update"}
1134
+
1135
+ # Attach the change event
1136
+ advanced_settings_batch_checkbox.change(
1137
+ fn=toggle_advanced_settings_batch,
1138
+ inputs=[advanced_settings_batch_checkbox],
1139
+ outputs=[advanced_settings_batch]
1140
+ )
1141
+
1142
  with gr.Accordion(label="f0method8", visible=False): #Don't Remove
1143
  with gr.Row():
1144
  with gr.Column():