>>> current_users = ['YarosLav', 'MiSha', 'GrishA', 'MAsha', 'LilyA']
>>> current_users_lower = [user.lower() for user in current_users]
>>> current_users
['YarosLav', 'MiSha', 'GrishA', 'MAsha', 'LilyA']
>>> current_users_lower
['yaroslav', 'misha', 'grisha', 'masha', 'lilya']
vc = await channel.connect()
vc.play(discord.FFmpegPCMAudio('testing.mp3'), after=lambda e: print('done', e))
vc.is_playing()
vc.pause()
vc.resume()
vc.stop()