p_for_power
This commit is contained in:
parent
4e767b7268
commit
d4372d0595
16 changed files with 24 additions and 154 deletions
|
|
@ -1,13 +1,13 @@
|
|||
from django.core.management.base import BaseCommand
|
||||
|
||||
from ...render import generate_clips
|
||||
from ...render import generate_clips, default_prefix
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
help = 'generate symlinks to clips and clips.json'
|
||||
|
||||
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('--prefix', action='store', dest='prefix', default=default_prefix, help='prefix to build clips in')
|
||||
|
||||
def handle(self, **options):
|
||||
return generate_clips(options)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue