Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ruslanmv
/
Youtube-Video-Translator
like
20
Running
App
Files
Files
Community
6
Fetching metadata from the HF Docker repository...
ruslanmv
commited on
Feb 4
Commit
1ed19bc
·
verified
·
1 Parent(s):
9e83aac
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-1
app.py
CHANGED
Viewed
@@ -85,7 +85,9 @@ def download_video(url):
85
86
return None
87
88
-
89
90
91
85
86
return None
87
88
+
# Example usage
89
+
url = "https://www.youtube.com/watch?v=uLVRZE8OAI4"
90
+
download_video_like_human(url)
91
92
93