You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# tasks/audio.py
|
|
from celery import shared_task
|
|
from logbus.publisher import log
|
|
|
|
|
|
@shared_task(bind=True, queue="audio")
|
|
def text_to_audio(self, text_file):
|
|
log(f"[AUDIO] converting: {text_file}")
|
|
# placeholder for macOS "say"
|
|
return True
|