From 2e6f24a4f1de370d69314b61588fda25f9e19dc7 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Thu, 24 Apr 2014 23:53:11 +0200 Subject: [PATCH] add licence plate ;) --- cre200/artwork/abspann.svg | 264 ++++++++++++++++++++++++++++++++++++- cre200/artwork/cc0.svg | 98 ++++++++++++++ cre200/make.py | 19 ++- 3 files changed, 372 insertions(+), 9 deletions(-) create mode 100644 cre200/artwork/cc0.svg diff --git a/cre200/artwork/abspann.svg b/cre200/artwork/abspann.svg index 9a523cb..00d285a 100644 --- a/cre200/artwork/abspann.svg +++ b/cre200/artwork/abspann.svg @@ -15,7 +15,7 @@ id="svg2" version="1.1" inkscape:version="0.48.4 r9939" - sodipodi:docname="vorspann.svg"> + sodipodi:docname="abspann.svg"> image/svg+xml - + @@ -244,5 +244,259 @@ id="logo" x="284.3924" y="676.35394" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cre200/artwork/cc0.svg b/cre200/artwork/cc0.svg new file mode 100644 index 0000000..195592b --- /dev/null +++ b/cre200/artwork/cc0.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cre200/make.py b/cre200/make.py index e51422a..e0e9a71 100755 --- a/cre200/make.py +++ b/cre200/make.py @@ -101,6 +101,7 @@ def abspannFrames(): for i in range(0, frames): yield ( ('logo', 'style', 'opacity', 1), + ('lizenz','style', 'opacity', 1), ) # 4 Sekunde Fadeout Logo @@ -108,6 +109,15 @@ def abspannFrames(): for i in range(0, frames): yield ( ('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 1, -1, frames)), + ('lizenz','style', 'opacity', 1), + ) + + # 4 Sekunde Fadeout Logo + frames = 1*fps + for i in range(0, frames): + yield ( + ('logo', 'style', 'opacity', 0), + ('lizenz','style', 'opacity', "%.4f" % easeInCubic(i, 1, -1, frames)), ) # 3 Sekunden stehen bleiben @@ -115,6 +125,7 @@ def abspannFrames(): for i in range(0, frames): yield ( ('logo', 'style', 'opacity', 0), + ('lizenz','style', 'opacity', 0), ) @@ -202,10 +213,10 @@ def render(infile, outfile, sequence, parameters={}, workdir='artwork'): -render('vorspann.svg', - '../intro.dv', - vorspannFrames -) +# render('vorspann.svg', +# '../intro.dv', +# vorspannFrames +# ) render( 'abspann.svg',