mirror of
https://github.com/majmongoose/PageBot.git
synced 2024-11-05 01:01:17 -05:00
Update pagebot.py
This commit is contained in:
parent
708cd6ae71
commit
d49030320e
@ -11,14 +11,12 @@ from watchdog.events import FileSystemEventHandler
|
||||
|
||||
class MyHandler(FileSystemEventHandler):
|
||||
def on_created(self, event):
|
||||
print("New Created!")
|
||||
if event.is_directory:
|
||||
print("Was a directory")
|
||||
return
|
||||
filepath = event.src_path
|
||||
filename, file_extension = os.path.splitext(filepath)
|
||||
if file_extension.lower() == '.mp3':
|
||||
print("Was an MP3!")
|
||||
print("New MP3!")
|
||||
mp4_file = convert_to_mp4(filepath)
|
||||
client.loop.create_task(upload_to_discord(mp4_file))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user