Handle unknown videos

This commit is contained in:
MMaker 2025-02-25 18:12:13 -05:00
parent 8ebacc84b0
commit c456200ae0
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

7
app.py
View File

@ -260,6 +260,11 @@ def proxy(video_id):
# Not in cache or cache expired; fetch from nicovideo.jp
real_url = f"https://www.nicovideo.jp/watch/{video_id}"
params, soup = get_data(video_id, real_url)
if not params and not soup:
logger.error(f"Failed to retrieve data for video ID '{video_id}'")
return Response("Video not found", status=404)
thumbnail_url = (
params["video"]["thumbnail"].get("ogp") or
params["video"]["thumbnail"].get("player") or
@ -282,7 +287,7 @@ def proxy(video_id):
logger.info(f"Queued video ID {video_id} for download")
cdn_video_url = get_cdn_url(video_id)
og_tags = soup.find_all("meta", property=lambda x: x) # type: ignore
og_tags = soup.find_all("meta", property=lambda x: x)
og_video_width = None
og_video_height = None
for tag in og_tags: