我上传了一个文件到亚马逊桶:
aws.uploadFile(sourcePath, bucketName, sourceStorageKey, callback);
然后我创建了一个转换作业:
aws.createTranscodingJob(pipelineId, sourceStorageKey, resultStorageKey, callback);
回调接收作业信息作为数据对象:
data:{
Job:{
Input: { AspectRatio ... },
Output:{ Id, Key, PresetId ... }
}
}
不幸的是,Output对象不包含从中下载转换后文件的目标桶。如何在转码作业完成后获取转换后的文件?