diff --git a/qtws2017/__init__.py b/qtws2017/__init__.py
new file mode 100644
index 0000000..f7e0164
--- /dev/null
+++ b/qtws2017/__init__.py
@@ -0,0 +1,186 @@
+#!/usr/bin/python
+
+import subprocess
+import os.path
+from renderlib import *
+from easing import *
+
+# URL to Schedule-XML
+scheduleUrl = 'schedule.xml'
+
+# For (really) too long titles
+titlemap = {
+ #
+}
+
+def bounce(i, min, max, frames):
+ if i == frames - 1:
+ return 0
+
+ if i <= frames/2:
+ return easeInOutQuad(i, min, max, frames/2)
+ else:
+ return max - easeInOutQuad(i - frames/2, min, max, frames/2)
+
+def introFrames(parameters):
+ move=50
+
+ # 3 Sekunde Text Fadein
+ frames = 2*fps
+ for i in range(0, frames):
+ yield (
+ ('title', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
+ ('speaker', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
+ ('company', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
+ )
+
+ # 2 Sekunden stehen lassen
+ frames = 3*fps
+ for i in range(0, frames):
+ yield []
+
+ # 3 Sekunde Text Fadeout
+ frames = 2*fps
+ for i in range(0, frames):
+ yield (
+ ('speaker', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
+ ('company', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
+ ('title', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
+ ('logo', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
+ )
+
+def pauseFrames(parameters):
+ frames = 25*3
+ for i in range(0, frames):
+ yield (
+ ('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
+ )
+
+ frames = 25*1
+ for i in range(0, frames):
+ yield (
+ ('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
+ )
+
+
+def outroFrames(p):
+ # 2 Sekunden stehen bleiben
+ frames = 2*fps
+ for i in range(0, frames):
+ yield (
+ ('timelocation', 'style', 'opacity', "%.4f" % 1),
+ ('videoby', 'style', 'opacity', "%.4f" % 0),
+ )
+ frames = 1*fps
+ for i in range(0, frames):
+ yield (
+ ('timelocation', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
+ ('videoby', 'style', 'opacity', "%.4f" % 0),
+ )
+ frames = 1*fps
+ for i in range(0, frames):
+ yield (
+ ('timelocation', 'style', 'opacity', "%.4f" % 0),
+ ('videoby', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
+ )
+ frames = 1*fps
+ for i in range(0, frames):
+ yield []
+
+
+def backgroundFrames(parameters):
+ frames = 25*3
+ for i in range(0, frames):
+ yield (
+ ('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
+ )
+
+ frames = 25*1
+ for i in range(0, frames):
+ yield (
+ ('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
+ )
+
+ frames = 20*fps
+ for i in range(0, frames):
+ xshift = 300 - ((i+1) * (300/frames))
+ yshift = 150 - ((i+1) * (150/frames))
+ yield(
+ ('pillgroup', 'attr', 'transform', 'translate(%.4f, %.4f)' % (xshift, yshift)),
+ )
+
+def debug():
+ render(
+ 'intro.svg',
+ '../intro.ts',
+ introFrames,
+ {
+ '$ID': 4711,
+ '$TITLE': "Long Long Long title is LONG",
+ '$COMPANY': 'Long Running Co',
+ '$SPEAKER': 'Dr. Dr. Prof. Dr. Long Long'
+ }
+ )
+
+# render(
+# 'pause.svg',
+# '../pause.ts',
+# pauseFrames
+# )
+#
+ render(
+ 'outro.svg',
+ '../outro.ts',
+ outroFrames
+ )
+
+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 ('Galerie', 'Saal (Main Hall)'):
+ print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
+ continue
+ if not (idlist==[]):
+ if 000000 in idlist:
+ print("skipping id (%s [%s])" % (event['title'], event['id']))
+ continue
+ if int(event['id']) not in idlist:
+ print("skipping id (%s [%s])" % (event['title'], event['id']))
+ continue
+
+ # generate a task description and put it into the queue
+ queue.put(Rendertask(
+ infile = 'intro.svg',
+ outfile = str(event['id'])+".ts",
+ sequence = introFrames,
+ parameters = {
+ '$ID': event['id'],
+ '$TITLE': event['title'],
+ '$SUBTITLE': event['subtitle'],
+ '$SPEAKER': event['personnames']
+ }
+ ))
+
+ # 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 the pause-sequence into the queue
+ if not "pause" in skiplist:
+ queue.put(Rendertask(
+ infile = 'pause.svg',
+ outfile = 'pause.ts',
+ sequence = pauseFrames
+ ))
+
+ # place the background-sequence into the queue
+ if not "bg" in skiplist:
+ queue.put(Rendertask(
+ infile = 'background.svg',
+ outfile = 'background.ts',
+ sequence = backgroundFrames
+ ))
diff --git a/qtws2017/artwork/background.jpg b/qtws2017/artwork/background.jpg
new file mode 100644
index 0000000..b01979c
Binary files /dev/null and b/qtws2017/artwork/background.jpg differ
diff --git a/qtws2017/background.svg b/qtws2017/artwork/background.svg
similarity index 100%
rename from qtws2017/background.svg
rename to qtws2017/artwork/background.svg
diff --git a/qtws2017/berlin_.jpg b/qtws2017/artwork/berlin_.jpg
similarity index 100%
rename from qtws2017/berlin_.jpg
rename to qtws2017/artwork/berlin_.jpg
diff --git a/qtws2017/artwork/intro.svg b/qtws2017/artwork/intro.svg
new file mode 100644
index 0000000..fbbb8b7
--- /dev/null
+++ b/qtws2017/artwork/intro.svg
@@ -0,0 +1,134 @@
+
+
+
+
diff --git a/qtws2017/artwork/outro.svg b/qtws2017/artwork/outro.svg
new file mode 100644
index 0000000..3b336c9
--- /dev/null
+++ b/qtws2017/artwork/outro.svg
@@ -0,0 +1,7127 @@
+
+
+
+