This commit is contained in:
Daniel Molkentin 2016-04-09 19:39:29 +02:00
parent 6b1825c94b
commit 2f7e637b18
2 changed files with 551 additions and 2 deletions

View file

@ -69,7 +69,7 @@ def tasks(queue, args):
# generate a task description and put them into the queue
queue.put(Rendertask(
infile = 'intro.svg',
outfile = str(event['id'])+".dv",
outfile = str(event['id'])+".ts",
sequence = introFrames,
parameters = {
'$id': event['id'],
@ -82,6 +82,6 @@ def tasks(queue, args):
# place a task for the outro into the queue
queue.put(Rendertask(
infile = 'outro.svg',
outfile = 'outro.dv',
outfile = 'outro.ts',
sequence = outroFrames
))