README
This commit is contained in:
parent
e0f7f9d054
commit
1ae90ab020
1 changed files with 38 additions and 0 deletions
38
README.md
Normal file
38
README.md
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
L3D's opentoonz source files
|
||||||
|
==============================
|
||||||
|
|
||||||
|
How to export in opentoonz
|
||||||
|
----------------------------
|
||||||
|
* Render as PNG to empty folder
|
||||||
|
|
||||||
|
* Create WEBM with alpha channel:
|
||||||
|
```
|
||||||
|
ffmpeg -framerate 50 \
|
||||||
|
-pattern_type glob -i '*.png' \
|
||||||
|
-pix_fmt yuva420p \
|
||||||
|
result.webm
|
||||||
|
```
|
||||||
|
|
||||||
|
* Create a GIF:
|
||||||
|
```
|
||||||
|
ffmpeg -framerate 50 \
|
||||||
|
-pattern_type glob -i '*.png' \
|
||||||
|
result.gif
|
||||||
|
```
|
||||||
|
|
||||||
|
* Create LOW_RES Gif
|
||||||
|
```
|
||||||
|
ffmpeg -framerate 50 \
|
||||||
|
-pattern_type glob -i '*.png' \
|
||||||
|
-vf scale="730:-1" \
|
||||||
|
result.gif
|
||||||
|
```
|
||||||
|
|
||||||
|
* Create MP4
|
||||||
|
```
|
||||||
|
ffmpeg -framerate 50 \
|
||||||
|
-pattern_type glob -i '*.png' \
|
||||||
|
-c:v libx264 -preset slow \
|
||||||
|
-crf 22 -pix_fmt yuv420p \
|
||||||
|
result.mp4
|
||||||
|
```
|
Loading…
Reference in a new issue