mirror of
https://github.com/majmongoose/PageBot.git
synced 2026-08-26 21:45:28 -04:00
163 lines
5.1 KiB
Python
163 lines
5.1 KiB
Python
#!/usr/bin/python3
|
|
import asyncio
|
|
import discord
|
|
import os
|
|
import subprocess
|
|
import time
|
|
import secrets_file
|
|
import threading
|
|
from watchdog.observers import Observer
|
|
from watchdog.events import FileSystemEventHandler
|
|
import speech_recognition as sr
|
|
|
|
def wait_for_file_ready(filepath, stable_seconds=2, timeout=60):
|
|
elapsed = 0
|
|
last_size = -1
|
|
stable_time = 0
|
|
while elapsed < timeout:
|
|
try:
|
|
size = os.path.getsize(filepath)
|
|
except OSError:
|
|
return False
|
|
if size == last_size:
|
|
stable_time += 1
|
|
if stable_time >= stable_seconds:
|
|
return True
|
|
else:
|
|
stable_time = 0
|
|
last_size = size
|
|
time.sleep(1)
|
|
elapsed += 1
|
|
return False
|
|
|
|
last_file_time = time.time()
|
|
|
|
class MyHandler(FileSystemEventHandler):
|
|
def on_created(self, event):
|
|
global last_file_time
|
|
if event.is_directory:
|
|
return
|
|
last_file_time = time.time()
|
|
filepath = event.src_path
|
|
filename, file_extension = os.path.splitext(filepath)
|
|
if file_extension.lower() == '.amr':
|
|
wait_for_file_ready(filepath)
|
|
os.remove(filepath)
|
|
print("Removing AMR.")
|
|
if file_extension.lower() == '.mp3':
|
|
print("New MP3!")
|
|
text = ""
|
|
if secrets_file.speech_to_text:
|
|
print("Converting To Text")
|
|
text = convert_to_text(filepath, filename)
|
|
print("Converting to MP4")
|
|
mp4_file = convert_to_mp4(filepath)
|
|
print("Sending to Discord")
|
|
asyncio.run_coroutine_threadsafe(upload_to_discord(mp4_file, text), client.loop)
|
|
|
|
def convert_to_mp4(mp3_file):
|
|
try:
|
|
wait_for_file_ready(mp3_file)
|
|
mp4_file = os.path.splitext(mp3_file)[0] + '.mp4'
|
|
subprocess.run([
|
|
'ffmpeg', '-loop', '1',
|
|
'-i', secrets_file.image_path,
|
|
'-i', mp3_file,
|
|
'-c:a', 'aac', '-b:a', '192k',
|
|
'-c:v', 'libx264', '-pix_fmt', 'yuv420p',
|
|
'-shortest', mp4_file
|
|
])
|
|
os.remove(mp3_file)
|
|
return mp4_file
|
|
except Exception as e:
|
|
print(f"Error during conversion: {e}")
|
|
return None
|
|
|
|
def convert_to_text(mp3_path, mp3_name):
|
|
print(mp3_path)
|
|
try:
|
|
wav_file = f"{mp3_name}.wav"
|
|
subprocess.run(['ffmpeg', '-i', mp3_path, wav_file])
|
|
r = sr.Recognizer()
|
|
with sr.AudioFile(wav_file) as source:
|
|
data = r.record(source)
|
|
text = r.recognize_google(data)
|
|
os.remove(wav_file)
|
|
return text
|
|
except Exception as e:
|
|
print(f"Error during conversion: {e}")
|
|
return ""
|
|
|
|
async def upload_to_discord(mp4_file, text):
|
|
if mp4_file is None:
|
|
print("Conversion failed. Skipping upload.")
|
|
return
|
|
channel = client.get_channel(secrets_file.channel_id)
|
|
if channel:
|
|
filename = os.path.basename(mp4_file)
|
|
with open(mp4_file, 'rb') as f:
|
|
await channel.send(filename, file=discord.File(f))
|
|
if secrets_file.delete_after_upload:
|
|
os.remove(mp4_file)
|
|
if text != "":
|
|
await channel.send(f"The following text was transcoded from the recording: \n{text}")
|
|
role_name = filename.split('-', 1)[0].strip()
|
|
role = discord.utils.get(channel.guild.roles, name=role_name)
|
|
if role:
|
|
await channel.send(f"{role.mention} {secrets_file.notify_text}")
|
|
else:
|
|
print(f"Role '{role_name}' not found.")
|
|
else:
|
|
print(f"Could not find channel with ID {secrets_file.channel_id}")
|
|
|
|
TTD_TIMEOUT = getattr(secrets_file, 'ttd_timeout', 900)
|
|
|
|
def launch_and_watch(program_path):
|
|
global last_file_time
|
|
program_directory = os.path.dirname(program_path)
|
|
while True:
|
|
last_file_time = time.time()
|
|
process = subprocess.Popen(program_path, cwd=program_directory)
|
|
while True:
|
|
try:
|
|
process.wait(timeout=30)
|
|
break
|
|
except subprocess.TimeoutExpired:
|
|
if time.time() - last_file_time > TTD_TIMEOUT:
|
|
print("TTD appears to have locked up (no new files in 15 minutes). Restarting...")
|
|
process.kill()
|
|
process.wait()
|
|
break
|
|
if process.returncode != 0:
|
|
print("TTD has crashed. Relaunching...")
|
|
else:
|
|
print("TTD has exited normally.")
|
|
break
|
|
time.sleep(2)
|
|
|
|
if __name__ == "__main__":
|
|
observer = Observer()
|
|
|
|
intents = discord.Intents.default()
|
|
intents.message_content = True
|
|
client = discord.Client(intents=intents)
|
|
|
|
@client.event
|
|
async def on_ready():
|
|
print(f'We have logged in as {client.user}')
|
|
|
|
event_handler = MyHandler()
|
|
observer.schedule(event_handler, secrets_file.watch_folder, recursive=False)
|
|
observer.start()
|
|
|
|
if secrets_file.ttd_path != "":
|
|
watchdog_thread = threading.Thread(target=launch_and_watch, args=(secrets_file.ttd_path,), daemon=True)
|
|
watchdog_thread.start()
|
|
|
|
try:
|
|
client.run(secrets_file.key)
|
|
finally:
|
|
observer.stop()
|
|
observer.join()
|
|
|