dj86 commited on
Commit
579143c
1 Parent(s): f389441

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -291,8 +291,15 @@ with gr.Blocks(css=css) as demo:
291
 
292
  with gr.Row():
293
  with gr.Column():
294
- gr.Markdown("Step 1: 请在页面最左下方选取视频", elem_id="hint")
295
  video_inp = gr.Video(label="video_input")
 
 
 
 
 
 
 
 
296
 
297
  #with gr.Row():
298
  # video_id = gr.Textbox(value="", placeholder="Download video url", show_label=False)
@@ -314,13 +321,7 @@ with gr.Blocks(css=css) as demo:
314
  vlog_outp = gr.Textbox(label="Document output", lines=50)
315
  total_tokens_str = gr.Markdown(elem_id="total_tokens_str")
316
 
317
- gr.Markdown("请点击下方视频(任意选择一个视频进行播放)", elem_id="hint")
318
- examples = gr.Examples(
319
- examples=[
320
- ["./BV11H4y1F7uH.mp4"],
321
- ],
322
- inputs=[video_inp],
323
- )
324
 
325
  gr.HTML('''<br><br><br><center>You can duplicate this Space to skip the queue:<a href="https://huggingface.co/spaces/anzorq/chatgpt-demo?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a><br></center>''')
326
 
 
291
 
292
  with gr.Row():
293
  with gr.Column():
 
294
  video_inp = gr.Video(label="video_input")
295
+
296
+ gr.Markdown("Step 1: 请在下方选取视频", elem_id="hint")
297
+ examples = gr.Examples(
298
+ examples=[
299
+ ["./BV11H4y1F7uH.mp4"],
300
+ ],
301
+ inputs=[video_inp],
302
+ )
303
 
304
  #with gr.Row():
305
  # video_id = gr.Textbox(value="", placeholder="Download video url", show_label=False)
 
321
  vlog_outp = gr.Textbox(label="Document output", lines=50)
322
  total_tokens_str = gr.Markdown(elem_id="total_tokens_str")
323
 
324
+
 
 
 
 
 
 
325
 
326
  gr.HTML('''<br><br><br><center>You can duplicate this Space to skip the queue:<a href="https://huggingface.co/spaces/anzorq/chatgpt-demo?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a><br></center>''')
327