如何将声音片段上传到SoundCloud

时间:2012-12-26 19:11:36

标签: android soundcloud

在我的Android应用程序中,我正在录制一个音频文件,然后我想分享给SoundCloud和GET的网址。最好的方法是什么?

我可以通过明确的Intent分享,但我怎样才能获得跟踪网址?我应该使用java包装器上传音频吗?

1 个答案:

答案 0 :(得分:2)

File myAudiofile = new File("/path/to/audio.mp3");
Intent intent = new Intent("com.soundcloud.android.SHARE")
  .putExtra(Intent.EXTRA_STREAM, Uri.fromFile(myAudiofile))
  .putExtra("com.soundcloud.android.extra.title", "Demo");
  // more metadata can be set, see below

try {
    // takes the user to the SoundCloud sharing screen
    startActivityForResult(intent, 0);
} catch (ActivityNotFoundException e) {
    // SoundCloud Android app not installed, show a dialog etc.
}

参考: