Aravindan commited on
Commit
882e489
·
1 Parent(s): 407b506

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -29,12 +29,7 @@ def video2Summarizer(link):
29
  return summarized_text
30
 
31
 
32
- iface = gr.Interface(fn = video2Summarizer,
33
- inputs = 'text',
34
- outputs = gr.outputs.Textbox(label = "Summarized output"),
35
- title = 'Video To Text Summarizer',
36
- description = 'Just give the url of the YouTube video, then the app will give you the summarized format of the video in 5 to 10 Min, its based on the video length what you have given. Use this example and try to run the same example by clicking that',
37
- examples = [['https://www.youtube.com/watch?v=kEN2Omq9mwk']]
38
  )
39
 
40
  iface.launch(inline = False)
 
29
  return summarized_text
30
 
31
 
32
+ iface = gr.Interface(fn = video2Summarizer, inputs = 'text', outputs = gr.outputs.Textbox(label = "Summarized output"), title = 'Video To Text Summarizer', description = 'Just give the url of the YouTube video, then the app will give you the summarized format of the video in 5 to 10 Min, its based on the video length what you have given. Use this example and try to run the same example by clicking that', examples = [['https://www.youtube.com/watch?v=kEN2Omq9mwk']]
 
 
 
 
 
33
  )
34
 
35
  iface.launch(inline = False)