Spaces:
Sleeping
Sleeping
File size: 359 Bytes
0ed1363 bc39353 0ed1363 bc39353 d6aca98 bc39353 946d1ea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from youtube_video import download_youtube_audio
import gradio as gr
def app(video_link):
video_path = download_youtube_audio(video_link)
return video_path
interface = gr.Interface(
fn=app,
inputs=gr.Textbox(label="Enter YouTube link 🔗 To Download Video⬇️ "),
outputs=gr.Video(label = "video_path")
)
interface.launch(debug=True) |