2023-10-08 11:19:05 +00:00
|
|
|
import json
|
|
|
|
import os
|
2023-10-09 19:29:11 +00:00
|
|
|
import subprocess
|
2023-10-08 11:19:05 +00:00
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
from ...render import compose, render
|
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2023-10-09 13:10:34 +00:00
|
|
|
help = 'genrate kdenlive porject and render'
|
2023-10-08 11:19:05 +00:00
|
|
|
|
|
|
|
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('--duration', action='store', dest='duration', default="150", help='target duration in seconds')
|
|
|
|
parser.add_argument('--offset', action='store', dest='offset', default="1024", help='inital offset in pi')
|
2023-10-09 19:29:11 +00:00
|
|
|
parser.add_argument('--no-video', action='store_true', dest='no_video', default=False, help='don\'t render video')
|
2023-10-08 11:19:05 +00:00
|
|
|
|
|
|
|
def handle(self, **options):
|
|
|
|
prefix = options['prefix']
|
|
|
|
target = int(options['duration'])
|
|
|
|
base = int(options['offset'])
|
|
|
|
|
|
|
|
with open(os.path.join(prefix, "clips.json")) as fd:
|
|
|
|
clips = json.load(fd)
|
|
|
|
scene = compose(clips, target=target, base=base)
|
2023-10-09 19:29:11 +00:00
|
|
|
timelines = render(prefix, scene, 'scene-%s-' % base)
|
2023-10-08 11:19:05 +00:00
|
|
|
with open(os.path.join(prefix, 'scene-%s.json' % base), 'w') as fd:
|
|
|
|
json.dump(scene, fd, indent=2, ensure_ascii=False)
|
2023-10-09 19:29:11 +00:00
|
|
|
if not options['no_video']:
|
|
|
|
for timeline in timelines:
|
2023-10-10 09:19:36 +00:00
|
|
|
ext = '.mp4'
|
|
|
|
if '-audio.kdenlive' in timeline:
|
|
|
|
ext = '.wav'
|
2023-10-09 19:29:11 +00:00
|
|
|
cmd = [
|
|
|
|
'xvfb-run', '-a',
|
|
|
|
'melt', timeline,
|
2023-10-10 09:19:36 +00:00
|
|
|
'-consumer', 'avformat:%s' % timeline.replace('.kdenlive', ext)
|
2023-10-09 19:29:11 +00:00
|
|
|
]
|
|
|
|
subprocess.call(cmd)
|
2023-10-10 09:19:36 +00:00
|
|
|
if ext == '.wav':
|
|
|
|
cmd = [
|
|
|
|
'ffmpeg', '-i',
|
|
|
|
timeline.replace('.kdenlive', ext),
|
|
|
|
timeline.replace('.kdenlive', '.mp4')
|
|
|
|
]
|
|
|
|
subprocess.call(cmd)
|
|
|
|
os.unlink(timeline.replace('.kdenlive', ext))
|
2023-10-09 13:10:34 +00:00
|
|
|
|