MRMCD17 Intro
This commit is contained in:
parent
4a9b7d4020
commit
178ab6ef5e
2 changed files with 27 additions and 29 deletions
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
|
@ -95,9 +96,12 @@ def debug():
|
|||
}
|
||||
)
|
||||
|
||||
def tasks(queue, params):
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl, titlemap):
|
||||
for event in events(scheduleUrl):
|
||||
if event['room'] not in ('Prachtgarten', 'Ziergarten'):
|
||||
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||
continue
|
||||
|
||||
# generate a task description and put them into the queue
|
||||
queue.put(Rendertask(
|
||||
|
@ -112,9 +116,16 @@ def tasks(queue, params):
|
|||
}
|
||||
))
|
||||
|
||||
# place a task for the outro into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
||||
# # place a task for the outro into the queue
|
||||
# queue.put(Rendertask(
|
||||
# infile = 'outro.svg',
|
||||
# outfile = 'outro.ts',
|
||||
# sequence = outroFrames
|
||||
# ))
|
||||
#
|
||||
# # place the pause-sequence into the queue
|
||||
# queue.put(Rendertask(
|
||||
# infile = 'pause.svg',
|
||||
# outfile = 'pause.ts',
|
||||
# sequence = pauseFrames
|
||||
# ))
|
||||
|
|
|
@ -143,10 +143,10 @@
|
|||
transform="scale(1,-1)"
|
||||
y="-1080"
|
||||
x="-1.4210855e-14"
|
||||
height="690"
|
||||
height="540.09338"
|
||||
width="1920"
|
||||
id="rect"
|
||||
style="opacity:0.7;fill:#000000;stroke-width:2.39954925"
|
||||
style="opacity:0.7;fill:#000000;stroke-width:2.12294888"
|
||||
inkscape:label="#rect" />
|
||||
<flowRoot
|
||||
style="font-style:normal;font-weight:500;font-size:96px;line-height:125%;font-family:Futura;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;-inkscape-font-specification:'Futura Medium';font-stretch:normal;font-variant:normal;"
|
||||
|
@ -155,33 +155,20 @@
|
|||
inkscape:label="#flowRoot4817"><flowRegion
|
||||
style="-inkscape-font-specification:'Futura Medium';font-family:Futura;font-weight:500;font-style:normal;font-stretch:normal;font-variant:normal;fill:#ffffff;font-size:96px;"
|
||||
id="flowRegion4819"><rect
|
||||
style="-inkscape-font-specification:'Futura Medium';font-family:Futura;font-weight:500;font-style:normal;font-stretch:normal;font-variant:normal;fill:#ffffff;font-size:96px;"
|
||||
y="420.97647"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:96px;font-family:Futura;-inkscape-font-specification:'Futura Medium';fill:#ffffff"
|
||||
y="559.5694"
|
||||
x="78"
|
||||
height="164.04877"
|
||||
width="1749.1639"
|
||||
height="339.41132"
|
||||
width="1757.6492"
|
||||
id="rect4821" /></flowRegion><flowPara
|
||||
id="flowPara4823">$title</flowPara></flowRoot> <flowRoot
|
||||
style="font-style:normal;font-weight:normal;font-size:74.66666667px;line-height:125%;font-family:Futura;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;-inkscape-font-specification:Futura;font-stretch:normal;font-variant:normal;"
|
||||
id="subtitle"
|
||||
xml:space="preserve"
|
||||
inkscape:label="#subtitle"><flowRegion
|
||||
style="fill:#ffffff;-inkscape-font-specification:Futura;font-family:Futura;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-size:74.66666667px;"
|
||||
id="flowRegion4837"><rect
|
||||
style="fill:#ffffff;-inkscape-font-specification:Futura;font-family:Futura;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-size:74.66666667px;"
|
||||
y="585.02527"
|
||||
x="78"
|
||||
height="356.38181"
|
||||
width="1706.7375"
|
||||
id="rect4839" /></flowRegion><flowPara
|
||||
id="flowPara4841">$subtitle</flowPara></flowRoot> <flowRoot
|
||||
xml:space="preserve"
|
||||
id="persons"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><flowRegion
|
||||
id="flowRegion1104"><rect
|
||||
id="rect1106"
|
||||
width="1265.5029"
|
||||
height="124.45073"
|
||||
width="1732.1934"
|
||||
height="127.27911"
|
||||
x="78"
|
||||
y="918.77966" /></flowRegion><flowPara
|
||||
id="flowPara1108"
|
||||
|
|
Before Width: | Height: | Size: 762 KiB After Width: | Height: | Size: 761 KiB |
Loading…
Add table
Reference in a new issue