add sotm2019 artwork
This commit is contained in:
parent
7a4e1f6d60
commit
b2fc24155c
3 changed files with 2366 additions and 0 deletions
106
sotm2019/__init__.py
Normal file
106
sotm2019/__init__.py
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
from renderlib import *
|
||||||
|
from easing import *
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'http://sotm.osmz.ru/19.xml'
|
||||||
|
|
||||||
|
def introFrames(args):
|
||||||
|
#fade in tux and set other opacities to 0
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('title', 'style', 'opacity', 0),
|
||||||
|
('persons', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
#fade in title and persons
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield(
|
||||||
|
('title', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||||
|
('persons', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
#show whole image for 5 seconds
|
||||||
|
frames = 5*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield(
|
||||||
|
('title', 'style', 'opacity', 1),
|
||||||
|
('persons', 'style', 'opacity', 1),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def outroFrames(args):
|
||||||
|
#fadein outro graphics
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield(
|
||||||
|
('tux', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||||
|
('cctext', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||||
|
('logo', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||||
|
)
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield(
|
||||||
|
('tux', 'style', 'opacity', 1),
|
||||||
|
('cctext', 'style', 'opacity', 1),
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
render(
|
||||||
|
'intro.svg',
|
||||||
|
'../intro.ts',
|
||||||
|
introFrames,
|
||||||
|
{
|
||||||
|
'$title': "Long Long Long title is LONG",
|
||||||
|
'$speaker': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
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 ('i1', 'i2', 'i7', 'i11', 'i12', 'i13'):
|
||||||
|
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||||
|
continue
|
||||||
|
if event['day'] not in ('2'):
|
||||||
|
print("skipping day %s" % (event['day']))
|
||||||
|
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 = {
|
||||||
|
'$title': event['title'],
|
||||||
|
'$persons': 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
|
||||||
|
))
|
||||||
|
|
1102
sotm2019/artwork/intro.svg
Normal file
1102
sotm2019/artwork/intro.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 88 KiB |
1158
sotm2019/artwork/outro.svg
Normal file
1158
sotm2019/artwork/outro.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 92 KiB |
Loading…
Add table
Reference in a new issue