Embedding Videos
To get the code from YouTube go to the video you want to embed and click on Share.
Click on Embed.
You will then be presented with the Embed code. Simply copy and paste it into the Trailer Embed Code box.
If you want the video to autoplay, then you'll need to add some extra code manually.
You'll need to add ?rel=0&autoplay=1
See below...
Before
<iframe width="640" height="360" src="[YouTube Video URL]" frameborder="0" allowfullscreen></iframe>
After
<iframe width="640" height="360" src="[YouTube Video URL]?rel=0&autoplay=1" frameborder="0" allowfullscreen></iframe>
If you prefer to use Vimeo, then like YouTube you need to get the embed code and follow the same process as above.
If you want the Video to autoplay then as with YouTube you will need to add some additional code.
You'll need to add ?autoplay=1&loop=1
See Below...
Before
<iframe scr="VimeoVideo" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
After
<iframe scr="VimeoVideo?autoplay=1&loop=1" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>