我正在尝试创建一个播放视频的机器人。
我已经为我的机器人实现了join
和leave
命令(用于语音通道),但似乎无法播放视频。我已经尝试将其放入我的主要bot文件中,并且可以很好地工作,但是我想将其制成齿轮,因此它是help命令下的单独类别,我无法弄清楚。
它下载了歌曲,并且一切正常,但是却无法播放视频并向我显示错误。
这是我的机器人代码:
@bot.command(pass_context=True, aliases=["p"])
async def play(self,ctx, url: str):
song_there = os.path.isfile("song.mp3")
try:
if song_there:
os.remove("song.mp3")
print("Removed old song file")
except PermissionError:
print("Trying to delete song file, but its being played.")
await ctx.send("ERROR: Music playing.")
return
await ctx.send("Getting everything ready...")
voice = get(bot.voice_clients, guild=ctx.guild)
ydl_opts = {
'format': 'bestaudio/best',
'default_search': 'auto',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
print("Downloading audio now\n")
ydl.download([url])
for file in os.listdir("./"):
if file.endswith(".mp3"):
name = file
print(f"Renamed File: {file}\n")
os.rename(file, "song.mp3")
voice.play(discord.FFmpegPCMAudio("song.mp3"), after=lambda e:print(f'{name} has finished playing'))
voice.source = discord.PCMVolumeTransformer(voice.source)
voice.source.valume = 0.07
nname = name.rsplit("-", 2)
await ctx.send(f"Playing: {nname}")
print("Playing\n")
这是它给我的错误:
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'NoneType' object has no attribute 'play'
答案 0 :(得分:0)
我有一个类似的问题,似乎声音在齿轮中不可用,因为它没有传递,因此需要声明。尝试在voice = ctx.voice_client
上方添加voice.play(...)
。