clappr-youtube-playback
v0.0.3
Published
Clappr plugin for playing YouTube based videos
Downloads
5
Readme
clappr-youtube-playback
Clappr plugin for playing YouTube based videos
It uses the YouTube iframe API for managing the YouTube content.
Don't use this plugin unless you are sure the source you are trying to load is actually from YouTube since the playback does not check whether the source is a YouTube video.
Usage
Just embed the player enabling the plugin, setting source to YouTube video id:
var player = new Clappr.Player({
sources: ['nfWlot6h_JM'],
poster: 'https://i.ytimg.com/vi/nfWlot6h_JM/hqdefault.jpg',
parentId: '#player-wrapper',
plugins: {
playback: [YoutubePlayback]
}
});
You can try it here.
Playlist support
Although using an array of video ids to create a dynamic playlist is still not supported, the plugin has support for YouTube lists. Just omit the parameter source
or sources
and add youtubePlaylist
instead, like the example:
var player = new Clappr.Player({
poster: 'https://i.ytimg.com/vi/nfWlot6h_JM/hqdefault.jpg',
parentId: '#player-wrapper',
youtubeShowRelated: true,
youtubePlaylist: 'PUANLZYMidaCbLQFWXBC95Jg',
plugins: {
playback: [YoutubePlayback]
}
});