Check out the new place where the repo lives: https://codeberg.org/techus/bootanimation-creator
Simplicity.
This is a simple Python script that turns a ffmpeg video or png series into an Android boot animation.
I didn't discover any tools that would do this, so I decided to make one.
FFmpeg if you plan on decoding video files. If you already have a WAV file and series of PNGs you don't need anything.
You can download a binary for your system. currently supported OSes are:
- Windows x64
- Linux x64 (may or may not also run on macOS x64)
If you want to run this from source, you can!
- Install requirements first:
sudo apt install python3 python3-pip git
# Optional
sudo apt install python3-tksudo dnf install python3 python3-tkinter gitDownload Python from: https://www.python.org/
Download git from: https://git-scm.com/download/win
brew install git
To be done.
- Clone:
git clone https://github.com/MajliTech/bootanimation-creator.git
# Or, with ssh if you prefer
git clone git@github.com:MajliTech/bootanimation-creator.git
cd bootanimation-creator- Create a venv (optional, if you plan on building then this will make binaries lighter):
# On Ubuntu, you need to install python3-venv
# On Windows, you might need to use python instead of python3 in case it is asking for install from MS Store.
sudo apt install python3-venv
python3 -m venv .- Download requirements:
# On Windows, you might need to use python instead of python3 in case it is asking for install from MS Store.
python3 -m pip install -r src/requirements.txt
# On Windows you also need:
python3 -m pip install --upgrade pywin32- Run:
# On Windows, you might need to use python instead of python3 in case it is asking for install from MS Store.
python3 src/main.py- Follow steps 1-5 from previous guide
- If you have created a venv for this build, install Pyinstaller:
pip install pyinstaller - Build
pyinstaller src/main.spec
- The executable will be placed in the
src/distfolder, go pick it up and run it!