discord.py bot 不加载嵌入的视频

discord.py bot does not load videos in embed

嘿,我希望你有一个 gr8 时间我的 discord.py 机器人不加载它从 api 获取的视频数据我希望 discord.py 机器人不加载具有视频为 url 因为 bot 无法在嵌入中加载视频,而且这些视频令人作呕而且没人看。 附上一段代码:

    @commands.command(name='aww',
                      aliases=["aw", "cute", "cutepics"])
    async def aww(self, ctx):
        sub_submissions = reddit.subreddit('aww').hot()
        post_to_pick = random.randint(1, 100)
        for i in range(0, post_to_pick):
            submission = next(x for x in sub_submissions if not x.stickied)
        e = discord.Embed(
            title=f'Your request!',
            description=f'{submission.title}\n{submission.selftext}')
        e.set_image(url=submission.url)
        e.set_footer(text=f"OFC!Thank dove#1565 for this amazing quickie!? \nRequested by {ctx.author}")
        await ctx.send(embed=e)

我在代码中没有其他问题所以我使用 praw 从 api.

获取数据

你的要求是不可能的。 Discord 的 API 不允许您将视频附加到嵌入。