Bulk Download of Recordings and Gallery items
Write a simple script
- Login to mi cloud https://i.mi.com
- Navigate to https://us.i.mi.com/#record or https://us.i.mi.com/v1#gallery
- In web browser (Chrome) press F12 to open Chrome developer tool
| // Subscribe on YouTube, and follow on TikTok (@mattupham)! Socials found below: | |
| // https://mattupham.com/links | |
| // @ me on Discord with any questions! | |
| https://link.mattupham.com/discord | |
| // -------------------------------------------- | |
| // PLEASE REPLACE "your-api-key-here" WITH AN | |
| // API KEY FROM https://ipgeolocation.io/ | |
| let apiKey = "your-api-key-here"; |
| #! /usr/bin/env python3 | |
| import json | |
| import hashlib | |
| with open('export.json') as f: | |
| pws = json.load(f) | |
| def build_radix_index(i, offset, lchar): | |
| radix = {} |
Bulk Download of Recordings and Gallery items
Write a simple script