Spaces:
Runtime error
Runtime error
File size: 421 Bytes
b4d7fed 7f88dd7 b4d7fed 7f88dd7 b4d7fed 7f88dd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#from __future__ import unicode_literals
#import youtube_dl as yt
import gradio as gr
import yt_dlp
import os
def dl(inp):
out = None
os.system('yt-dlp "https://twitter.com/TheTNHoller/status/1690375748643614720" --trim-filenames 100')
return out
with gr.Blocks() as app:
inp_url = gr.Textbox()
go_btn = gr.Button()
outp_vid=gr.Video()
go_btn.click(dl,inp_url,outp_vid)
app.launch()
|