1. ホーム
  2. python

[解決済み] discordのリッチエンベッドでgifを埋め込む方法。

2022-02-17 16:38:39

質問

discord.pyを使ってdiscord botを作っているのですが、embedでgifを送る方法がわかりません。私は、ハグ、キス、ブープなどのコマンドを作成しようとしています。どうすればいいのでしょうか?


          embed1 = discord.Embed(title="this is a title", description="this is a description!", color=0x00ff00,)
        await message.channel.send(embed = embed1)```

解決方法は?

を使用することができます。 set_image() 関数に画像のURLを渡すと、埋め込み画像が設定されます。

embed = discord.Embed(title="Title", description="Description", color=0x00ff00)
embed.add_field(name="Field1", value="test", inline=False)
embed.set_image(url="https://url-to-your-picture.gif")
await message.channel.send(embed=embed)

参考文献