https://github.com/awslabs/aws-media-insights-engine/blob/master/IMPLEMENTATION_GUIDE.md
What are the triple boxes next to the kinesis streams?
The following resource(s) failed to create: [MediaconvertOperation, GenericDataLookupOperation, technicalCueDetectionOperation, contentModerationOperation, WebCaptionsOperation, TranscribeOperation, comprehendPhrasesOperation, textDetectionOperation, CreateSRTCaptionsOperation, CreateVTTCaptionsOperation, ThumbnailOperation, contentModerationOperationImage, comprehendEntitiesOperation].
No, let's say I have a set of videos I've already broken down into frames, that have a specific partition structure, eg:
s3://my-path/parent_id={}/child_id={}
Where the parent_id holds a set frames partitioned by a specific set of ID's. This is for performance reasons doing sagemaker inference (if I uploaded a 25 minute video and tried to do inference on all the frames, that would be very time consuming without splitting the jobs parallel)
Hello, i want to use the MIE API to execute a workflow with a video which is in S3 and I get a 500. How should the media object be specified?
I use the following Code:
headers = {"Content-Type": "application/json", "Authorization": IdToken}
response = http.request('POST', workflow_api_endpoint+'workflow/execution', body=data.encode('utf-8'), headers=headers)
json.loads(response.data.decode('utf-8'))
{'Code': 'ChaliceViewError',
'Message': "ChaliceViewError: Exception ''S3Bucket''"}
{
...,
"Input":
{"Media":
{"Video":
{"S3Bucket": "mie-dataplane-1yk436e309xh",
"S3Key":"Man_weiß_et_nich-TV_total_Nippel.mp4"}
}
}
}