是否可以根据嵌入的Soundcloud轨道的时间戳触发事件?
我想根据Soundcloud音轨的内容显示/隐藏照片,但无法在API文档中找到相关信息。
答案 0 :(得分:0)
是的,那是可能的。请分享一些代码。嵌入是什么意思?
我假设您将使用JS。
您可以使用ie定时评论。 https://developers.soundcloud.com/docs/api/sdks#javascript
SC.stream("/tracks/293", {
autoPlay: true,
ontimedcomments: function(comments){
console.log(comments[0].body);
}
});
或者您可以使用标准播放器事件并使用您自己的数据库。