file display
Browse files
main.py
CHANGED
@@ -97,7 +97,7 @@ def run():
|
|
97 |
webcam = gr.Interface(
|
98 |
fn=poses,
|
99 |
inputs= [gr.Video(source="webcam"), check_web],
|
100 |
-
outputs = gr.File(file_types='.mp4'), #gr.Video(),
|
101 |
title = 'Pose estimation',
|
102 |
description = 'Pose estimation on video',
|
103 |
allow_flagging=False
|
@@ -106,7 +106,7 @@ def run():
|
|
106 |
file = gr.Interface(
|
107 |
poses,
|
108 |
inputs = [gr.Video(source="upload"), check_file],
|
109 |
-
outputs = gr.File(file_types='.mp4'), #gr.PlayableVideo(),
|
110 |
allow_flagging=False
|
111 |
)
|
112 |
|
|
|
97 |
webcam = gr.Interface(
|
98 |
fn=poses,
|
99 |
inputs= [gr.Video(source="webcam"), check_web],
|
100 |
+
outputs = gr.File(file_types=['.mp4']), #gr.Video(),
|
101 |
title = 'Pose estimation',
|
102 |
description = 'Pose estimation on video',
|
103 |
allow_flagging=False
|
|
|
106 |
file = gr.Interface(
|
107 |
poses,
|
108 |
inputs = [gr.Video(source="upload"), check_file],
|
109 |
+
outputs = gr.File(file_types=['.mp4']), #gr.PlayableVideo(),
|
110 |
allow_flagging=False
|
111 |
)
|
112 |
|