From 660c0744504165a4a396dfb4d7a0acb3f29fd86d Mon Sep 17 00:00:00 2001 From: Elmon11 Date: Wed, 2 Dec 2020 22:37:21 +0100 Subject: [PATCH] deleted music.py - not needed --- commands/music.py | 77 ----------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 commands/music.py diff --git a/commands/music.py b/commands/music.py deleted file mode 100644 index ecdd0f3..0000000 --- a/commands/music.py +++ /dev/null @@ -1,77 +0,0 @@ -import discord -import datetime -import lavalink -import os - -from discord.ext import commands - - -class Music(commands.Cog): - def __init__(self, bot): - self.bot = bot - - @commands.command() - async def join(self, ctx): - vc = ctx.author.voice.channel - voiceClient = discord.utils.get(self.bot.voice_clients, guild=ctx.guild) - if voiceClient and voiceClient.is_connected(): - await voiceClient.move_to(vc) - print(f"[{datetime.datetime.utcnow().replace(microsecond=0)} INFO]: [Music] The bot has moved to {vc} in {ctx.guild.name}\n") - await ctx.send(f'Joined `{vc.name}`') - else: - await vc.connect() - print(f"[{datetime.datetime.utcnow().replace(microsecond=0)} INFO]: [Music] The bot has connected to {vc} in {ctx.guild.name}\n") - await ctx.send(f'Joined `{vc.name}`') - - @commands.command() - async def leave(self, ctx): - vc = ctx.author.voice.channel - voiceClient = discord.utils.get(self.bot.voice_clients, guild=ctx.guild) - - if voiceClient and voiceClient.is_connected(): - await voiceClient.disconnect() - await ctx.send(f'Left `{vc.name}`') - print(f"[{datetime.datetime.utcnow().replace(microsecond=0)} INFO]: [Music] The bot has disconnected from {vc.name} in {ctx.guild.name}\n") - else: - await ctx.send(f"{ctx.author.name.mention} you fat retard i'm not connected to a vc") - print(f'[{datetime.datetime.utcnow().replace(microsecond=0)} INFO]: [Music] {ctx.author} failed running: {ctx.message.content} in guild: {ctx.guild.name}') - # Not Working - @commands.command(aliases=['p', 'pla']) - async def play(self, ctx, url): - em = discord.Embed - em.title = 'Music' - song_there = os.path.isfile("song.mp3") - try: - if song_there: - os.remove("song.mp3") - print("Removed old song file") - except PermissionError: - print("Trying to delete song file, but it's being played") - em.description = 'Music is currently being played.' - em.colour = 0xFF0000 - await ctx.send(embed=em) - return - - voice = discord.utils.get(self.bot.voice_clients, guild=ctx.guild) - - - - for file in os.listdir("./"): - if file.endswith(".mp3"): - name = file - print(f"Renamed File: {file}\n") - os.rename(file, "song.mp3") - - voice.play(discord.FFmpegPCMAudio("song.mp3"), after=lambda e: print("Song done!")) - voice.source = discord.PCMVolumeTransformer(voice.source) - voice.source.volume = 0.07 - - - nname = name.rsplit("-", 2) - em.description = f"Playing: {nname[0]}" - em.colour = 0x00FF00 - await ctx.send(embed=em) - - -def setup(bot): - bot.add_cog(Music(bot))