Remove play button for videos not downloaded
This commit is contained in:
parent
070eed8f41
commit
df8537e811
6
app.py
6
app.py
@ -366,7 +366,11 @@ def proxy(video_id):
|
||||
og_tags_str = "\n".join(str(tag) for tag in og_tags if tag.get("property") not in ["og:site_name"])
|
||||
og_tags_str += '\n<meta content="ニコニコ動画" property="og:site_name"/>'
|
||||
og_tags_str += f'\n<link rel="alternate" href="{get_oembed_url(params)}" type="application/json+oembed" title="{video_id}"/>'
|
||||
if 'twitterbot' in request_user_agent:
|
||||
|
||||
# Discord seems to ignore video URLs when Twitter meta tags are present,
|
||||
# so in addition to including these when the User Agent is a Twitter bot,
|
||||
# we also include them when the video is too long to download in order to remove the play button.
|
||||
if 'twitterbot' in request_user_agent or not download_allowed:
|
||||
logger.info(f"{video_id}: Twitterbot detected - adding Twitter tags")
|
||||
og_tags_str += f'\n<meta content="{thumbnail_url}" property="twitter:image"/>'
|
||||
og_tags_str += '\n<meta content="summary_large_image" property="twitter:card"/>'
|
||||
|
Loading…
x
Reference in New Issue
Block a user