Skip to content

Latest commit

 

History

History
57 lines (46 loc) · 1.31 KB

README.md

File metadata and controls

57 lines (46 loc) · 1.31 KB

MIT License

C3WOC DiVOC Animation

Visit di.c3voc.de for more information about DiVOC.

Render Result You can View the Rendered Video at YouTube.

Tipps and Tricks

Turn SVG into PNG

for i in *.svg
do
    echo "Transform Image: $i"
    inkscape \
    --actions="export-filename:$i.png; export-do;"\
    --export-dpi 96 \
    --export-background white \
    $i
done

Turn PNG to MP4

ffmpeg -framerate 24 \
  -pattern_type glob -i '*.png' \
  -c:v libx264  -preset slow \
  -crf 22 -pix_fmt yuv420p \
  result.mp4

Turn PNG into webm with alpha channel

ffmpeg -framerate 24 \
  -pattern_type glob -i '*.png' \
  -pix_fmt yuva420p \
  result.webm

License

License for the original DiVOC Artwork:

alles cool, aber steck dir keine Bohnen in die Ohren

License for the animation, assets etc.

MIT License

Copyright (c) 2021 L3D <[email protected]>