admin commited on
Commit
e26318c
·
1 Parent(s): 976c376

, show_share_button=False

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -76,10 +76,14 @@ if __name__ == "__main__":
76
  ),
77
  ],
78
  outputs=[
79
- gr.Video(label="Video download", show_download_button=True),
 
 
 
 
80
  gr.Textbox(label="Parsing time", show_copy_button=True),
81
  gr.Textbox(label="Video description", show_copy_button=True),
82
- gr.Image(label="Author avatar"),
83
  gr.Textbox(label="Author nickname", show_copy_button=True),
84
  gr.TextArea(label="Author signature", show_copy_button=True),
85
  ],
 
76
  ),
77
  ],
78
  outputs=[
79
+ gr.Video(
80
+ label="Video download",
81
+ show_download_button=True,
82
+ show_share_button=False,
83
+ ),
84
  gr.Textbox(label="Parsing time", show_copy_button=True),
85
  gr.Textbox(label="Video description", show_copy_button=True),
86
+ gr.Image(label="Author avatar", show_share_button=False),
87
  gr.Textbox(label="Author nickname", show_copy_button=True),
88
  gr.TextArea(label="Author signature", show_copy_button=True),
89
  ],