change fossgis generator to new word-wrapping system and module style
This commit is contained in:
parent
d19a8156b9
commit
e33532773d
5 changed files with 322 additions and 557 deletions
187
fossgis14/__init__.py
Normal file
187
fossgis14/__init__.py
Normal file
|
@ -0,0 +1,187 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: UTF-8 -*-
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'http://www.fossgis.de/konferenz/2014/programm/schedule.de.xml'
|
||||||
|
|
||||||
|
# For (really) too long titles
|
||||||
|
titlemap = {
|
||||||
|
708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def outroFrames():
|
||||||
|
# 5 Sekunden
|
||||||
|
|
||||||
|
# 2 Sekunden Fadein Text
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('banderole', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames) ),
|
||||||
|
('license', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunde Fadein Lizenz-Logo
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('banderole', 'style', 'opacity', 1),
|
||||||
|
('license', 'style', 'opacity', "%.4f" % (float(i)/frames))
|
||||||
|
)
|
||||||
|
|
||||||
|
# 1 Sekunde stehen bleiben
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('banderole', 'style', 'opacity', 1),
|
||||||
|
('license', 'style', 'opacity', 1)
|
||||||
|
)
|
||||||
|
|
||||||
|
def introFrames():
|
||||||
|
# 7 Sekunden
|
||||||
|
|
||||||
|
# 2 Sekunden Text 1
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('box', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
||||||
|
('url', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
||||||
|
('text1', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
||||||
|
('text2', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 1 Sekunde Fadeout Text 1
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('box', 'style', 'opacity', 1),
|
||||||
|
('url', 'style', 'opacity', 1),
|
||||||
|
('text1', 'style', 'opacity', "%.4f" % (1-(float(i)/frames))),
|
||||||
|
('text2', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden Text 2
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('box', 'style', 'opacity', 1),
|
||||||
|
('url', 'style', 'opacity', 1),
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames))
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden stehen bleiben
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('box', 'style', 'opacity', 1),
|
||||||
|
('url', 'style', 'opacity', 1),
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', 1)
|
||||||
|
)
|
||||||
|
|
||||||
|
def pauseFrames():
|
||||||
|
# 12 Sekunden
|
||||||
|
|
||||||
|
# 2 Sekunden Text1 stehen
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 1),
|
||||||
|
('text2', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden Fadeout Text1
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', "%.4f" % (1-easeOutCubic(i, 0, 1, frames))),
|
||||||
|
('text2', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden Fadein Text2
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames))
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden Text2 stehen
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', 1)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden Fadeout Text2
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', "%.4f" % (1-easeOutCubic(i, 0, 1, frames)))
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden Fadein Text1
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', "%.4f" % (easeOutCubic(i, 0, 1, frames))),
|
||||||
|
('text2', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
render(
|
||||||
|
'intro.svg',
|
||||||
|
'../intro.dv',
|
||||||
|
introFrames,
|
||||||
|
{
|
||||||
|
'$id': 667,
|
||||||
|
'$title': 'OpenJUMP - Überblick, Neuigkeiten, Zusammenarbeit/Schnittstellen mit proprietärer Software',
|
||||||
|
'$subtitle': 'Even more news about OpenJUMP',
|
||||||
|
'$personnames': 'Matthias Scholz'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
render(
|
||||||
|
'outro.svg',
|
||||||
|
'../outro.dv',
|
||||||
|
outroFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
render('pause.svg',
|
||||||
|
'../pause.dv',
|
||||||
|
pauseFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
def tasks(queue):
|
||||||
|
# iterate over all events extracted from the schedule xml-export
|
||||||
|
for event in events():
|
||||||
|
|
||||||
|
# generate a task description and put them into the queue
|
||||||
|
queue.put((
|
||||||
|
'intro.svg',
|
||||||
|
str(event['id'])+".dv",
|
||||||
|
introFrames,
|
||||||
|
{
|
||||||
|
'$id': event['id'],
|
||||||
|
'$title': event['title'],
|
||||||
|
'$subtitle': event['subtitle'],
|
||||||
|
'$personnames': event['personnames']
|
||||||
|
}
|
||||||
|
))
|
||||||
|
|
||||||
|
# place a task for the outro into the queue
|
||||||
|
queue.put((
|
||||||
|
'outro.svg',
|
||||||
|
'outro.dv',
|
||||||
|
outroFrames
|
||||||
|
))
|
||||||
|
|
||||||
|
# place the pause-sequence into the queue
|
||||||
|
queue.put((
|
||||||
|
'pause.svg',
|
||||||
|
'pause.dv',
|
||||||
|
pauseFrames
|
||||||
|
))
|
|
@ -15,7 +15,7 @@
|
||||||
id="svg2"
|
id="svg2"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="vorspann.svg">
|
sodipodi:docname="intro.svg">
|
||||||
<defs
|
<defs
|
||||||
id="defs20">
|
id="defs20">
|
||||||
<filter
|
<filter
|
||||||
|
@ -120,11 +120,11 @@
|
||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="1.4"
|
inkscape:zoom="0.98994949"
|
||||||
inkscape:cx="449.43583"
|
inkscape:cx="426.64164"
|
||||||
inkscape:cy="9.6872064"
|
inkscape:cy="125.81731"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer_background"
|
inkscape:current-layer="text2"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
showguides="true"
|
showguides="true"
|
||||||
inkscape:guide-bbox="true"
|
inkscape:guide-bbox="true"
|
||||||
|
@ -179,6 +179,7 @@
|
||||||
id="g_background"
|
id="g_background"
|
||||||
transform="translate(3.2142857,-29.821429)">
|
transform="translate(3.2142857,-29.821429)">
|
||||||
<image
|
<image
|
||||||
|
sodipodi:absref="/home/peter/AAA-VOC/mazdermind-c3voc-toolz/vor-abspann/fossgis14/artwork/foto-soft.jpg"
|
||||||
xlink:href="foto-soft.jpg"
|
xlink:href="foto-soft.jpg"
|
||||||
width="1024"
|
width="1024"
|
||||||
height="768"
|
height="768"
|
||||||
|
@ -186,6 +187,7 @@
|
||||||
x="-3.2142856"
|
x="-3.2142856"
|
||||||
y="313.82144" />
|
y="313.82144" />
|
||||||
<image
|
<image
|
||||||
|
sodipodi:absref="/home/peter/AAA-VOC/mazdermind-c3voc-toolz/vor-abspann/fossgis14/artwork/logo_ohne_rand-332.png"
|
||||||
xlink:href="logo_ohne_rand-332.png"
|
xlink:href="logo_ohne_rand-332.png"
|
||||||
width="166"
|
width="166"
|
||||||
height="166"
|
height="166"
|
||||||
|
@ -206,23 +208,23 @@
|
||||||
id="rect_banderole_1" />
|
id="rect_banderole_1" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
style="opacity:0"
|
id="text1"
|
||||||
id="text1">
|
style="opacity:0.25">
|
||||||
<text
|
<text
|
||||||
sodipodi:linespacing="80.000001%"
|
sodipodi:linespacing="80.000001%"
|
||||||
id="text2992"
|
id="text2992"
|
||||||
y="836.83752"
|
y="876.83752"
|
||||||
x="75.964493"
|
x="75.964493"
|
||||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3772);font-family:Sans"
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119000000609%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3772);font-family:Sans"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan2996"
|
id="tspan2996"
|
||||||
y="883.23755"
|
y="876.83752"
|
||||||
x="85.964493"
|
x="75.964493"
|
||||||
sodipodi:role="line"> Berlin</tspan><tspan
|
sodipodi:role="line"> Berlin</tspan><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan3002"
|
id="tspan3002"
|
||||||
y="929.63751"
|
y="915.23755"
|
||||||
x="75.964493"
|
x="75.964493"
|
||||||
sodipodi:role="line">19. - 21. März 2014</tspan></text>
|
sodipodi:role="line">19. - 21. März 2014</tspan></text>
|
||||||
<text
|
<text
|
||||||
|
@ -230,21 +232,20 @@
|
||||||
id="text2992-5"
|
id="text2992-5"
|
||||||
y="837.2262"
|
y="837.2262"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119000000609%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#f2f4f5;fill-opacity:1;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
y="837.2262"
|
y="837.2262"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
id="tspan2994-9"
|
id="tspan2994-9"
|
||||||
sodipodi:role="line">FOSSGIS Konferenz</tspan><tspan
|
sodipodi:role="line">FOSSGIS Konferenz</tspan><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan2998-1"
|
id="tspan2998-1"
|
||||||
y="883.62622"
|
y="875.62622"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
sodipodi:role="line">2014</tspan></text>
|
sodipodi:role="line">2014</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
style="opacity:1"
|
|
||||||
id="text2"
|
id="text2"
|
||||||
transform="translate(-70,202)">
|
transform="translate(-70,202)">
|
||||||
<text
|
<text
|
||||||
|
@ -256,32 +257,66 @@
|
||||||
sodipodi:linespacing="80.000001%"><tspan
|
sodipodi:linespacing="80.000001%"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
x="149.334"
|
x="149.334"
|
||||||
y="625.30579"
|
y="635.91711"
|
||||||
id="personnames"
|
id="personnames"
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold">$personnames</tspan></text>
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold">$personnames</tspan></text>
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot3025"
|
||||||
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
||||||
|
transform="translate(70,274)"><flowRegion
|
||||||
|
id="flowRegion3027"><rect
|
||||||
|
id="rect3029"
|
||||||
|
width="227.14285"
|
||||||
|
height="43.57143"
|
||||||
|
x="189.28572"
|
||||||
|
y="383.14285" /></flowRegion><flowPara
|
||||||
|
id="flowPara3031" /></flowRoot> <flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot3033"
|
||||||
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><flowRegion
|
||||||
|
id="flowRegion3035"><rect
|
||||||
|
id="rect3037"
|
||||||
|
width="24.285715"
|
||||||
|
height="42.857143"
|
||||||
|
x="55"
|
||||||
|
y="416.71429" /></flowRegion><flowPara
|
||||||
|
id="flowPara3039" /></flowRoot> <flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot3041"
|
||||||
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
||||||
|
transform="translate(70,274)"><flowRegion
|
||||||
|
id="flowRegion3043"><rect
|
||||||
|
id="rect3045"
|
||||||
|
width="404.28571"
|
||||||
|
height="152.85715"
|
||||||
|
x="240"
|
||||||
|
y="376.71429" /></flowRegion><flowPara
|
||||||
|
id="flowPara3047" /></flowRoot> <flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot3057"
|
||||||
|
style="font-size:43px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
||||||
|
transform="translate(74,266)"><flowRegion
|
||||||
|
id="flowRegion3059"><rect
|
||||||
|
id="rect3061"
|
||||||
|
width="933.57141"
|
||||||
|
height="141.42857"
|
||||||
|
x="75.714287"
|
||||||
|
y="381"
|
||||||
|
style="font-size:43px" /></flowRegion><flowPara
|
||||||
|
style="font-size:43px;font-weight:bold;line-height:107.00000525%;fill:#f2f4f5;fill-opacity:1;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
|
id="flowPara3835">$title</flowPara></flowRoot> </g>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-size:43px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:40px;font-style:normal;font-weight:normal;text-align:end;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
||||||
x="150.58771"
|
x="1017.3153"
|
||||||
y="636.30579"
|
y="1043.1428"
|
||||||
id="text2992-5-5"
|
|
||||||
sodipodi:linespacing="80.000001%"><tspan
|
|
||||||
sodipodi:role="line"
|
|
||||||
x="150.58771"
|
|
||||||
y="696.31714"
|
|
||||||
id="title">$title</tspan></text>
|
|
||||||
</g>
|
|
||||||
<text
|
|
||||||
xml:space="preserve"
|
|
||||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;opacity:1"
|
|
||||||
x="149.25279"
|
|
||||||
y="789.14288"
|
|
||||||
id="text2992-5-5-3"
|
id="text2992-5-5-3"
|
||||||
sodipodi:linespacing="80.000001%"><tspan
|
sodipodi:linespacing="80.000001%"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
x="563.25279"
|
x="1017.3153"
|
||||||
y="1042"
|
y="1043.1428"
|
||||||
id="url"
|
id="url"
|
||||||
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold">fossgis.de/konferenz/2014/programm/events/$id.de.html</tspan></text>
|
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:end;line-height:80.00000119%;text-anchor:end;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold">fossgis.de/konferenz/2014/programm/events/$id.de.html</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 12 KiB |
|
@ -15,7 +15,7 @@
|
||||||
id="svg2"
|
id="svg2"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
inkscape:version="0.48.4 r9939"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="abspann.svg">
|
sodipodi:docname="outro.svg">
|
||||||
<defs
|
<defs
|
||||||
id="defs20">
|
id="defs20">
|
||||||
<filter
|
<filter
|
||||||
|
@ -90,10 +90,10 @@
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="0.7"
|
inkscape:zoom="0.7"
|
||||||
inkscape:cx="543.97851"
|
inkscape:cx="546.83565"
|
||||||
inkscape:cy="296.83429"
|
inkscape:cy="296.83429"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer_background"
|
inkscape:current-layer="banderole"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
showguides="true"
|
showguides="true"
|
||||||
inkscape:guide-bbox="true"
|
inkscape:guide-bbox="true"
|
||||||
|
@ -148,19 +148,21 @@
|
||||||
id="g_background"
|
id="g_background"
|
||||||
transform="translate(3.2142857,-29.821429)">
|
transform="translate(3.2142857,-29.821429)">
|
||||||
<image
|
<image
|
||||||
|
sodipodi:absref="/home/peter/AAA-VOC/mazdermind-c3voc-toolz/vor-abspann/fossgis14/artwork/foto-soft.jpg"
|
||||||
xlink:href="foto-soft.jpg"
|
xlink:href="foto-soft.jpg"
|
||||||
y="313.82144"
|
width="1024"
|
||||||
x="-3.2142856"
|
|
||||||
id="image_background"
|
|
||||||
height="768"
|
height="768"
|
||||||
width="1024" />
|
id="image_background"
|
||||||
|
x="-3.2142856"
|
||||||
|
y="313.82144" />
|
||||||
<image
|
<image
|
||||||
|
sodipodi:absref="/home/peter/AAA-VOC/mazdermind-c3voc-toolz/vor-abspann/fossgis14/artwork/logo_ohne_rand-332.png"
|
||||||
xlink:href="logo_ohne_rand-332.png"
|
xlink:href="logo_ohne_rand-332.png"
|
||||||
y="537.82141"
|
width="166"
|
||||||
x="28.785715"
|
|
||||||
id="image_logo"
|
|
||||||
height="166"
|
height="166"
|
||||||
width="166" />
|
id="image_logo"
|
||||||
|
x="28.785715"
|
||||||
|
y="537.82141" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
style="opacity:1"
|
style="opacity:1"
|
||||||
|
@ -176,18 +178,18 @@
|
||||||
<text
|
<text
|
||||||
sodipodi:linespacing="80.000001%"
|
sodipodi:linespacing="80.000001%"
|
||||||
id="text2992"
|
id="text2992"
|
||||||
y="836.83752"
|
y="876.83752"
|
||||||
x="75.964493"
|
x="75.964493"
|
||||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3772);font-family:Sans"
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3772);font-family:Sans"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan2996"
|
id="tspan2996"
|
||||||
y="883.23755"
|
y="876.83752"
|
||||||
x="85.964493"
|
x="75.964493"
|
||||||
sodipodi:role="line"> Berlin</tspan><tspan
|
sodipodi:role="line"> Berlin</tspan><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan3002"
|
id="tspan3002"
|
||||||
y="929.63751"
|
y="915.23755"
|
||||||
x="75.964493"
|
x="75.964493"
|
||||||
sodipodi:role="line">19. - 21. März 2014</tspan></text>
|
sodipodi:role="line">19. - 21. März 2014</tspan></text>
|
||||||
<text
|
<text
|
||||||
|
@ -204,23 +206,28 @@
|
||||||
sodipodi:role="line">FOSSGIS Konferenz</tspan><tspan
|
sodipodi:role="line">FOSSGIS Konferenz</tspan><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan2998-1"
|
id="tspan2998-1"
|
||||||
y="883.62622"
|
y="875.62622"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
sodipodi:role="line">2014</tspan><tspan
|
sodipodi:role="line">2014</tspan><tspan
|
||||||
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold;fill:#f2f4f5;fill-opacity:1"
|
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan3002-3"
|
id="tspan3002-3"
|
||||||
y="990.82617"
|
y="914.02618"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
sodipodi:role="line">fossgis.de/konferenz/2014/</tspan></text>
|
sodipodi:role="line"></tspan><tspan
|
||||||
|
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
|
y="934.56445"
|
||||||
|
x="77.218193"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3013">fossgis.de/konferenz/2014/</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
<image
|
<image
|
||||||
style="opacity:1"
|
sodipodi:absref="/home/peter/AAA-VOC/mazdermind-c3voc-toolz/vor-abspann/fossgis14/artwork/by-sa.svg"
|
||||||
id="license"
|
xlink:href="by-sa.svg"
|
||||||
y="950"
|
|
||||||
x="890"
|
|
||||||
width="120"
|
|
||||||
height="42"
|
height="42"
|
||||||
xlink:href="by-sa.svg" />
|
width="120"
|
||||||
|
x="890"
|
||||||
|
y="950"
|
||||||
|
id="license"
|
||||||
|
style="opacity:1" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.9 KiB |
|
@ -89,9 +89,9 @@
|
||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="0.7"
|
inkscape:zoom="1.4"
|
||||||
inkscape:cx="543.97851"
|
inkscape:cx="210.57253"
|
||||||
inkscape:cy="296.83429"
|
inkscape:cy="235.39609"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer_background"
|
inkscape:current-layer="layer_background"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
|
@ -148,6 +148,7 @@
|
||||||
id="g_background"
|
id="g_background"
|
||||||
transform="translate(3.2142857,-29.821429)">
|
transform="translate(3.2142857,-29.821429)">
|
||||||
<image
|
<image
|
||||||
|
sodipodi:absref="/home/peter/AAA-VOC/mazdermind-c3voc-toolz/vor-abspann/fossgis14/artwork/foto-soft.jpg"
|
||||||
xlink:href="foto-soft.jpg"
|
xlink:href="foto-soft.jpg"
|
||||||
y="313.82144"
|
y="313.82144"
|
||||||
x="-3.2142856"
|
x="-3.2142856"
|
||||||
|
@ -155,6 +156,7 @@
|
||||||
height="768"
|
height="768"
|
||||||
width="1024" />
|
width="1024" />
|
||||||
<image
|
<image
|
||||||
|
sodipodi:absref="/home/peter/AAA-VOC/mazdermind-c3voc-toolz/vor-abspann/fossgis14/artwork/logo_ohne_rand-332.png"
|
||||||
xlink:href="logo_ohne_rand-332.png"
|
xlink:href="logo_ohne_rand-332.png"
|
||||||
y="537.82141"
|
y="537.82141"
|
||||||
x="28.785715"
|
x="28.785715"
|
||||||
|
@ -174,23 +176,23 @@
|
||||||
id="rect_banderole_1" />
|
id="rect_banderole_1" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
style="opacity:1"
|
style="opacity:0.25"
|
||||||
id="text1">
|
id="text1">
|
||||||
<text
|
<text
|
||||||
sodipodi:linespacing="80.000001%"
|
sodipodi:linespacing="80.000001%"
|
||||||
id="text2992"
|
id="text2992"
|
||||||
y="836.83752"
|
y="876.83752"
|
||||||
x="75.964493"
|
x="75.964493"
|
||||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3772);font-family:Sans"
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119000000609%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3772);font-family:Sans"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan2996"
|
id="tspan2996"
|
||||||
y="883.23755"
|
y="876.83752"
|
||||||
x="85.964493"
|
x="75.964493"
|
||||||
sodipodi:role="line"> Berlin</tspan><tspan
|
sodipodi:role="line"> Berlin</tspan><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#7b9199;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan3002"
|
id="tspan3002"
|
||||||
y="929.63751"
|
y="915.23755"
|
||||||
x="75.964493"
|
x="75.964493"
|
||||||
sodipodi:role="line">19. - 21. März 2014</tspan></text>
|
sodipodi:role="line">19. - 21. März 2014</tspan></text>
|
||||||
<text
|
<text
|
||||||
|
@ -198,41 +200,44 @@
|
||||||
id="text2992-5"
|
id="text2992-5"
|
||||||
y="837.2262"
|
y="837.2262"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119000000609%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#f2f4f5;fill-opacity:1;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
y="837.2262"
|
y="837.2262"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
id="tspan2994-9"
|
id="tspan2994-9"
|
||||||
sodipodi:role="line">FOSSGIS Konferenz</tspan><tspan
|
sodipodi:role="line">FOSSGIS Konferenz</tspan><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan2998-1"
|
id="tspan2998-1"
|
||||||
y="883.62622"
|
y="875.62622"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
sodipodi:role="line">2014</tspan><tspan
|
sodipodi:role="line">2014</tspan><tspan
|
||||||
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold;fill:#f2f4f5;fill-opacity:1"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
|
y="914.02618"
|
||||||
|
x="77.218193"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3018" /><tspan
|
||||||
|
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#f2f4f5;fill-opacity:1;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan3002-3"
|
id="tspan3002-3"
|
||||||
y="990.82617"
|
y="934.56445"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
sodipodi:role="line">fossgis.de/konferenz/2014/</tspan></text>
|
sodipodi:role="line">fossgis.de/konferenz/2014/</tspan></text>
|
||||||
|
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
style="opacity:0"
|
style="opacity:1"
|
||||||
id="text2">
|
id="text2">
|
||||||
<text
|
<text
|
||||||
sodipodi:linespacing="80.000001%"
|
sodipodi:linespacing="80.000001%"
|
||||||
id="text2992-5"
|
id="text39"
|
||||||
y="837.2262"
|
y="837.2262"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119000000609%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:80.00000119000000609%;fill:#f2f4f5;fill-opacity:1;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
||||||
id="tspan2998-1"
|
id="tspan41"
|
||||||
y="900.62622"
|
y="900.62622"
|
||||||
x="77.218193"
|
x="77.218193"
|
||||||
sodipodi:role="line">Gleich geht's weiter...</tspan></text>
|
sodipodi:role="line">Gleich geht's weiter...</tspan></text>
|
||||||
|
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 8.5 KiB |
|
@ -1,469 +0,0 @@
|
||||||
#!/usr/bin/python
|
|
||||||
# -*- coding: UTF-8 -*-
|
|
||||||
|
|
||||||
import sys
|
|
||||||
import glob
|
|
||||||
import os
|
|
||||||
import re
|
|
||||||
import shutil
|
|
||||||
import errno
|
|
||||||
import unicodedata
|
|
||||||
import urllib2
|
|
||||||
#import xml.etree.ElementTree as etree
|
|
||||||
from lxml import etree
|
|
||||||
import cssutils
|
|
||||||
import logging
|
|
||||||
import textwrap
|
|
||||||
import tempfile
|
|
||||||
import threading
|
|
||||||
import multiprocessing
|
|
||||||
from threading import Thread, Lock
|
|
||||||
from Queue import Queue
|
|
||||||
|
|
||||||
# Frames per second. Increasing this renders more frames, the avconf-statements would still need modifications
|
|
||||||
fps = 25
|
|
||||||
|
|
||||||
# using --debug skips the threading, the network fetching of the schedule and
|
|
||||||
# just renders one type of video
|
|
||||||
debug = ('--debug' in sys.argv)
|
|
||||||
|
|
||||||
# using --offline only skips the network fetching and use a local schedule.de.xml
|
|
||||||
offline = ('--offline' in sys.argv)
|
|
||||||
|
|
||||||
# set charset of output-terminal
|
|
||||||
reload(sys)
|
|
||||||
sys.setdefaultencoding('utf-8')
|
|
||||||
|
|
||||||
# t: current time, b: begInnIng value, c: change In value, d: duration
|
|
||||||
# copied from jqueryui
|
|
||||||
def easeOutCubic(t, b, c, d):
|
|
||||||
t=float(t)/d-1
|
|
||||||
return c*((t)*t*t + 1) + b
|
|
||||||
|
|
||||||
# try to create all folders needed and skip, they already exist
|
|
||||||
def ensurePathExists(path):
|
|
||||||
try:
|
|
||||||
os.makedirs(path)
|
|
||||||
except OSError as exception:
|
|
||||||
if exception.errno != errno.EEXIST:
|
|
||||||
raise
|
|
||||||
|
|
||||||
# remove the files matched by the pattern
|
|
||||||
def ensureFilesRemoved(pattern):
|
|
||||||
for f in glob.glob(pattern):
|
|
||||||
os.unlink(f)
|
|
||||||
|
|
||||||
# Normalizes string, converts to lowercase, removes non-alpha characters,
|
|
||||||
#and converts spaces to hyphens.
|
|
||||||
def slugify(value):
|
|
||||||
value = unicodedata.normalize('NFKD', value).encode('ascii', 'ignore')
|
|
||||||
value = unicode(re.sub('[^\w\s-]', '', value).strip().lower())
|
|
||||||
value = unicode(re.sub('[-\s]+', '-', value))
|
|
||||||
return value
|
|
||||||
|
|
||||||
# create a filename from the events' id and a slugified version of the title
|
|
||||||
def vorspannFilename(id, title):
|
|
||||||
return u'{0:04d}-{1}.dv'.format(id, slugify(unicode(title)))
|
|
||||||
|
|
||||||
# svg does not have a method for automatic line breaking, that rsvg is capable of
|
|
||||||
# so we do it in python as good as we can
|
|
||||||
def vorspannTitle(title):
|
|
||||||
return '</tspan><tspan x="150" dy="45">'.join(textwrap.wrap(title, 35))
|
|
||||||
|
|
||||||
def vorspannUrl(id):
|
|
||||||
return 'fossgis.de/konferenz/2014/programm/events/'+str(id)+'.de.html'
|
|
||||||
|
|
||||||
|
|
||||||
def abspannFrames():
|
|
||||||
# 5 Sekunden
|
|
||||||
|
|
||||||
# 2 Sekunden Fadein Text
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('banderole', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames) ),
|
|
||||||
('license', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunde Fadein Lizenz-Logo
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('banderole', 'opacity', 1),
|
|
||||||
('license', 'opacity', "%.4f" % (float(i)/frames))
|
|
||||||
)
|
|
||||||
|
|
||||||
# 1 Sekunde stehen bleiben
|
|
||||||
frames = 1*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('banderole', 'opacity', 1),
|
|
||||||
('license', 'opacity', 1)
|
|
||||||
)
|
|
||||||
|
|
||||||
def vorspannFrames():
|
|
||||||
# 7 Sekunden
|
|
||||||
|
|
||||||
# 2 Sekunden Text 1
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('box', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
|
||||||
('url', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
|
||||||
('text1', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
|
||||||
('text2', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 1 Sekunde Fadeout Text 1
|
|
||||||
frames = 1*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('box', 'opacity', 1),
|
|
||||||
('url', 'opacity', 1),
|
|
||||||
('text1', 'opacity', "%.4f" % (1-(float(i)/frames))),
|
|
||||||
('text2', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunden Text 2
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('box', 'opacity', 1),
|
|
||||||
('url', 'opacity', 1),
|
|
||||||
('text1', 'opacity', 0),
|
|
||||||
('text2', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames))
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunden stehen bleiben
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('box', 'opacity', 1),
|
|
||||||
('url', 'opacity', 1),
|
|
||||||
('text1', 'opacity', 0),
|
|
||||||
('text2', 'opacity', 1)
|
|
||||||
)
|
|
||||||
|
|
||||||
def pauseFrames():
|
|
||||||
# 12 Sekunden
|
|
||||||
|
|
||||||
# 2 Sekunden Text1 stehen
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('text1', 'opacity', 1),
|
|
||||||
('text2', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunden Fadeout Text1
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('text1', 'opacity', "%.4f" % (1-easeOutCubic(i, 0, 1, frames))),
|
|
||||||
('text2', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunden Fadein Text2
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('text1', 'opacity', 0),
|
|
||||||
('text2', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames))
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunden Text2 stehen
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('text1', 'opacity', 0),
|
|
||||||
('text2', 'opacity', 1)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunden Fadeout Text2
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('text1', 'opacity', 0),
|
|
||||||
('text2', 'opacity', "%.4f" % (1-easeOutCubic(i, 0, 1, frames)))
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunden Fadein Text1
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('text1', 'opacity', "%.4f" % (easeOutCubic(i, 0, 1, frames))),
|
|
||||||
('text2', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
cssutils.ser.prefs.lineSeparator = ' '
|
|
||||||
cssutils.log.setLevel(logging.ERROR)
|
|
||||||
|
|
||||||
def render(infile, outfile, sequence, parameters={}, workdir='artwork'):
|
|
||||||
# in debug mode we have no thread-worker which prints its progress
|
|
||||||
if debug:
|
|
||||||
print "generating {0} from {1}".format(outfile, infile)
|
|
||||||
|
|
||||||
# make sure a .frames-directory exists in out workdir
|
|
||||||
ensurePathExists(os.path.join(workdir, '.frames'))
|
|
||||||
|
|
||||||
# open and parse the input file
|
|
||||||
with open(os.path.join(workdir, infile), 'r') as fp:
|
|
||||||
svgstr = fp.read()
|
|
||||||
for key in parameters.keys():
|
|
||||||
svgstr = svgstr.replace(key, str(parameters[key]))
|
|
||||||
|
|
||||||
svg = etree.fromstring(svgstr)
|
|
||||||
|
|
||||||
# find all images and force them to absolute file-urls
|
|
||||||
namespaces = {'xlink': 'http://www.w3.org/1999/xlink', 'svg': 'http://www.w3.org/2000/svg'}
|
|
||||||
for el in svg.findall(".//svg:image[@xlink:href]", namespaces=namespaces):
|
|
||||||
el.attrib['{http://www.w3.org/1999/xlink}href'] = 'file:///' + os.path.realpath(workdir) + '/' + el.attrib['{http://www.w3.org/1999/xlink}href']
|
|
||||||
|
|
||||||
|
|
||||||
# frame-number counter
|
|
||||||
frameNr = 0
|
|
||||||
|
|
||||||
# iterate through the animation seqence frame by frame
|
|
||||||
# frame is a ... tbd
|
|
||||||
for frame in sequence():
|
|
||||||
# print a line for each and every frame generated
|
|
||||||
if debug:
|
|
||||||
print "frameNr {0:2d} => {1}".format(frameNr, frame)
|
|
||||||
|
|
||||||
# open the output-file (named ".gen.svg" in the workdir)
|
|
||||||
with open(os.path.join(workdir, '.gen.svg'), 'w') as fp:
|
|
||||||
# apply the replace-pairs to the input text, by finding the specified xml-elements by thier id and modify thier css-parameter the correct value
|
|
||||||
for replaceinfo in frame:
|
|
||||||
(id, key, value) = replaceinfo
|
|
||||||
|
|
||||||
for el in svg.findall(".//*[@id='"+id.replace("'", "\\'")+"']"):
|
|
||||||
style = cssutils.parseStyle( el.attrib['style'] )
|
|
||||||
style[key] = unicode(value)
|
|
||||||
el.attrib['style'] = style.cssText
|
|
||||||
|
|
||||||
# write the generated svg-text into the output-file
|
|
||||||
fp.write( etree.tostring(svg) )
|
|
||||||
|
|
||||||
# invoke rsvg to convert the generated svg-file into a png inside the .frames-directory
|
|
||||||
os.system('cd {0} && rsvg-convert .gen.svg > .frames/{1:04d}.png'.format(workdir, frameNr))
|
|
||||||
|
|
||||||
# incrwement frame-number
|
|
||||||
frameNr += 1
|
|
||||||
|
|
||||||
# remove the dv we are about to (re-)generate
|
|
||||||
ensureFilesRemoved(os.path.join(workdir, outfile))
|
|
||||||
|
|
||||||
# invoke avconv aka ffmpeg and renerate a lossles-dv from the frames
|
|
||||||
# if we're not in debug-mode, suppress all output
|
|
||||||
os.system('cd {0} && avconv -ar 48000 -ac 2 -f s16le -i /dev/zero -f image2 -i .frames/%04d.png -target pal-dv -aspect 16:9 -shortest "{1}"'.format(workdir, outfile) + ('' if debug else '>/dev/null 2>&1'))
|
|
||||||
|
|
||||||
# as before, in non-debug-mode the thread-worker does all progress messages
|
|
||||||
if debug:
|
|
||||||
print "cleanup"
|
|
||||||
|
|
||||||
# remove the .frames-dir with all frames in it
|
|
||||||
shutil.rmtree(os.path.join(workdir, '.frames'))
|
|
||||||
|
|
||||||
# remove the generated svg
|
|
||||||
ensureFilesRemoved(os.path.join(workdir, '.gen.svg'))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Download the Events-Schedule and parse all Events out of it. Yield a tupel for each Event
|
|
||||||
def events():
|
|
||||||
print "downloading pentabarf schedule"
|
|
||||||
|
|
||||||
# use --offline to skip networking
|
|
||||||
if offline:
|
|
||||||
# parse the offline-version
|
|
||||||
schedule = etree.parse('schedule.de.xml').getroot()
|
|
||||||
|
|
||||||
else:
|
|
||||||
# download the schedule
|
|
||||||
response = urllib2.urlopen('http://www.fossgis.de/konferenz/2014/programm/schedule.de.xml')
|
|
||||||
|
|
||||||
# read xml-source
|
|
||||||
xml = response.read()
|
|
||||||
|
|
||||||
# parse into ElementTree
|
|
||||||
schedule = etree.fromstring(xml)
|
|
||||||
|
|
||||||
# iterate all days
|
|
||||||
for day in schedule.iter('day'):
|
|
||||||
# iterate all rooms
|
|
||||||
for room in day.iter('room'):
|
|
||||||
# iterate events on that day in this room
|
|
||||||
for event in room.iter('event'):
|
|
||||||
# aggregate names of the persons holding this talk
|
|
||||||
personnames = []
|
|
||||||
for person in event.find('persons').iter('person'):
|
|
||||||
personnames.append(person.text)
|
|
||||||
|
|
||||||
# yield a tupel with the event-id, event-title and person-names
|
|
||||||
yield ( int(event.get('id')), event.find('title').text, ', '.join(personnames) )
|
|
||||||
|
|
||||||
|
|
||||||
# debug-mode selected by --debug switch
|
|
||||||
if debug:
|
|
||||||
print "!!! DEBUG MODE !!!"
|
|
||||||
title = 'OpenJUMP - Überblick, Neuigkeiten, Zusammenarbeit/Schnittstellen mit proprietärer Software'
|
|
||||||
|
|
||||||
render(
|
|
||||||
'vorspann.svg',
|
|
||||||
os.path.join('..', str(667)+".dv"),
|
|
||||||
vorspannFrames,
|
|
||||||
{
|
|
||||||
'$id': 667,
|
|
||||||
'$title': vorspannTitle(title),
|
|
||||||
'$personnames': 'Matthias Scholz'
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
render(
|
|
||||||
'abspann.svg',
|
|
||||||
'../outro.dv',
|
|
||||||
abspannFrames
|
|
||||||
)
|
|
||||||
|
|
||||||
render('pause.svg',
|
|
||||||
'../pause.dv',
|
|
||||||
pauseFrames
|
|
||||||
)
|
|
||||||
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# threaded task queue
|
|
||||||
tasks = Queue()
|
|
||||||
|
|
||||||
titlemap = {
|
|
||||||
708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
|
|
||||||
}
|
|
||||||
|
|
||||||
# iterate over all events extracted from the schedule xml-export
|
|
||||||
for (id, title, personnames) in events():
|
|
||||||
if id in titlemap:
|
|
||||||
title = titlemap[id]
|
|
||||||
|
|
||||||
# generate a task description and put them into the queue
|
|
||||||
tasks.put((
|
|
||||||
'vorspann.svg',
|
|
||||||
str(id)+".dv",
|
|
||||||
vorspannFrames,
|
|
||||||
{
|
|
||||||
'$id': id,
|
|
||||||
'$title': vorspannTitle(title),
|
|
||||||
'$personnames': personnames
|
|
||||||
}
|
|
||||||
))
|
|
||||||
|
|
||||||
# place a task for the outro into the queue
|
|
||||||
tasks.put((
|
|
||||||
'abspann.svg',
|
|
||||||
'outro.dv',
|
|
||||||
abspannFrames
|
|
||||||
))
|
|
||||||
|
|
||||||
# place the pause-sequence into the queue
|
|
||||||
tasks.put((
|
|
||||||
'pause.svg',
|
|
||||||
'pause.dv',
|
|
||||||
pauseFrames
|
|
||||||
))
|
|
||||||
|
|
||||||
# one working thread per cpu
|
|
||||||
num_worker_threads = multiprocessing.cpu_count()
|
|
||||||
print "{0} tasks in queue, starting {1} worker threads".format(tasks.qsize(), num_worker_threads)
|
|
||||||
|
|
||||||
# put a sentinel for each thread into the queue to signal the end
|
|
||||||
for _ in range(num_worker_threads):
|
|
||||||
tasks.put(None)
|
|
||||||
|
|
||||||
# this lock ensures, that only one thread at a time is writing to stdout
|
|
||||||
# and avoids output from multiple threads intermixing
|
|
||||||
printLock = Lock()
|
|
||||||
def tprint(str):
|
|
||||||
# aquire lock
|
|
||||||
printLock.acquire()
|
|
||||||
|
|
||||||
# print thread-name and message
|
|
||||||
print threading.current_thread().name+': '+str
|
|
||||||
|
|
||||||
# release lock
|
|
||||||
printLock.release()
|
|
||||||
|
|
||||||
|
|
||||||
# thread worker
|
|
||||||
def worker():
|
|
||||||
# generate a tempdir for this worker-thread and use the artwork-subdir as temporary folder
|
|
||||||
tempdir = tempfile.mkdtemp()
|
|
||||||
workdir = os.path.join(tempdir, 'artwork')
|
|
||||||
|
|
||||||
# save the current working dir as output-dir
|
|
||||||
outdir = os.getcwd()
|
|
||||||
|
|
||||||
# print a message that we're about to initialize our environment
|
|
||||||
tprint("initializing worker in {0}, writing result to {1}".format(tempdir, outdir))
|
|
||||||
|
|
||||||
# copy the artwork-dir into the tempdir
|
|
||||||
shutil.copytree('artwork', workdir)
|
|
||||||
|
|
||||||
# loop until all tasks are done (when the thread fetches a sentinal from the queue)
|
|
||||||
while True:
|
|
||||||
# fetch a task from the queue
|
|
||||||
task = tasks.get()
|
|
||||||
|
|
||||||
# if it is a stop-sentinal break out of the loop
|
|
||||||
if task == None:
|
|
||||||
break
|
|
||||||
|
|
||||||
# print that we're about to render a task
|
|
||||||
tprint('rendering {0}'.format(task[1]))
|
|
||||||
|
|
||||||
# render options
|
|
||||||
opts = (
|
|
||||||
# argument 0 is the input file. prepend the workdir
|
|
||||||
os.path.join(workdir, task[0]),
|
|
||||||
|
|
||||||
# argument 1 is the output file. prepend the outdir
|
|
||||||
os.path.join(outdir, task[1]),
|
|
||||||
|
|
||||||
# argument 2 is the frame generator, nothing to do here
|
|
||||||
task[2],
|
|
||||||
|
|
||||||
# argument 3 are the extra parameters
|
|
||||||
task[3] if len(task) > 3 else {},
|
|
||||||
|
|
||||||
# argument 4 is the workdir path
|
|
||||||
workdir
|
|
||||||
)
|
|
||||||
|
|
||||||
# render with these arguments
|
|
||||||
render(*opts)
|
|
||||||
|
|
||||||
# print that we're finished
|
|
||||||
tprint('finished {0}, {1} tasks left'.format(task[1], max(0, tasks.qsize() - num_worker_threads)))
|
|
||||||
|
|
||||||
# mark the task as finished
|
|
||||||
tasks.task_done()
|
|
||||||
|
|
||||||
# all tasks from the queue done, clean up
|
|
||||||
tprint("cleaning up worker")
|
|
||||||
|
|
||||||
# remove the tempdir
|
|
||||||
shutil.rmtree(tempdir)
|
|
||||||
|
|
||||||
# mark the sentinal as done
|
|
||||||
tasks.task_done()
|
|
||||||
|
|
||||||
|
|
||||||
# generate and start the threads
|
|
||||||
for i in range(num_worker_threads):
|
|
||||||
t = Thread(target=worker)
|
|
||||||
t.daemon = True
|
|
||||||
t.start()
|
|
||||||
|
|
||||||
# wait until they finished doing the work
|
|
||||||
tasks.join()
|
|
||||||
print "all worker threads ended"
|
|
Loading…
Add table
Add a link
Reference in a new issue