soundcloud

Soundcloud API support pagination?

六月ゝ 毕业季﹏ 提交于 2019-12-23 06:38:16
问题 How would I use the "linked_partitioning=1" to call on the "next_href" in the response? I see the next_href in the response, but I don't know what to do next? :\ Please help Thank you in advance :) 回答1: You just have to make a call to this url. Read more here: https://developers.soundcloud.com/blog/offset-pagination-deprecated https://developers.soundcloud.com/docs/api/guide#errors EDIT: According to your comments, i have added some code in JS, which print all tracks from Boilerroom. Using

SoundCloud Android explicit Intent sharing does not work anymore

可紊 提交于 2019-12-23 05:28:18
问题 Since the latest SoundCloud App update on Android, the explicit intent sharing (from other app) does not work anymore. Instead of showing the share page (which is normally called by the intent), it starts to record audio over the microphone, which is definitely wrong. I checked developers.soundcloud.com, there's neither a sign that explicit intent sharing is no longer support, nor anything else in that direction. So it looks more like a major bug in the latest SoundCloud update on Android.

Soundcloud api - tracks info - replace file

和自甴很熟 提交于 2019-12-23 04:47:44
问题 A simple question about the soundcloud API, but I can't find this info, and can't make the test by myself since I don't have a pro account: If a user update (replace) a file, how could I know it? Is the id replaced? Or the date changed? Thanks 回答1: No, there's no real indication for that in the API response, but I guess it could be the case that the original_content_size changed. 来源: https://stackoverflow.com/questions/18812996/soundcloud-api-tracks-info-replace-file

soundcloud node npm

可紊 提交于 2019-12-22 20:02:07
问题 Is there an official or "blessed" Node.js NPM module for interacting with SoundCloud. There are a few wrapper API's around. I'm wondering whether there is a favoured one by the community. Thanks. 回答1: There is one. https://github.com/podviaznikov/soundcloud-node npm install soundcloud 回答2: there is NOT a blessed module for node.js. There is a decent pacakge here: https://github.com/khilnani/soundclouder.js/blob/master/lib/soundclouder.js It's currently maintained but still pretty basic 回答3: I

Bind() to a dynamically embedded souncloud widget

醉酒当歌 提交于 2019-12-22 15:03:10
问题 I am using the following code to embed a soundcloud widget: SC.oEmbed(soundcloud_url, {color: "3C9FCE"}, document.getElementById('container_id')); How do I bind a SC.Widget.Events.Ready to it? I don't see any way to set the id or class of the embed iframe so that I can select it. Nor do I know when it has been loaded so that I can bind it, such as the following dysfunctional code: var frame = document.getElementById('container_id').getElementsByTag("iframe")[0]; frame.bind(SC.Widget.Events

Bind() to a dynamically embedded souncloud widget

丶灬走出姿态 提交于 2019-12-22 15:03:01
问题 I am using the following code to embed a soundcloud widget: SC.oEmbed(soundcloud_url, {color: "3C9FCE"}, document.getElementById('container_id')); How do I bind a SC.Widget.Events.Ready to it? I don't see any way to set the id or class of the embed iframe so that I can select it. Nor do I know when it has been loaded so that I can bind it, such as the following dysfunctional code: var frame = document.getElementById('container_id').getElementsByTag("iframe")[0]; frame.bind(SC.Widget.Events

Soundcloud Redirects Https -> Http

梦想的初衷 提交于 2019-12-22 13:53:49
问题 I have a page using the SoundCloud js sdk to stream audio. The initialization looks like this: SC.initialize({ client_id: myId, redirect_uri: "https://" + window.location.host + "/soundcloud-callback" }); The page uses SC.whenStreamingReady , SC.get and SC.stream in a way equivalent to the following: // Wait for SoundManager SC.whenStreamingReady(function() { soundManager.onready(function() { // Get track metadata and stream the track itself SC.get("https://api.soundcloud.com/tracks/" +

How to dynamically embed the “tiny” version of the Soundcloud player using the JS SDK?

醉酒当歌 提交于 2019-12-22 12:12:58
问题 I'm building a website for a music composer. He'd like to publish samples of his work via Soundcloud and embed some of those samples on his website. He has a Premium account. I'd like to make this as easy as possible for him (he ain't no geek). Basically, I'd like to let him just copy & paste the song's URL from the browser's address bar and make my application do the rest for him. That's relatively easy to do actually - and I successfully made it work with the standard version of the player.

SoundCloud Widget API setVolume Method broken?

随声附和 提交于 2019-12-22 10:24:34
问题 I'm successfully using Soundcloud's widget API, except the setVolume() method is broken :( First, I love the widget, but I'm blown away that after all that amazing work there is no volume control available! People will immediately "back button" out of my site when they hear 100% audio and I can't alter it using setVolume()... I have to get it working or pull it :( Here is what is happening, I have an instance named "widget" (which loads and plays well on the page). widget.bind(SC.Widget