Ignore hidden videos

This commit is contained in:
MMaker 2025-02-27 11:53:51 -05:00
parent 2ca6d6aa73
commit e6d7278624
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

5
app.py
View File

@ -299,6 +299,11 @@ def proxy(video_id):
logger.error(f"Failed to retrieve data for video ID '{video_id}'")
return Response("Video not found", status=404)
reason_code = params.get('reasonCode', '').upper()
if reason_code in ['HIDDEN_VIDEO']:
logger.warning(f"Video ID '{video_id}' is hidden")
return Response("Video not found", status=404)
thumbnail_url = (
params["video"]["thumbnail"].get("ogp") or
params["video"]["thumbnail"].get("player") or