payload_all.py
script makes use of mixamo2 API to download all anims for a single character that you choose.
The animations are saved with descriptive long names instead of the short ones used by default by mixamo UI.
How to use this script
- Browse mixamo.com
- Log in
- Open JS console (F12 on chrome)
- Download an animation and get the character ID from the Network tab
- Then past the character id in the "character" variable at beginning of this script
character = '2591eddd-...'
- Then past the Authorization id in the "Authorization" variable at beginning of this script
Authorization = 'Bearer eyJhbGciO...'
- run
pip install -r requirements.txt
- run
python pyload_all.py
to download all animation
Demo:
Thank's https://github.com/gnuton/mixamo_anims_downloader
for the inspiration.