SoundCloud is a social audio storage service and community. Their api allows for deep mashups, allowing access to nearly all track meta data, and provides streaming and downloads in various formats.
0
votes
1answer
82 views
insecure content from soundcloud embed url = http
I'm using the auto_html gem to embed soundcloud urls.
In my chrome javascript console I receive the following error:
The page at about:blank displayed insecure content from http://w.soundcloud.com/
...
0
votes
1answer
67 views
Creating a layout for SoundCloud widgets
I want to have some musics on my website and prefer to use SoundCloud as it is like an standard in music world. Just the problem is that its widgets are not suitable for but designed website. So is ...
1
vote
1answer
102 views
With HTML5 SoundCloud player widget how do you programmatically skip to a different track without causing second unwanted track from playing?
I am using the HTML5 Soundcloud widget API to skip to another song on the sound finish event.
http://jsbin.com/axuzoj/4/edit
Unfortunately there appears to be a race condition bug in the finish ...
0
votes
0answers
59 views
Accessing tracks of followings on Soundcloud
I am a Python / Django newbie and I'm trying to pull through the tracks of users I am following. I got the code up and running in straight Python but tried to translate it into Django and it returns ...
1
vote
0answers
100 views
SoundCloud HTML5 widget: share panel covers waveform when audio finished
When the audio completes in the HTML5 version of the SoundCloud widget, the share panel appears and covers the audio waveform. The user can replay the audio; however, the share panel doesn't ...
2
votes
1answer
88 views
SoundCloud API Stream Quality
I've been working on an iOS app that streams DJ mixes from SoundCloud. The mixes are roughly 2 hours in length.
I was reading the App Store guidelines and item 9.3 has me a bit concerned:
...
0
votes
1answer
77 views
Soundcloud API 401 Unauthorized When Using /resolve
I'm using the 'Authenticating without the SoundCloud Connect Screen' method of authentication (see http://developers.soundcloud.com/docs#authentication). That's the method where you provide the whole ...
0
votes
0answers
42 views
Soundcloud JS SDK is not working with IE9
When querying tracks via the soundcloud javascript SDK, no requests are sent in IE9 e.g.
// initialize soundcloud app
SC.initialize({
client_id: MY_USER_ID
});
SC.get("/groups/55517/tracks", ...
0
votes
0answers
54 views
grooveshark api & soundmanager
Is it possible to play sounds hosted on grooveshark on another website?
whith soundcloud it's this simple :
SC.get('/resolve', { url: o.href }, function(track) {
...
1
vote
0answers
60 views
Search by geo filter with soundcloud api
When attempting to search for tracks based on 'geo' filter I always get back zero results. According to the documentation you can use * as a wildcard to search lat/lon ranges that exist in the ...
0
votes
0answers
45 views
Third party audio cloud service, which does not require authentication
I have an iOS app, which let's users share songs on fb, twitter, etc. For storing the songs, I have been using sound cloud API. However, sound cloud requires users to login before I can store their ...
0
votes
1answer
60 views
CORS not working at all
The SDK demo works fine (it doesn't need special CORS stuff since it is on the same domain)
When I try to send the request from localhost:8080 this happens
So I'm trying to request ...
0
votes
0answers
22 views
API calls and the Cache of MetaTags
I have a tagging strategy for my client. There are a couple of specific tags that change quarterly. I recently updated one of the tags removing it from one track and applying it to another, and after ...
0
votes
0answers
55 views
EmailUnlock SoundCloud widget breaks in IE7, IE8
We are building a site for customer who has requested the EmailUnlock (SoundCloud) widget in-page.
It works fine in all browsers EXCEPT IE7 and IE8. It shows up in page OK, BUT on clicking play gives ...
0
votes
1answer
72 views
Custom Soundcloud visualizer webgl
I've been looking through the soundcloud documentation and trying to find a way to create a visualizer for soundcloud tracks. The problem is that in order to create a proper visualizer, I need access ...
0
votes
1answer
30 views
Trying to specify a query param (q) works using SDK but returns 401 unauthorized from cURL
I am trying to do a search query on the SoundCloud API.
Using their JavaScript SDK, the following works:
SC.get('/tracks', { q: 'punk' }, function(tracks) {
console.log(tracks);
});
But if I try ...
0
votes
2answers
80 views
sound cloud track id url scheme and web
I have a push notification arriving into my iOS app that has the track id. I'm able to successfully open the sound cloud app to the right track, but I would like to open that track in mobile safari if ...
0
votes
1answer
32 views
soundcloud recent plays api
When you connect your soundcloud to facebook it can post the tracks you listen to in your newsfeed as you listen to them.
Are the recently played tracks of a user accessible through the public api?
0
votes
1answer
94 views
Play SoundCloud Track
can i play a track from SoundCloud in my android app? I'm trying this code but it doesn't works:
String res = ...
1
vote
2answers
314 views
SoundCloud like audio player [closed]
Is there any advanced opensource web audio player that looks like the one used on soundcloud.com, that I can use it on my webapp, with my own audio files hosted anywhere like amazon s3 or other host.
0
votes
1answer
118 views
Soundcloud: Stratus player continue to play across pages?
I'm confused about whether the Stratus player for SoundCloud can play continuously between pages, or at least pick up the track where it was.
SoundCloud describes the STratus player as follows... "A ...
0
votes
0answers
126 views
How to access returned JSON object from soundcloud api
I am trying to access a json object returned from soundcloud. I can access it using the following
var myJSON = $.getJSON("http://api.soundcloud.com/users/<myuserid ...
1
vote
0answers
169 views
Soundcloud oEmbed only works with http, not https; all urls are https
I'm working with some soundcloud files that I want to oEmbed in a discourse message board. The urls are https but when you hit the soundcloud enpoint with a https, it causes a 500. For example, the ...
0
votes
0answers
132 views
Problems playing audio with the Soundcloud API on Android 2.3
On a 2.3.3 LG device, when playing songs we will get a missing content message. However, on the 2.3.6 LG & Nexus 7, it played with no issues. This is for the Indie Shuffle app.
On the device, we ...
0
votes
2answers
58 views
401 during access token setup
I've been attempting to get this working for the past day or so without any luck. I've finally simplified the code down to it's bare minimum and can't seem to find a solution.
The $callbackURL is set ...
1
vote
1answer
150 views
Need a Javascript URL Regex [duplicate]
Wondering if someone could help with out with creating a regex..
Basically, taking an iFrame's src, and seeing if it's from SoundCloud. If it is, return its id. For example:
var src = ...
0
votes
1answer
64 views
SoundCloud waveform JSON API
You can get a data representation of the SoundCloud waveform, from this URL:
https://wis.sndcdn.com/OVXGhROsaZkq_m.png
This feature is undocumented, but the site uses it as a clever way to optimize ...
0
votes
1answer
329 views
Get artwork_url from Soundcloud API and show album covers in custom SC/SM2 player
I've been trying to sort out how artwork_url can be used from soundclouds API in order to output each cover into this custom player, and have each appropriate thumb next to its own track in the ...
-1
votes
2answers
97 views
Best approach for drop down navigation [closed]
I currently have this navigation bar, made from CSS and HTML, mostly inline-block elements:
What I want to achieve is the same affect as this navigation menu on SOUNDCLOUD
Where the menu drops ...
0
votes
1answer
46 views
Soundcloud API: Querying for users by country
I am using the python wrapper and trying to find users from a specific country.
I believe the following line of code should return users from Poland, but instead I get many users with other countries ...
0
votes
3answers
105 views
iOS url scheme to open specific youtube and soundcloud page in respective apps?
Is there anyway to use an iOS URL Scheme to open the YouTube and Soundcloud iOS Applications to a particular user's profile?
I've tried youtube://user/myusername and soundcloud:user:myusername but ...
2
votes
0answers
33 views
Reading Soundcloud methods in the widget api
I am keen to access control the Soundcloud Widget data.
I just can't recall the syntax to set api_setVolume() to zero ie mute.
This is the code I've put in the tag
<head>
<script ...
0
votes
1answer
129 views
SoundCloud control without using iframe
Is it possible to control SC player without using the widget/iframe? I followed the jQuery set-up link http://developers.soundcloud.com/docs/custom-player and have a basic page with three songs:
...
1
vote
1answer
277 views
With SoundCloud default audio widget can you set it to shuffle from JavaScript?
I am using the default SoundCloud audio widget to play a playlist and would like the songs to play in a random order. I am using the SoundCloud JavaScript SDK oEmbed object (the iframe version).
...
0
votes
1answer
127 views
Soundcloud HTML5 Widget is not loaded, throws error
I am trying to use SoundCloud HTML5 widget.
I want to load the widget and then, through JavaScript, tell it what to play. But when I tried to do this by this code
<script ...
1
vote
1answer
131 views
Playing a SoundCloud file in IOS app
Using the quick start guide provided would like to play a SoundCloud track within IOS app.
The code provided to play the stream is here:
SCAccount *account = [SCSoundCloud account];
...
0
votes
2answers
384 views
SoundCloud Custom Player not working in FireFox?
I'm making a website for this guy and he wanted me to install the SoundCloud Custom Player. I did this and have found that it works fine in Chrome but it is not working in FireFox (I'm on 19.0.2) or ...
1
vote
1answer
70 views
access waveform.png inside .css sheet to use webkit-mask?
based on the custom-player-examples im building my own player.
i used the minimal-player template.
after i set up the player like i want it to be, i started to customize the design (color.css, ...
0
votes
0answers
50 views
How to make an event handler for jPlayer when a song loads?
I'm using the jplayer.min.js and I would like to add an event handler in my php file when a new song loads. I need this because I am using SoundCloud files and they require a link to the SoundCloud ...
0
votes
1answer
31 views
401 Error on Stream even though API says share is public and accepted
So I have been chatting with my developer and we have noticed a problem with the API. Check out this song:
http://api.soundcloud.com/tracks/61858057?client_id=[MYCLIENTID]
My developer said to say ...
1
vote
1answer
154 views
iFrame links doesn't work
I've created a Ruby on Rails app which is located at heroku, you can check it here "http://soundcloud-dj-contest.herokuapp.com/"
App is working perfectly and I've placed it inside the iFrame on ...
1
vote
2answers
220 views
How to add SoundCloud files to jPlayer?
Right now I have a website that uses jPlayer to stream mp3s on. I also want to be able to add the functionality of letting SoundCloud stream directly on the player.
I know this is possible, because ...
2
votes
0answers
108 views
How can I get the secret link for a track posted to Soundcloud in Python?
I'm developing a simple app using Python where I can post tracks to my own Soundcloud account. I would like to get the 'Secret link' URL for a track that I post. For example, I get the most recent ...
3
votes
1answer
148 views
How can I access SoundCloud-Stream URLs in Python?
Some time ago I wrote a little tool for a friend of mine. I retrieved all stream-links (like this) from a soundlist and downloaded all those with a small python script.
Since begin of March, ...
0
votes
0answers
56 views
Soundcloud upload in background
Our ios app lets users upload remixes to Soundcloud. We use the SC API, all works fine. But, when we hit 'Upload and Share', we cannot seem to do anything till the upload finishes. is there a way to ...
-1
votes
1answer
88 views
0
votes
1answer
114 views
Soundcloud custom player not playing on mobile safari after user event
This is a possible duplicate of this question, but I need an example of how to make it work. The following works in desktop browsers, but doesn't in mobile safari (I'm testing in iOS 6.1.2).
I've ...
0
votes
1answer
71 views
SoundCloud API - Get my tracks by Release Number
Can I query my tracks and get right to the one with a particular release number?
Or do I have to get all my tracks then filter through them with something like for each
I know how to do the latter ...
0
votes
2answers
57 views
playback in reverse chronological order
Soundcloud is incredible. Compared to all other music-oriented sites, as a computer science major and a die-hard music fan, I can assuredly say Soundcloud is a beautiful creation, in terms of both ...
0
votes
1answer
110 views
Soundcloud Flash Widget, trying to play next song on page
I'm creating a personal blog with my friend where we are uploading our favorite songs via soundcloud and want songs to play one after another.
This is the general idea of what each song will be ...


