Gokul14's picture
Update app.py
d6aca98 verified
raw
history blame
No virus
359 Bytes
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)