@nikto_211

Почему бот не находит канал голосовой, как исправить?

Как сделать так:
Есть два сервера, на первом сервере я пишу команду !j 797404661291679774 (id войс канала второго сервера)
То бот не находит канал выдает ошибку:
discord.ext.commands.errors.ChannelNotFound: Channel "797404661291679774" not found.
Но если я указываю ид голосового чата первого сервера, то бот подключается к каналу.
Как мне исправить код, чтобы я мог писать команду на первом сервере, а подключался к войсу другого сервера.
У меня self-bot discord.
Код самой команды @bot.command()
async def j(ctx, *, channel: discord.VoiceChannel):
await channel.connect()
Заранее благодарю за помощь.
  • Вопрос задан
  • 367 просмотров
Пригласить эксперта
Ответы на вопрос 1
@Pavlosik
@bot.event
async def on_voice_state_update(member, before, after):
channel = after.channel
bot_connection = member.guild.voice_client

if channel and member.id in friends:
if bot_connection:
await bot_connection.move_to(channel)
else:
await channel.connect()

if not channel and bot_connection:
await bot_connection.disconnect()

@bot.command()
async def yt(self, ctx, *, url):
"""Plays from a url (almost anything youtube_dl supports)"""

async with ctx.typing():
player = await YTDLSource.from_url(url, loop=self.bot.loop, stream=True)
ctx.voice_bot.play(player, after=lambda e: print('Player error: %s' % e) if e else None)

await ctx.send('Now playing: {}'.format(player.title))



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)

@bot.command(pass_context=True, brief="This will play a song 'play [url]'", aliases=['pl'])
async def play(ctx, url: str):
song_there = os.path.isfile("song.mp3")
try:
if song_there:
os.remove("song.mp3")
except PermissionError:
await ctx.send("Wait for the current playing music end or use the 'stop' command")
return
await ctx.send("Песня скачивается, пожалуста подождите, Скоро музыка будет играть...")
await ctx.message.add_reaction('⏯')
print("Музыка проигравается")


voice = get(bot.voice_clients, guild=ctx.guild)
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([url])
for file in os.listdir("./"):
if file.endswith(".mp3"):
os.rename(file, 'song.mp3')
voice.play(discord.FFmpegPCMAudio("song.mp3"))
voice.volume = 100
voice.is_playing()

@bot.command(pass_context=True, brief="Музыка остновлена", aliases=['l', 'le', 'lea'])
async def leave(ctx):
channel = ctx.message.author.voice.channel
voice = get(bot.voice_clients, guild=ctx.guild)
if voice and voice.is_connected():
await voice.disconnect()
await ctx.send(f"Left {channel}")
else:
await ctx.send("Музыка остновлена")

await ctx.message.add_reaction('')
Ответ написан
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы