xmrt commited on
Commit
23334da
·
1 Parent(s): 8b9c723

file display

Browse files
Files changed (1) hide show
  1. main.py +2 -2
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