INNER CODE UNIT · JavaScript
sendVideoData
PierfrancescoSoffritti/android-youtube-player · chromecast-receiver/js/YouTubePlayer.js:86
function sendVideoData(player) {
const videoDuration = player.getDuration()
YouTubePlayerBridge.sendVideoDuration(videoDuration)
}
function sendStateChange(newState) {
YouTubePlayerBridge.sendStateChange(newState)
}
}
// JAVA to WEB functions
function seekTo(startSeconds) {
player.seekTo(startSeconds, true)
}
function pauseVideo() {
player.pauseVideo()
}