render .ts-files for in/outro

This commit is contained in:
MaZderMind 2016-06-16 20:55:51 +02:00
parent bb2f897ebe
commit f5aba21076

View file

@ -144,13 +144,13 @@ def tasks(queue, args):
# place a task for the outro into the queue # place a task for the outro into the queue
queue.put(Rendertask( queue.put(Rendertask(
infile = 'outro.svg', infile = 'outro.svg',
outfile = 'outro.dv', outfile = 'outro.ts',
sequence = outroFrames sequence = outroFrames
)) ))
# place the pause-sequence into the queue # place the pause-sequence into the queue
queue.put(Rendertask( queue.put(Rendertask(
infile = 'pause.svg', infile = 'pause.svg',
outfile = 'pause.dv', outfile = 'pause.ts',
sequence = pauseFrames sequence = pauseFrames
)) ))