Skip to content

Commit

Permalink
fix: Increase pitch change range
Browse files Browse the repository at this point in the history
  • Loading branch information
SociallyIneptWeeb committed Aug 6, 2023
1 parent 25fa051 commit c666974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def pub_dl_autofill(pub_models, event: gr.SelectData):

with gr.Row():
song_input = gr.Text(label='Song Input', info='Link to a YouTube video or the full path to a local audio file.')
pitch = gr.Slider(-12, 12, value=0, step=1, label='Pitch Change', info='Pitch Change should be set to either -12, 0, or 12 to ensure the vocals are not out of tune.')
pitch = gr.Slider(-24, 24, value=0, step=1, label='Pitch Change', info='Pitch Change should be set to either -12, 0, or 12 (multiples of 12) to ensure the vocals are not out of tune.')

keep_files = gr.Checkbox(label='Keep intermediate files', info='Keep all audio files generated in the song_output/id directory, e.g. Isolated Vocals/Instrumentals. Leave unchecked to save space.')

Expand Down

0 comments on commit c666974

Please sign in to comment.