Python
4
Вклад в тег
@bot.command()
async def play(self, ctx, url: str):
song_there = os.path.isfile('song.mp3')
try:
if song_there:
os.remove('song.mp3')
print('[Voice] Удаляю старый файл...')
except PermissionError:
print('[Voice] Не удалось удалить старый файл')
await ctx.send('Пожалуйста, ожидайте...')
voice = discord.utils.get(self.client.voice_clients, guild = ctx.guild)
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
print('[Voice] Загружаю музыку...')
ydl.download([url])
for file in os.listdir('./'):
if file.endswith('.mp3'):
name = file
print(f'[Voice] Переименовываю файл: {name}')
os.rename(file, 'song.mp3')
voice.play(discord.FFmpegPCMAudio('song.mp3'), after = lambda e: print(f'[Voice] {name} закончила свое проигрывание'))
voice.source = discord.PCMVolumeTransformer(voice.source)
voice.source.volume = 0.07
await ctx.send(f'Сейчас играет: {url}')
@client.command()
@commands.has_permissions( administrator = True )
async def bong( ctx ):
images = ['ссылка1', 'ссылка2', 'ссылка3'] # можно хоть бесконечно
emb = discord.Embed(description = f"{ctx.author.mention} **Жестко затянулся бонгом**")
url = random.choice(images)
emb.set_image(url)
await ctx.send(emb)
await ctx.send(embed=emb)
можно await ctx.send(emb)