English 中文(简体)
Android下电话机下的声音小溪
原标题:SoundCloud Stream in Phonegap under Android

目前我正试图在PhoneGap/Cordova和Android下让声音频道 API工作。这里的代码在浏览器中运行良好:

  var track_url =  http://soundcloud.com/mymusic/mymusic 
    ;
    SC.get( /resolve , {
        url : track_url
    }, function(track) {

        $("#stream").live("click", function() {
            SC.stream("/tracks/" + track.id, function(sound) {
                sound.play();
                $("#stop").live("click", function() {
                    sound.stop();
                });
            });
        });
    });

我的机器人除虫装置上没有声音。 LogCat 没有给出任何标准错误或电线错误。 有人见过吗?

事先多多谢感谢

问题回答

您的代码看起来还不错, 我成功地测试了它。 我唯一能想到的就是解答电话是返回404或类似的。 您是否尝试过检查错误?

var track_url =  http://soundcloud.com/your/track ;

SC.initialize({
  client_id:  YOUR_CLIENT_ID 
});

SC.get( /resolve , { url: track_url }, function(track, error) {
  if (error) {
    alert("Error: " + error.message);
    return;
  }

  // ... rest of your code
});

试试看有没有发现什么,如果没有,请留言。





相关问题
Playing a Sound With Monotouch

No matter what I try (build -> content, NSUrl, filename) I get a null exception : file not found when I try to play a .caf sound file in monotouch. //var path = NSBundle.MainBundle.PathForResource("...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

Play sound in iPhone web app with Javascript?

I m currently creating an iPhone web application for piano chords, and I wanted to add an option that would let the user press a Play button and play the selected chord. However, I m not sure how to ...

热门标签