Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
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 |
-
|
34 |
-
go_btn.click(dl,inp_url,
|
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()
|