Louis Wong
Louis Wong

Reputation: 49

Can I use Amazon Rekognition video api without storing videos in S3 buckets?

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

Answers (1)

John Rotenstein
John Rotenstein

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

Related Questions