pandora_t_for_time/management/commands/update_subtitles.py
2026-01-30 10:27:28 +01:00

19 lines
595 B
Python

import json
import os
import subprocess
from django.core.management.base import BaseCommand
from django.conf import settings
from ...render import update_subtitles
class Command(BaseCommand):
help = 'genrate kdenlive porject and render'
def add_arguments(self, parser):
parser.add_argument('--prefix', action='store', dest='prefix', default="/srv/t_for_time", help='prefix to build clips in')
parser.add_argument('--offset', action='store', dest='offset', default=None, help='inital offset in pi')
def handle(self, **options):
update_subtitles(options)