Spaces:
Running
Running
Update .html
Browse files
.html
CHANGED
@@ -60,29 +60,29 @@
|
|
60 |
<span id="targetError" class="error"></span>
|
61 |
|
62 |
<label for="diffusion_steps">Diffusion Steps (Integer, Required):</label>
|
63 |
-
<input type="number" id="diffusion_steps" name="diffusion_steps" min="1" step="1" required>
|
64 |
<span id="stepsError" class="error"></span>
|
65 |
|
66 |
<label for="length_adjust">Length Adjust (Float, Optional):</label>
|
67 |
-
<input type="number" id="length_adjust" name="length_adjust" step="0.01" required>
|
68 |
|
69 |
<label for="inference_cfg_rate">Inference CFG Rate (Float, Optional):</label>
|
70 |
-
<input type="number" id="inference_cfg_rate" name="inference_cfg_rate" step="0.01" required>
|
71 |
|
72 |
<label for="f0_condition">F0 Condition (Yes/No):</label>
|
73 |
<select id="f0_condition" name="f0_condition" required>
|
74 |
<option value="true">Yes</option>
|
75 |
-
<option value="false">No</option>
|
76 |
</select>
|
77 |
|
78 |
<label for="auto_f0_adjust">Auto F0 Adjust (Yes/No):</label>
|
79 |
<select id="auto_f0_adjust" name="auto_f0_adjust" required>
|
80 |
-
<option value="true">Yes</option>
|
81 |
<option value="false">No</option>
|
82 |
</select>
|
83 |
|
84 |
<label for="pitch_shift">Pitch Shift (Integer, Optional):</label>
|
85 |
-
<input type="number" id="pitch_shift" name="pitch_shift" step="1" required>
|
86 |
|
87 |
<button type="submit">Convert</button>
|
88 |
</form>
|
@@ -145,4 +145,4 @@
|
|
145 |
</script>
|
146 |
|
147 |
</body>
|
148 |
-
</html>
|
|
|
60 |
<span id="targetError" class="error"></span>
|
61 |
|
62 |
<label for="diffusion_steps">Diffusion Steps (Integer, Required):</label>
|
63 |
+
<input type="number" id="diffusion_steps" name="diffusion_steps" min="1" step="1" value="25" required>
|
64 |
<span id="stepsError" class="error"></span>
|
65 |
|
66 |
<label for="length_adjust">Length Adjust (Float, Optional):</label>
|
67 |
+
<input type="number" id="length_adjust" name="length_adjust" step="0.01" value="1" required>
|
68 |
|
69 |
<label for="inference_cfg_rate">Inference CFG Rate (Float, Optional):</label>
|
70 |
+
<input type="number" id="inference_cfg_rate" name="inference_cfg_rate" step="0.01" value="0.7" required>
|
71 |
|
72 |
<label for="f0_condition">F0 Condition (Yes/No):</label>
|
73 |
<select id="f0_condition" name="f0_condition" required>
|
74 |
<option value="true">Yes</option>
|
75 |
+
<option value="false" seleced>No</option>
|
76 |
</select>
|
77 |
|
78 |
<label for="auto_f0_adjust">Auto F0 Adjust (Yes/No):</label>
|
79 |
<select id="auto_f0_adjust" name="auto_f0_adjust" required>
|
80 |
+
<option value="true" seleced>Yes</option>
|
81 |
<option value="false">No</option>
|
82 |
</select>
|
83 |
|
84 |
<label for="pitch_shift">Pitch Shift (Integer, Optional):</label>
|
85 |
+
<input type="number" id="pitch_shift" name="pitch_shift" step="1" value="0" required>
|
86 |
|
87 |
<button type="submit">Convert</button>
|
88 |
</form>
|
|
|
145 |
</script>
|
146 |
|
147 |
</body>
|
148 |
+
</html>
|