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