Last active
August 29, 2015 14:17
-
-
Save dmlap/2a7f4a2074c78df8af61 to your computer and use it in GitHub Desktop.
Playlist configuration in the Brightcove Player.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// just playlist API | |
{} | |
// playlist API + UI, no autoadvance | |
{ | |
"playlist": true | |
} | |
// playlist API + UI, autoadvance after 5 seconds | |
{ | |
"playlist": true, | |
"autoadvance": 5 | |
} | |
// playlist API + UI, autoadvance with no delay | |
{ | |
"playlist": true, | |
"autoadvance": 0 | |
} | |
// no API, no UI | |
{ | |
"playlist": false | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment