vumichien commited on
Commit
513d5df
1 Parent(s): e4cf670

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -265,7 +265,6 @@ with demo:
265
  transcription_var = gr.Variable()
266
 
267
  with gr.Row():
268
- with gr.Column():
269
  gr.Markdown('''
270
  ### This space allows you to:
271
  ##### 1. Download youtube video with a given URL
@@ -274,16 +273,14 @@ with demo:
274
  ''')
275
  memory = psutil.virtual_memory()
276
  system_info = gr.Markdown(f"*Memory: {memory.total / (1024 * 1024 * 1024):.2f}GB, used: {memory.percent}%, available: {memory.available / (1024 * 1024 * 1024):.2f}GB*")
277
-
278
- with gr.Column():
279
  gr.Markdown('''
280
  ### You can test with some youtube links as below:
281
  ''')
282
  examples = gr.Examples(examples=
283
- [ "https://www.youtube.com/watch?v=j7BfEzAFuYc&t=32s",
284
- "https://www.youtube.com/watch?v=-UX0X45sYe4",
285
- "https://www.youtube.com/watch?v=7minSgqi-Gw"],
286
- label="Examples", inputs=[youtube_url_in])
287
 
288
 
289
  with gr.Row():
 
265
  transcription_var = gr.Variable()
266
 
267
  with gr.Row():
 
268
  gr.Markdown('''
269
  ### This space allows you to:
270
  ##### 1. Download youtube video with a given URL
 
273
  ''')
274
  memory = psutil.virtual_memory()
275
  system_info = gr.Markdown(f"*Memory: {memory.total / (1024 * 1024 * 1024):.2f}GB, used: {memory.percent}%, available: {memory.available / (1024 * 1024 * 1024):.2f}GB*")
 
 
276
  gr.Markdown('''
277
  ### You can test with some youtube links as below:
278
  ''')
279
  examples = gr.Examples(examples=
280
+ [ "https://www.youtube.com/watch?v=j7BfEzAFuYc&t=32s",
281
+ "https://www.youtube.com/watch?v=-UX0X45sYe4",
282
+ "https://www.youtube.com/watch?v=7minSgqi-Gw"],
283
+ label="Examples", inputs=[youtube_url_in])
284
 
285
 
286
  with gr.Row():