Adjust outro

- Fix license
- Add VOC and opensuse credits
This commit is contained in:
Daniel Molkentin 2017-08-19 10:40:33 +02:00
parent b0ac0b83f4
commit 326b9a2405
2 changed files with 312 additions and 132 deletions

View file

@ -84,7 +84,7 @@ def outroFrames(args):
p = path.point(i / frames) - init p = path.point(i / frames) - init
yield ( yield (
('animatePath', 'style', 'opacity', 0), ('animatePath', 'style', 'opacity', 0),
('license', 'style', 'opacity', 0), ('recordingby', 'style', 'opacity', 0),
) )
frames = 3*fps frames = 3*fps
@ -108,28 +108,28 @@ def outroFrames(args):
for i in range(0, frames): for i in range(0, frames):
yield ( yield (
('logo', 'style', 'opacity', 0), ('logo', 'style', 'opacity', 0),
('license', 'style', 'opacity', easeLinear(i, 0, 1, frames)), ('recordingby', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
) )
frames = 2*fps frames = 2*fps
for i in range(0, frames): for i in range(0, frames):
yield ( yield (
('logo', 'style', 'opacity', 0), ('logo', 'style', 'opacity', 0),
('license', 'style', 'opacity', 1), ('recordingby', 'style', 'opacity', 1),
) )
frames = 1*fps frames = 1*fps
for i in range(0, frames): for i in range(0, frames):
yield ( yield (
('logo', 'style', 'opacity', 0), ('logo', 'style', 'opacity', 0),
('license', 'style', 'opacity', easeLinear(i, 1, -1, frames)), ('recordingby', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
) )
frames = 1*fps frames = 1*fps
for i in range(0, frames): for i in range(0, frames):
yield ( yield (
('logo', 'style', 'opacity', 0), ('logo', 'style', 'opacity', 0),
('license', 'style', 'opacity', 0), ('recordingby', 'style', 'opacity', 0),
) )
def pauseFrames(args): def pauseFrames(args):
@ -176,27 +176,27 @@ def pauseFrames(args):
) )
def debug(): def debug():
render('intro.svg', # render('intro.svg',
'../intro.ts', # '../intro.ts',
introFrames, # introFrames,
{ # {
'$id': 1302, # '$id': 1302,
'$title': 'VlizedLab - Eine Open Source-Virtualisierungslösung für PC-Räume', # '$title': 'VlizedLab - Eine Open Source-Virtualisierungslösung für PC-Räume',
'$subtitle': 'IT Automatisierung und zentrales Management mit SALT', # '$subtitle': 'IT Automatisierung und zentrales Management mit SALT',
'$personnames': 'Thorsten Kramm' # '$personnames': 'Thorsten Kramm'
} # }
) # )
#
render('outro.svg', render('outro.svg',
'../outro.ts', '../outro.ts',
outroFrames outroFrames
) )
render('pause.svg', # render('pause.svg',
'../pause.ts', # '../pause.ts',
pauseFrames # pauseFrames
) # )
#
def tasks(queue, args, idlist, skiplist): def tasks(queue, args, idlist, skiplist):
# iterate over all events extracted from the schedule xml-export # iterate over all events extracted from the schedule xml-export

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 106 KiB