SoundCloud API-获取当前时间并设置流式传输时的当前时间

时间:2014-10-29 01:28:54

标签: javascript soundcloud

所以我使用SoundCloud api传输声音,我想知道如何设置流中的当前时间并获取流中的当前时间。如果后者不可能,它并不重要,因为我可以使用setInterval作为秒表。所以,如果我使用它:

SC.stream('/tracks/' + track.id, function(sound){
    sound.start();
}

我想要

sound.--method to get current time in sound--();

sound.--method to set current time in sound--();

1 个答案:

答案 0 :(得分:3)

实现这一目标的一种方法可能是这样的:

SC.stream("/tracks/" + track.id, { 
        autoPlay: true,
        whileplaying: function () {
            console.log(this.position);
            }       
});

http://jsfiddle.net/iambnz/wmm7agq5/

在此设置方法:

http://www.schillmania.com/projects/soundmanager2/doc/#soundmanager-setposition