Skip to content

Get rendered frames from Girls' Frontline spine animation files.

License

Notifications You must be signed in to change notification settings

sekian/girls-frontline-spine-to-gif

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GirlsFrontline-getChibiFrames

Extract individual frames for each animation from the Girls' Frontline spine files.

All the extracted chibi animations will be ready to be built as a .gif or any other media format.

GIF creation example with ImageMagick

convert -delay (10/3) -dispose Background -loop 0 "*.png" output.gif

GIF creation example with FFmpeg

ffmpeg -v warning -i %04d.png -filter_complex "split [a][b]; [a] palettegen=reserve_transparent=on:transparency_color=ffffff [p]; [b][p] paletteuse, fps=30" output.gif