All Collections
EasyWebinar Deep Dive
Automated Events
Setting up amazon S3 and syncing it - cors permissions
Setting up amazon S3 and syncing it - cors permissions

how do i upload a video with Amazon s3

Updated over a week ago

Alright, so you have your .mp4 video all rendered and ready to upload into you amazon s3 account. What do you do next and how do you connect it? Well the next few steps are easy ones and the video within this article will help you through it as well. PLEASE SEE NOTE AT BOTTOM OF THIS ARTICLE...

First you are going to log into your amazon console so that we can copy down the keys needed to sync it up with easywebinar. Once logged in you will click on your account name then on my security credentials.

Then you will click on continue to security credentials.. Then click on access keys (access key id and secret access keys)

You will most likely need to #1 create a new access key.. To get both the keys to add into Easywebinar click on #2 show access key and then to have these keys for later use you must #3 download the file to save to your computer,

Within easywebinar you will click on edit account

Then you can paste in the access key and secret key

This video will show you everything step by step and discuss in greater detail.

Please see the above video for greater detail on what to do when you get the error for the cors setting..


you can add the code below as shown in the video and the easywebinar url is already in it.. Add it just as shown within the above video.

<CORSRule>
    <AllowedOrigin>https://app.easywebinar.com</AllowedOrigin>
    <AllowedMethod>PUT</AllowedMethod>
    <AllowedMethod>POST</AllowedMethod>
    <AllowedMethod>DELETE</AllowedMethod>
    <AllowedHeader>*</AllowedHeader>
</CORSRule>
<CORSRule>
    <AllowedOrigin>http://www.example2.com</AllowedOrigin>
    <AllowedMethod>PUT</AllowedMethod>
    <AllowedMethod>POST</AllowedMethod>
    <AllowedMethod>DELETE</AllowedMethod>
    <AllowedHeader>*</AllowedHeader>
</CORSRule>
<CORSRule>
    <AllowedOrigin>*</AllowedOrigin>
    <AllowedMethod>GET</AllowedMethod>
</CORSRule>

-------------------------------------------------------

NOTE:

please make sure that there are no spaces in the filename just a dash - if you want to separate the words.. sometimes amazon can add in a plus symbol to the url due to the space and break the url..

Did this answer your question?