Spaces:
Sleeping
Sleeping
add label to slider
Browse files
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 |
|