if 'entries' in info:
for i in info['entries']:
URL = i['formats'][0]['url']
player = FFmpegPCMAudio(URL, **FFMPEG_OPTIONS)
queue.append(player)
source = queue.pop(0)
voice.play(player, after = lambda e: play_next(ctx, source))
await ctx.send('playing song')