old intro (again)

This commit is contained in:
kleines Filmröllchen 2025-05-12 01:37:54 +02:00
parent 62f85e5956
commit 2363e305a8
Signed by: filmroellchen
SSH key fingerprint: SHA256:UMhcHaeI+VGsiUL2Drpw3aj1iRiQUlx8nxZqUPvoaVw
5 changed files with 101 additions and 140 deletions

View file

@ -5,7 +5,7 @@ from schedulelib import *
from easing import *
# URL to Schedule-XML
scheduleUrl = "https://cfp.ctbk.de/fsck-2024/schedule/export/schedule.xml"
scheduleUrl = "https://cfp.ctbk.de/fsck-2025/schedule/export/schedule.xml"
def introFrames(args):
@ -164,12 +164,12 @@ def debug():
def tasks(queue, args, idlist, skiplist):
# iterate over all events extracted from the schedule xml-export
for event in events(scheduleUrl):
if event["room"] not in ("Medientheater", "Vortragssaal", "Blauer Salon"):
print("skipping room %s (%s)" % (event["room"], event["title"]))
continue
if event["day"] not in ("0", "1", "2", "3", "4"):
print("skipping day %s" % (event["day"]))
continue
# if event["room"] not in ("Medientheater", "Vortragssaal", "Blauer Salon"):
# print("skipping room %s (%s)" % (event["room"], event["title"]))
# continue
# if event["day"] not in ("0", "1", "2", "3", "4"):
# print("skipping day %s" % (event["day"]))
# continue
if not (idlist == []):
if 000000 in idlist:
print("skipping id (%s [%s])" % (event["title"], event["id"]))
@ -191,14 +191,14 @@ def tasks(queue, args, idlist, skiplist):
)
)
# place a task for the outro into the queue
if not "out" in skiplist:
queue.put(
Rendertask(infile="outro.svg", outfile="outro.ts", sequence=outroFrames)
)
# # place a task for the outro into the queue
# if not "out" in skiplist:
# queue.put(
# Rendertask(infile="outro.svg", outfile="outro.ts", sequence=outroFrames)
# )
if not "pause" in skiplist:
# place the pause-sequence into the queue
queue.put(
Rendertask(infile="pause.svg", outfile="pause.ts", sequence=pauseFrames)
)
# if not "pause" in skiplist:
# # place the pause-sequence into the queue
# queue.put(
# Rendertask(infile="pause.svg", outfile="pause.ts", sequence=pauseFrames)
# )