discord.py 嵌入 youtube 视频而无需粘贴链接

2022-01-15 00:00:00 python youtube discord.py embed

问题描述

我正在玩一个 discord.py 机器人,我几乎已经完成了我需要的所有工作(目前),但我终其一生都无法弄清楚如何使用 Embed 嵌入 YouTube 视频().

I am playing around with a discord.py bot, I have pretty much everything working that I need (at this time), but I can't for the life of me figure out how to embed a YouTube video using Embed().

我真的没有任何代码可以发布,因为它们都没有正常工作.

I don't really have any code to post per-say, as none of it has worked correctly.

注意:我尝试过到处搜索(这里 + 网络),我看到很多关于嵌入图像的信息,效果很好.

Note: I've tried searching everywhere (here + web), I see plenty of info on embedding images which works great.

我确实在 discord API 中看到了嵌入视频的详细信息,以及 discord.py 的 API 文档;但没有明确的例子说明如何实现它.

I do see detail in the discord API for embedding video, as well as the API Documentation for discord.py; but no clear example of how to pull it off.

我正在使用命令(我正在开发的模块)

I am using commands (the module I am working on as a cog)

任何帮助将不胜感激.

环境:

  • Discord.py 版本:0.16.11
  • Python:3.5.2
  • 平台:OS X
  • 虚拟环境:是的

解决方案

不幸的是,您所要求的是不可能的,因为 Discord API 不允许您在嵌入中设置自定义视频.

What you are asking for is unfortunately impossible, since Discord API does not allow you to set custom videos in embeds.

相关文章