admin管理员组文章数量:1345072
I'm looking for a way to detect a play event in an embedded Youtube video via Javascript. Right now I'm able to detect state change, but I can't figure out how to unbind the event after and fire another event saying that it's plete. I'd also prefer not to use add/removeEventListener because I guess IE8 and below don't have this function.
My code so far,
function onYouTubePlayerReady(playerId) {
console.log('loaded');
var ytPlayer = document.getElementById(playerId);
ytplayer.addEventListener("onStateChange", "onytplayerStateChange");
}
function onytplayerStateChange(newState) {
console.log("Player's new state: " + newState);
if(newState === 1) {
sendYtUrl();
}
}
function sendYtUrl() {
console.log('play detected');
ytplayer.removeEventListener("onStateChange");
}
I'm hoping to pop into sendYtUrl, remove listener, then do whatever I need to do, or even better, keep it cleaner and leave it in the same function.
Thanks in advance!
I'm looking for a way to detect a play event in an embedded Youtube video via Javascript. Right now I'm able to detect state change, but I can't figure out how to unbind the event after and fire another event saying that it's plete. I'd also prefer not to use add/removeEventListener because I guess IE8 and below don't have this function.
My code so far,
function onYouTubePlayerReady(playerId) {
console.log('loaded');
var ytPlayer = document.getElementById(playerId);
ytplayer.addEventListener("onStateChange", "onytplayerStateChange");
}
function onytplayerStateChange(newState) {
console.log("Player's new state: " + newState);
if(newState === 1) {
sendYtUrl();
}
}
function sendYtUrl() {
console.log('play detected');
ytplayer.removeEventListener("onStateChange");
}
I'm hoping to pop into sendYtUrl, remove listener, then do whatever I need to do, or even better, keep it cleaner and leave it in the same function.
Thanks in advance!
Share Improve this question asked Oct 1, 2012 at 15:24 SH56SH56 931 silver badge9 bronze badges2 Answers
Reset to default 9You don't have to unbind the onStateChange
event to know when the video ends or is pleted. The onStateChange
only needs to have one event listener. It will be fired and return the following states every time any of these situations occur:
-1 (unstarted)
0 (ended)
1 (playing)
2 (paused)
3 (buffering)
5 (video cued)
In your function onytplayerStateChange
, add another if
statement to catch when the video is plete:
function onytplayerStateChange(newState) {
console.log("Player's new state: " + newState);
if(newState === 1) {
sendYtUrl();
} else if(newState === 0) {
console.log("Video has ended!");
}
}
Thank you so much! That bumped me in the right direction.
Here's what I ended up doing.
var ytPlaying = 0;
var ytPlayed = '';
var currPlaying = '';
function onYouTubePlayerReady(playerId) {
//console.log('loaded');
var ytPlayer = document.getElementById(playerId);
ytPlayer.addEventListener("onStateChange", "onytplayerStateChange");
}
function onytplayerStateChange(newState) {
currPlaying = window.location.hash;
//console.log("Player's new state: " + newState);
if (newState === 1) {
console.log('playing');
clientSideTracking();
}
}
function clientSideTracking() {
// console.log('client tracking');
//console.log(currPlaying, ytPlayed);
if (currPlaying != ytPlayed) { // if current playing isn't the same as prior played
//console.log('different'); // then it's different - track it.
var event = new AnalyticsPageEvent('Youtube Analytics', currPlaying);
event.trigger();
}
ytPlaying = 0; // change back to 'not played' and change to 0 so that it's logged
ytPlayed = currPlaying;
}
What it does is trigger the AnalyticPageEvent when there's a new URL that hasn't been played yet. :)
本文标签: javascriptDetecting a play event in youtube apiStack Overflow
版权声明:本文标题:javascript - Detecting a play event in youtube api - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743766287a2535287.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论