Questions tagged [soundcloud]

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.

2097 questions
7
votes
1 answer

Soundcloud Widget API gives Error only in Chrome: The AudioContext was not allowed to start

I had an simple Player on my Website where a Soundcloud Track can be played. I'm using the Widget API. Everything was working fine the last weeks, but now i get this Error in Chrome Browser (Desktop): The AudioContext was not allowed to start. It…
KainLaVey
  • 99
  • 5
7
votes
1 answer

Reliable way of getting a Soundcloud track playback count via the API?

I'm using the /tracks API endpoint to retrieve song stats like playback count and favorite count. I've noticed that the playback count in the API is not the same as the one on the website. Here's an example I found a workaround here…
Virgiliu
  • 3,068
  • 6
  • 32
  • 55
7
votes
1 answer

List of Soundcloud iframe parameters?

I'm working on a CMS, and want to let users embed Soundcloud tunes and playlists. I'd like to avoid fiddling with the API - since it doesn't appear to be necessary: ) Instead I just piece together an iframe-src-url with the appropriate parameters. I…
T4NK3R
  • 4,245
  • 3
  • 23
  • 25
7
votes
1 answer

Soundcloud stream, soundmanager2 object never starts playing on Chrome when calling play()

Using SC.stream in my react app, I'm simply trying to play a track from soundcloud API. Here is my code: SC.initialize({ client_id: '12xxx' // my client ID }); //[...] console.log(this.props.track.trackId); // I get here successfully the…
Arthur Rgr
  • 71
  • 3
7
votes
1 answer

How can i know my remaining Soundcloud API Limit?

I am working with Sound-Cloud API in my application for these i create some APIs. It was working fine yesterday but now its showing error: string(47) "The requested URL responded with HTTP code 429. I checked Sound-Cloud documentation and find…
Ashish Chaturvedi
  • 1,352
  • 3
  • 13
  • 37
7
votes
2 answers

How to Create a Soundcloud playlist ( set ) using javascript?

I am trying to use Soundcloud api for my application where user can create his/her own playlist of track . As a test case the example I am testing is almost exactly taken from the Soundcloud dev docs. below is my code
Vivek Singh
  • 2,453
  • 1
  • 14
  • 27
7
votes
2 answers

artwork_url is null in track lists, has value for single track. Bug?

A random query like https://api.soundcloud.com/tracks.json?genre=Rnbhiphop gives something like [ { "kind":"track", "id":161532719, (...) "artwork_url":null, (...) }, { "kind":"track", …
Zumteufel
  • 165
  • 1
  • 3
  • 10
7
votes
1 answer

SoundCloud track.stream_url not working for some of the tracks

I noticed that on some tracks on soundcloud stream_url points to 404 - page not found. The track is set as streamable, but still stream url is not working. Here is an example: http://api.soundcloud.com/tracks/129894766.json?consumer_key=KEY returns…
cucko
  • 1,436
  • 11
  • 25
7
votes
1 answer

Cross Domain Requests Not Working With SoundCloud in Safari

I simply cannot get a json response in Safari, calling SoundCloud's API. var inputSet={url:setUrl}, clientId={client_id:client_id}; $.getJSON( "https://api.soundcloud.com/resolve.json", $.extend(inputSet, clientId), function( data )…
Liam Bigelow
  • 789
  • 7
  • 15
7
votes
1 answer

Why does the SoundCloud API seem crippled?

I'm building an app, and trying to use API /tracks using the 'q' filter. This queries SoundCloud and retrieves songs based on search terms. Simple enough. My problem: it seems like the search functionality is crippled using /tracks when compared to…
wle8300.com
  • 2,588
  • 1
  • 23
  • 29
7
votes
1 answer

Not playing sounds from stream_url ing SoundCloud API

I can display the songs in the table view but i cant play it. here's my code when get tracks button is tapped - (IBAction) getTracks:(id) sender { SCRequestResponseHandler handler; handler = ^(NSURLResponse *response, NSData *data, NSError…
7
votes
2 answers

Pause Youtube embed when playing Soundcloud embed

I have a music blog that contains various embedded soundcloud and youtube players. What I want to do is prevent any audio from playing simultaneously. In other words while I am playing a youtube video, if I click to play the soundcloud embed I want…
Jaqx
  • 826
  • 3
  • 14
  • 39
7
votes
0 answers

How to embed SoundCloud widget in Android app

How can I embed a SoundCloud widget in an Android app if I have the track's URL? Is there an official SoundCloud wrapper that integrates the widget in an app, or is a way to integrate the track's URL in Android's native player? What's the best way…
linkyndy
  • 17,038
  • 20
  • 114
  • 194
7
votes
3 answers

Connecting to and uploading tracks with Soundcloud API using C# .NET

I'm trying to upload an audio track to the Soundcloud.com using C#.NET, but there aren't any resources for .NET anywhere. Could someone post a link or an example of how to upload an audio file to my Soundcloud.com account using .NET? Thank…
Arman Bimatov
  • 1,789
  • 4
  • 24
  • 31
6
votes
1 answer

How to upload files to Soundcloud using Python?

I am building an application that would record what people say, generate an audio file and upload it to SoundCloud and get the URL of the uploaded track using Python. I used PyAudio to record and generate an audio file - a wave file. But I need to…
vijay
  • 325
  • 1
  • 3
  • 12