caas
  • What are the configurations of the HLS video we deliver?
  • What is required in order to play the videos?
  • What if the HLS videos are not playing?
  • How to fix CORS issue?
  • How to test HLS streams?
  • Where can I get the API token?
  • How to retrieve metadata from my inventory?
  • How to retrieve genre list?
  • How to retrieve category list?
  • How to set up my AWS S3 bucket to receive the files?
Powered by GitBook
On this page

Was this helpful?

How to set up my AWS S3 bucket to receive the files?

This steps will allow us access the bucket that you created and will give us permission to copy content directly to your bucket.

PreviousHow to retrieve category list?

Last updated 4 months ago

Was this helpful?

To receive content directly to your AWS S3 Bucket

  1. Create a bucket in your account in the region ap-southeast-1

  2. Add the following policy to the bucket.

Leave the ACL as recommended as in this image.

"Resource" is your bucket name

{
    "Version": "2012-10-17",
    "Id": "allritespolicy",
    "Statement": [
        {
            "Sid": "allritesaccess",
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::363464534806:user/allritesdelivery"
            },
            "Action": "s3:*",
            "Resource": [
                "arn:aws:s3:::yourbucketname",
                "arn:aws:s3:::yourbucketname/*"
            ]
        }
    ]
}

3. Send us the bucket name.

4. To test the files, you can make the bucket public by going to the Permissions tab and unblock the public access..

Or, you can create a presigned url to test the video playback without making the bucket publicly accessible.