Reputation: 49
All of Amazon documentation on their Video Rekognition API are examples of videos that are stored in S3 bucket. Is there anyone out there who have tried using the API without storing the videos in S3 i.e. on local machine or GCS?
Upvotes: 0
Views: 173
Reputation: 269400
All video-related Amazon Rekognition API calls (eg start_face_detection()
and start_face_search()
) require input to be provided from Amazon S3.
Calls related to still images can alternatively be passed as a series of Bytes in the call.
Upvotes: 1