abrar-adnan commited on
Commit
c66acef
1 Parent(s): 761f4da

remvoed examples

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -6,13 +6,10 @@ def video_identity(video):
6
  return video
7
 
8
 
9
- demo = gr.Interface(video_identity,
10
- gr.Text(),
11
- "playable_video",
12
- examples=[
13
- os.path.join(os.path.dirname(__file__),
14
- "video/video_sample.mp4")],
15
- cache_examples=True)
16
 
17
  if __name__ == "__main__":
18
  demo.launch()
 
6
  return video
7
 
8
 
9
+ demo = gr.Interface(video_identity,
10
+ inputs= gr.Video(),
11
+ outputs = gr.Text()
12
+ )
 
 
 
13
 
14
  if __name__ == "__main__":
15
  demo.launch()