- Any issue is welcome if you find a bug or have a question to ask
- Test feedback on your camera is invaluable to all users at anytime
- Please note that OneDrive resumable API for uploading file larger than 4MB is not very reliable for my case, see issue. However, YMMV.
- A star 🌟 from you is the best encouragement to me if you think this repository helps you.
This repository is inspired by roleoroleo's yi-hack-MStar.gdrive uploader. The gdrive uploader does provide some convenience, however, my Google drive has only 15GB space shared with Gmail and other account applications, and it is very easy to get storage fully packed with uploaded media files. Fortunately, I've subscribed Microsoft 365 Developer Program which provides 5TB storage space. I think uploading files to OneDrive is a better option for me.
If you have a subscription of Microsoft OneDrive Stroage or Microsoft 365 Developer Program, you will get more storage space, which can allow you to store your camera videos and pictures to it other than paying an expensive manufacturer's storage premium plan.
- much easier to set up on your camera
- use a JSON file to configure
- only few instructions you need to run on your terminal
- unattended upload your video (.mp4) and image (.jpg) files once set up successfully
- both personal and tenant Microsoft accounts are supported
- auto organize uploaded folders into multi-levels by months and dates
- safe auto-clean of your earliest files when storage reaches the specified threshold
- Re-transmission control is used to assure files upload reliability
Yi cameras hacked with the same file hiearacy or builtin applications are more likely to be supported. Anyway, your own separate tests are necessary before you use it. I've tested on my own camera.
-
model y201c(Yi 1080p Dome BFUS) with firmware 4.6.0.0A_201908271549 and yi-hack-MStar 0.4.7 by denven
-
model y623(Yi 1080p Pro 2K YFUS) with firmware 12.0.51.08_202403081746 and Allwinner v2 firmware v0.3.2 by @mrxyzl
-
Yi 1080p Home IFUS + Allwinner v2 firmware by @kosauser
-
welcome to test it on your camera 😄
- make sure you've hacked your camera with the matched firmware, please check yi-hack-MStar or yi-hack-Allwinner-v2
- you have an OneDrive account assosiated with your Microsoft Azure account, you'd better have some knowledge of using the Azure portal.
- use App registrations to register an application on Azure portal
- for the
Supported account types
choice: chooseAccounts in this organizational directory only
if your are a Azure Directory Single tenant; choosePersonal Microsoft accounts only
if you are using your own Personal OneDrive. - for the Redirect URI setting, choose
WEB
type and put a live redirectable URL, you can clone OAuth2 callback and use the code to serve a local redirect urlhttp://localhost:8080/callback
- set up the required Graph API permissions
- For business/organization tenant user, add
Files.ReadWrite.All
- For personal account user, add
Files.ReadWrite
andFiles.ReadWrite.All
-
get your application client id, and tenant id (used for tenant account only, ignore it for personal account)
-
create a client secret and save the secret Value for next steps
- clone the repository code to your local computer and enter the code directory
- use the data fetched from Azure application to fill in your
config.json
file before uploading the files to camera. Please refer to the following example to edit theconfig.json
file in your directory:
{
"grant_type": "authorization_code",
"client_id": "9083c44f-605d-4d31-9d16-955e48d69965",
"client_secret": "dFE8Q~bUtscYyoTUCxt3RLawrfsnyVGARFhGdcH7",
"tenant_id": "e2a801f7-46fe-4dcf-91b7-6d4409c7760e",
"scope": "https://graph.microsoft.com/.default",
"video_root_folder": "yihack_videos",
"convert_utc_path_name": "false",
"auto_clean_threshold": "100",
"enable_idle_transfer": "false"
}
Configuration key | Default value | Description |
---|---|---|
grant_type | authorization_code | |
client_id | "" | fill in with your data |
client_secret | "" | fill in with your data |
tenant_id | "" | for personal account, set it as "consumers"; for tenant account, set a specific tenant id |
scope | https://graph.microsoft.com/.default | not required |
video_root_folder | yihack_videos | name string without white spaces, just let this program to create it for you on your OneDrive |
upload_video_only | true | not required; set it false will upload *.jpg files in the record folders |
convert_utc_path_name | false | not required; set it to true if you don't like the uploaded folders are in UTC time (for firmware v0.4.9 and later) |
auto_clean_threshold | 100 | disabled by default; setting a value in range [50, 100) will enable this feature |
enable_idle_transfer | false | setting to true has chances of files upload delayed |
video_root_folder_id | "" | auto-filled value when your root upload folder is created by this program, DO NOT fill it manually if you dont know your root upload folder id. |
-
upload code and dependent files to your camera sd card via
ssh
withroot
account or a FTP tool, the target path:/tmp/sd/yi-hack
:- create an empty directory named
onedrive
in path/tmp/sd/yi-hack
- upload
init.sh
,stop.sh
andscripts
andbin
directory to/tmp/sd/yi-hack/onedrive
- upload your own
config.json
file to/tmp/sd/yi-hack/onedrive
- create an empty directory named
-
sign in your Microsoft Azure account first
-
run the entry Shell script
init.sh
to complete the application authorization grant flow
cd /tmp/sd/yi-hack/onedrive/
./init.sh
- Follow the URL redirections to consent, sign in, etc. and then you will get a authorization code, copy the code to your camera terminal and continue.
- Now, you've set up yourOneDrive uploader. The script will begin to search media files not uploaded from camera sd card to upload, it may throw some information or error messages on your terminal. Error message like
curl: option --data-binary: out of memory
is tolerable and has no issue to the file upload. - Check your uploaded folder structure, you will find folders are organized by months and dates, which are more convenient to find and view.
- Check auto-clean logs (the earliest folder-hourly video folder will be deleted first when your storage usage exceeded the specified threshhold ratio).
- optional: reboot your camera
reboot -f # reboot without -f option cannot work on my camera
- In case you run into an issue or you just want to stop the uploader, run the
stop.sh
script to kill the running uploader.
cd /tmp/sd/yi-hack/onedrive
./stop.sh
- You might have messed up the configuration or you are not content with the running situation, you want to start again from the beginning.
- first, stop the uploader first by following above;
- delete all generated data (or keep file
data/last_upload.json
if you want the uploader to resume your uploading without any repetitive uploads); - run
./init.sh
again to get your access tokens again; - reboot the camera to run it unattendedly with the new configuration.
rm -rf data
rm -rf log
./init.sh
reboot -f
- If you want to setup with another OneDrive account (or Azure application data), you can delete or edit your current
config.json
, or replace it with a new one as well. - Once you have deleted
data
directory or changed application credentials inconfig.json
files, you must run theinit.sh
script manually to setup or reload your uploader again.
./init.sh
reboot -f
⚠️ be cautious to delete file./data/last_upload.json
if you want to restart the uploader and resume the upload to avoid repeatitive upload of all recorded files.