INNER CODE UNIT · JavaScript
playVideo
PierfrancescoSoffritti/android-youtube-player · chromecast-receiver/js/YouTubePlayer.js:105
function playVideo() {
player.playVideo()
}
function loadVideo(videoId, startSeconds) {
lastVideoId = videoId
player.loadVideoById(videoId, startSeconds)
YouTubePlayerBridge.sendVideoId(videoId)
}
function cueVideo(videoId, startSeconds) {
lastVideoId = videoId
player.cueVideoById(videoId, startSeconds)
YouTubePlayerBridge.sendVideoId(videoId)
}