renderToAzure

This operation renders a video and uploads the file to Microsoft Azure Blob Storage

var parameters = {
    ProjectId: 'STRING_VALUE', // required
    Movie: 'STRING_VALUE', // required
    Params: {key: value, ...}, // required
    Format: 'STRING_VALUE', // required
    Account: 'STRING_VALUE', // required
    Container: 'STRING_VALUE', // required
    Key: 'STRING_VALUE', // required
    Async: true || false,
    ContentType: 'STRING_VALUE'
}
render.renderToAzure(parameters, function(err, data) {
    if(err) {
        console.log(err); // an error occurred
    } else { 
        console.log(data);  // successful response
    }
});

Parameters

ProjectId string A Project ID
Movie string Movie to render
Params map Render Parameters
Format string Format to Render
Account string Storage account name
Container string Name of storage container
Key string Filename for the destination object
Async boolean Perform Async
ContentType string Mediatype (MIME) for the destination object

Callback

Terms of Use | © 2017, Impossible Software, or its affiliates. All rights reserved.