Last updated: March 27, 2020
EXPERT SUMMARY
Lost or confused by this? Continue reading below for step-by-step instructions.
YouTube video URL:
https://www.youtube.com/watch?v=y1XxnZA1yiQ
HTML Site for BrightAuthor:
https://www.youtube.com/embed/y1XxnZA1yiQ?playlist=y1XxnZA1yiQ&autoplay=1&rel=0&controls=0&loop=1
(Start playing automatically, don't show related videos from other channels, don't show controls, loop the video)
STEP-BY-STEP INSTRUCTIONS
1. Open the YouTube video or playlist in a web browser on your computer. You should be on www.youtube.com
2. Look at the address bar. We need to note the URL we are looking at.
This is a single video and the URL is
https://www.youtube.com/watch?v=y1XxnZA1yiQ
3. We need to extract a few elements from the URLs
First we need the ID of the current video, which is v parameter, which appears after the v= in the URL.
https://www.youtube.com/watch?v=y1XxnZA1yiQ
The current video ID here is y1XxnZA1yiQ
4. We also need the ID of the playlist, but single videos don't have a playlist, so we're going to use the current video ID as the playlist.
https://www.youtube.com/watch?v=y1XxnZA1yiQ
The playlist ID is y1XxnZA1yiQ
5.Now we can start constructing the URL we need.
Start with
https://www.youtube.com/embed/
Then add the current video to the end.
https://www.youtube.com/embed/y1XxnZA1yiQ
6. Next we need to add the playlist, so the first, part, add ?playlist= to the URL we're constructing.
https://www.youtube.com/embed/y1XxnZA1yiQ?playlist=
7. Then we add the playlist ID, which for a single video, is the video ID again.
https://www.youtube.com/embed/y1XxnZA1yiQ?playlist=y1XxnZA1yiQ
8 . Now we add a series of parameters to control how the video gets displayed. These might be different if you're displaying the video interactively, but we'll assume a non-interactive display for now.
To automatically start playing without interaction, we need to add &autoplay=1
https://www.youtube.com/embed/y1XxnZA1yiQ?playlist=y1XxnZA1yiQ&autoplay=1
10. Do you want related videos from other channels as suggestions? Probably not! Add &rel=0 to the end.
https://www.youtube.com/embed/y1XxnZA1yiQ?playlist=y1XxnZA1yiQ&autoplay=1&rel=0
11. The video controls aren't useful in a non-interactive situations, turn them off by adding &controls=0 to the end.
https://www.youtube.com/embed/y1XxnZA1yiQ?playlist=y1XxnZA1yiQ&autoplay=1&rel=0&controls=0
12. Finally, in most cases you want the video to loop when it reaches the end. Add &loop=1 to the end.
https://www.youtube.com/embed/y1XxnZA1yiQ?playlist=y1XxnZA1yiQ&autoplay=1&rel=0&controls=0&loop=1
13. Now add the URL we constructed into BrightAuthor as the URL for an HTML Site. (File>Presentation Properties, HTML Sites tab)
https://www.youtube.com/embed/y1XxnZA1yiQ?playlist=y1XxnZA1yiQ&autoplay=1&rel=0&controls=0&loop=1
14 . Then add an HTML5 State
with Enable external data and Enable native video plane playback ticked. Note that BrightAuthor
does not know when a YouTube video ends, so if you want it to move to the next state after the video is complete, you will need to set the Time on screen value on a non-interactive HTML5 state, or put a Timeout event on an interactive HTML5 state in order to get it to move to the next item if you do
not want the video to loop endlessly or just stay "stuck" at the end of the video.

15 . You're done! Publish the presentation and unless the video is restricted (not all videos can be embedded, and some aren't in a compatible format for our players), your Internet connection is broken, or the player's clock isn't set (prevents HTTPS from working), it should play!
11 Comments