Omnibus commited on
Commit
c173614
·
1 Parent(s): 05af1d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,7 +9,7 @@ def dl(inp):
9
  try:
10
  inp_out=inp.replace("https://","")
11
  inp_out=inp_out.replace("/","_").replace(".","_")
12
- #os.system(f'yt-dlp "{inp}" --trim-filenames 100 -o "{inp_out}.mp4"')
13
  out = f"{inp_out}.mp4"
14
  try:
15
  with open(f"{inp_out}.info.json", "r") as f:
@@ -30,7 +30,7 @@ with gr.Blocks() as app:
30
  with gr.Column():
31
  outp_vid=gr.Video()
32
  with gr.Column():
33
- outp_files=gr.Textbox()
34
- go_btn.click(dl,inp_url,outp_files)
35
 
36
  app.launch()
 
9
  try:
10
  inp_out=inp.replace("https://","")
11
  inp_out=inp_out.replace("/","_").replace(".","_")
12
+ os.system(f'yt-dlp "{inp}" --trim-filenames 100 -o "{inp_out}.mp4"')
13
  out = f"{inp_out}.mp4"
14
  try:
15
  with open(f"{inp_out}.info.json", "r") as f:
 
30
  with gr.Column():
31
  outp_vid=gr.Video()
32
  with gr.Column():
33
+ outp_file=gr.Textbox()
34
+ go_btn.click(dl,inp_url,outp_file)
35
 
36
  app.launch()