fiffkon21 updates

This commit is contained in:
derchris 2021-11-15 19:55:26 +01:00
parent ff01cff7c1
commit dc1ca779a8

View file

@ -1,4 +1,5 @@
#!/usr/bin/python3 #!/usr/bin/python3
# vim: tabstop=4 shiftwidth=4 expandtab
from renderlib import * from renderlib import *
from easing import * from easing import *
@ -96,6 +97,7 @@ def tasks(queue, params, idlist, skiplist):
# generate a task description and put them into the queue # generate a task description and put them into the queue
if int(event['id']) not in skiplist: if int(event['id']) not in skiplist:
print("processing id (%s [%s])" % (event['title'], event['id']))
queue.put(Rendertask( queue.put(Rendertask(
infile = 'intro.svg', infile = 'intro.svg',
outfile = str(event['id'])+".ts", outfile = str(event['id'])+".ts",
@ -108,6 +110,7 @@ def tasks(queue, params, idlist, skiplist):
} }
)) ))
# place a task for the outro into the queue # place a task for the outro into the queue
if not "out" in skiplist: if not "out" in skiplist:
queue.put(Rendertask( queue.put(Rendertask(