├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── create_bootanimation.py ├── example └── example.gif ├── gifextract.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamantony/create_android_bootanimation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamantony/create_android_bootanimation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamantony/create_android_bootanimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamantony/create_android_bootanimation/HEAD/README.md -------------------------------------------------------------------------------- /create_bootanimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamantony/create_android_bootanimation/HEAD/create_bootanimation.py -------------------------------------------------------------------------------- /example/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamantony/create_android_bootanimation/HEAD/example/example.gif -------------------------------------------------------------------------------- /gifextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamantony/create_android_bootanimation/HEAD/gifextract.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow>=2.0.0 2 | --------------------------------------------------------------------------------