This operation renders a video and uploads the video to Dropbox
var parameters = {
ProjectId: 'STRING_VALUE', // required
Movie: 'STRING_VALUE', // required
Params: {key: value, ...}, // required
Format: 'STRING_VALUE', // required
OAuthAccessToken: 'STRING_VALUE', // required
AuthSecret: 'STRING_VALUE', // required
Filename: 'STRING_VALUE', // required
Async: true || false,
}
render.renderToDropbox(parameters, function(err, data) {
if(err) {
console.log(err); // an error occurred
} else {
console.log(data); // successful response
}
});
| ProjectId | string | A Project ID |
| Movie | string | Movie to render |
| Params | map | Render Parameters |
| Format | string | Format to Render |
| OAuthAccessToken | string | Facebook OAuth 2.0 access token |
| AuthSecret | string | Impossible FX auth secret |
| Filename | string | Filename for uploaded video |
| Async | boolean | Perform Async |
err
(Error) - the error object returned from the request. Set to null if the request is successful.
data
(Object) — the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:
Token (string)Upload (string)
Terms of Use | © 2017, Impossible Software, or its affiliates.