This is an iOS client that works with AWS SDK to store your pictures and videos. It handles de-duping and allows deleting the content already uploaded from your phone.
This app is not associated with Amazon.com, Inc.
Each asset (video, picture ...) is made up of one or more resources. These resources could be the original image data, additional thumbnails, editing data etc.
The binary blobs for these resources are stored on S3 in a bucket that looks like pickery.XXXX-XXX-XXX-XXXX-XXX
(the UUID is used to avoid bucket name collisions). The key name is the signature (unique identifier) of the resource. The app will create this bucket if it does not exist already.
The meta data associated with the assets is stored on DynamoDB in a table named pickery
. The app will create this table if it doesn't exist already. The table will have the following schema:
Name | Type | Description |
---|---|---|
signature | string | The unique identifier of the asset. This is the first signature of all resources associated when sorted |
metaData | string | This is a JSON string containing the asset meta data (if nil, the user has deleted the asset) |
timeStateChanged | number | This is the number of seconds passed since Jan 1. 1970 at UTC0 since the last time we edited this asset |
pod repo update && pod install
and then open Pickery
workspace.
Check out Python/Export.py
for a script that you can use to download all your assets using boto.