import asyncio
import discord
import youtube_dl
Suppress noise about console usage from errors
youtube_dl.utils.bug_reports_message = lambda: ''
ytdl_format_options = {
'format': 'bestaudio/best',
'outtmpl': '%(extractor)s-%(id)s-%(title)s.%(ext)s',
'restrictfilenames': True,
'noplaylist': True,
'nocheckcertificate': True,
'ignoreerrors': False,
'logtostderr': False,
'quiet': True,
'no_warnings': True,
'default_search': 'auto',
'source_address': '0.0.0.0' # bind to ipv4 since ipv6 addresses cause issues sometimes
}
ffmpeg_options = {
'options': '-vn'
}
ytdl = youtube_dl.YoutubeDL(ytdl_format_options)
class YTDLSource(discord.PCMVolumeTransformer):
def init(self, source, *, data, volume=0.5):
super().init(source, volume)
self.data = data
self.title = data.get('title')
self.url = data.get('url')
@classmethod
async def from_url(cls, url, *, loop=None, stream=False):
loop = loop or asyncio.get_event_loop()
data = await loop.run_in_executor(None, lambda: ytdl.extract_info(url, download=not stream))
if 'entries' in data:
take first item from a playlist
data = data['entries'][0]
filename = data['url'] if stream else ytdl.prepare_filename(data)
return cls(discord.FFmpegPCMAudio(filename, **ffmpeg_options), data=data)
client = discord.Client()
@client.event
async def on_message(message: discord.Message):
メッセージの送信者がbotだった場合は無視する
if message.author.bot:
return
if message.content == "!join":
if message.author.voice is None:
await message.channel.send("あなたはボイスチャンネルに接続していません。")
return
ボイスチャンネルに接続する
await message.author.voice.channel.connect()
await message.channel.send("接続しました。")
elif message.content == "!leave":
if message.guild.voice_client is None:
await message.channel.send("接続していません。")
return
切断する
await message.guild.voice_client.disconnect()
await message.channel.send("切断しました。")
elif message.content.startswith("!play "):
if message.guild.voice_client is None:
await message.channel.send("接続していません。")
return
再生中の場合は再生しない
if message.guild.voice_client.is_playing():
await message.channel.send("再生中です。")
return
url = message.content[6:]
youtubeから音楽をダウンロードする
player = await YTDLSource.from_url(url, loop=client.loop)
再生する
await message.guild.voice_client.play(player)
await message.channel.send('{} を再生します。'.format(player.title))
elif message.content == "!stop":
if message.guild.voice_client is None:
await message.channel.send("接続していません。")
return
再生中ではない場合は実行しない
if not message.guild.voice_client.is_playing():
await message.channel.send("再生していません。")
return
message.guild.voice_client.stop()
await message.channel.send("ストップしました。")
どうですか?難しいですが...どっか間違ってるかも
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/25 08:17
2020/06/25 10:01
2020/06/25 10:06
2020/06/25 14:33
2020/06/25 15:01 編集
2020/06/25 15:08
2020/06/25 22:55
2020/06/26 09:19
退会済みユーザー
2021/05/25 12:28
退会済みユーザー
2021/05/25 12:28