fffiloni commited on
Commit
b310045
·
1 Parent(s): f6894df

add label to slider

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ description = "Gradio demo of PyScene scenedetect, to automatically find every s
18
 
19
  # SET INPUTS
20
  video_input = gr.Video(source="upload", format="mp4", label="Video Sequence", mirror_webcam=False)
21
- threshold = gr.Slider(minimum=5.0, maximum=50.0, value=27.0)
22
 
23
  # —————————————————————————————————————————————————
24
 
 
18
 
19
  # SET INPUTS
20
  video_input = gr.Video(source="upload", format="mp4", label="Video Sequence", mirror_webcam=False)
21
+ threshold = gr.Slider(label="Threshold pixel comparaison: if exceeded, triggers a scene cut", minimum=5.0, maximum=50.0, value=27.0)
22
 
23
  # —————————————————————————————————————————————————
24