Spaces:
Sleeping
Sleeping
Add video download
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def remove_downloaded_videos():
|
|
21 |
def search(query):
|
22 |
remove_downloaded_videos() # Remove previously downloaded videos
|
23 |
shorts = weaviate_explorer.explore(query)
|
24 |
-
download_url = f"https://drive.google.com/uc?id={shorts[0]['link'][-2]}"
|
25 |
video_path = gdown.download(download_url, output=downloads_dir)
|
26 |
video_player.value = video_path
|
27 |
return video_player, "\n\n".join([f"{r['title']}\n{r['link']}" for r in shorts])
|
|
|
21 |
def search(query):
|
22 |
remove_downloaded_videos() # Remove previously downloaded videos
|
23 |
shorts = weaviate_explorer.explore(query)
|
24 |
+
download_url = f"https://drive.google.com/uc?id={shorts[0]['link'].split('/')[-2]}"
|
25 |
video_path = gdown.download(download_url, output=downloads_dir)
|
26 |
video_player.value = video_path
|
27 |
return video_player, "\n\n".join([f"{r['title']}\n{r['link']}" for r in shorts])
|