https://github.com/jamesduncombe/reschecker
Resolution checker for use with Iron.io's Worker service
https://github.com/jamesduncombe/reschecker
Last synced: 4 months ago
JSON representation
Resolution checker for use with Iron.io's Worker service
- Host: GitHub
- URL: https://github.com/jamesduncombe/reschecker
- Owner: jamesduncombe
- License: mit
- Created: 2014-02-25T20:53:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-25T20:55:16.000Z (over 11 years ago)
- Last Synced: 2025-01-12T07:09:24.444Z (6 months ago)
- Language: Go
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# reschecker
Program to help checking resolutions concurrently.
This expects JSON in the following form:
```json
{
"config": {
"callbackUrl": "http://url_callback_address",
"token": "validation_token_for_user"
"validation": {
"width": 2048,
"height": 2048,
},
"images": [
"http://image_url",
]
}
}
```- `callbackUrl` a callback address that the results are posted to
- `token` a token used to attribute the images to a user for example
- `validation` is used to specify the minimum `width` and `height` of the images
- `images` is an array of images to validate (these can be on S3 etc)