r3gm commited on
Commit
4cd4045
·
verified ·
1 Parent(s): a21271c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -123,9 +123,10 @@ with gr.Blocks(title="Professional FPS Booster") as app:
123
  gr.Markdown("Control rendering parameters.")
124
 
125
  with gr.Row():
126
- scale_param = gr.Slider(
127
- minimum=0.1, maximum=1.0, value=1.0, step=0.1,
128
- label="📉 Render Scale",
 
129
  info="1.0 = Original Resolution. Reduce to 0.5 for faster processing on 4K content."
130
  )
131
  fps_param = gr.Number(
 
123
  gr.Markdown("Control rendering parameters.")
124
 
125
  with gr.Row():
126
+ scale_param = gr.Dropdown(
127
+ choices=[0.25, 0.5, 1.0, 2.0, 4.0],
128
+ value=1.0,
129
+ label="📉 Render Scale",
130
  info="1.0 = Original Resolution. Reduce to 0.5 for faster processing on 4K content."
131
  )
132
  fps_param = gr.Number(