0
votes
1answer
55 views

How to embed audio

I'm trying to design a surveymonkey survey that has some audio embedded in it. As in people taking the survey can listen to an audio clip, and answer questions about it. How to best get it done, I'm ...
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 ...
1
vote
2answers
317 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
90 views

Receiving Stream from soundcloud in different file formats

At the moment I am using url to generate src="" for an audio tag which looks like: <audio src="http://api.soundcloud.com/tracks/81827374/stream?client_id=my_id" controls> </audio> ...
0
votes
1answer
298 views

HTML5 custom player not working with Soundcloud api uri

I am using a jQuery plugin which turns simple <audio></audio> into a set of different elements which are than controlled by javascript, basically creates a custom html5 player. You can ...
0
votes
2answers
400 views

How to use Soundcloud api to get stream into html5 audio player?

I've just started learning javascript and as my first attempt I'd like to create custom audio player which uses soundcloud's api as a source for music. So far this is what I got set up: <!DOCTYPE ...
0
votes
1answer
114 views

Visualising Audio From SoundCloud's Custom player?

I would like to know if it is possible to visualise audio from soundcloud's custom player: http://developers.soundcloud.com/docs/custom-player# At the moment I could only think about using videos, ...
0
votes
1answer
273 views

Synchronising SoundCloud audio and Vimeo/Youtube video playing together

Alright, I'm working on one project which involves html5 audio, in addition to that a video is shown while audio is playing (Just video, no controls etc). Video is a visualisation (sometimes called ...
0
votes
1answer
187 views

player state implemented javascript on beatport vs. iframes? soundcloud support?

I have successful implementation of static players on many of my sites using iframes. This has served my purposes thus far, and has been a little complex to make happen. i often have needed to pass a ...
1
vote
0answers
216 views

Recording audio to internet - SoundCloud API?

So I need to allow clients to record audio to the internet. Best solution I've found so far which keeps them on our site is the Soundcloud API and I just give them our account details and they use a ...
2
votes
0answers
118 views

html 5 or jquery player with share functions

I'm looking for an html 5 player or jquery player with share functions to at least facebook and twitter. And a link copy function so someone could paste a link in email etc. Soundcloud is close ...
0
votes
0answers
217 views

SoundCloud Player Widget: control de mini player with jQuery

Sound Cloud has some instructions to control the players with jQuery: http://developers.soundcloud.com/docs/widget#quick-start I am unable to make anything working. For instance, Is there any way to ...
2
votes
1answer
927 views

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 ...
1
vote
1answer
582 views

SoundCloud, download or stream file via api

I try to use download_url to get file from soundcloud. I either get 'redirected' or '401 unauthorized', how can I download/stream it to client side? thanks
1
vote
1answer
268 views

Sound Cloud Error

Here is my redirect.php, i always get 'HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request. ' php code: ...
0
votes
1answer
135 views

Sound Cloud Custom Player not playing

I'm trying to setup an example Sound Cloud player by following the directions here. I end up with an index.html page that looks like this: <!DOCTYPE HTML> <html> <head> ...
0
votes
0answers
107 views

Sound Cloud and FLASH

I'm having troubles with connecting flash and sound cloud api so i would really appriciate if someone with bigger experience could help me out. Is it possible to stream an audio file through flash ...
-1
votes
1answer
259 views

How to upload a sound to SoundCloud using the JS API [closed]

Apparently you can't simply upload a sound to the SoundCloud API using Javascript. I'd like people to drag and drop their sound to a specific zone which will initiate the Soundcloud upload. ...
0
votes
1answer
535 views

SoundCloud Stream in Phonegap under Android

I'm currently trying to get the SoundCloud API working under PhoneGap/Cordova and Android. Here's the code that is working fine within the browser: var track_url = ...
2
votes
3answers
352 views

Soundcloud API return only mp3 formats?

I get track info from soundcloud, and use stream_url property for initialising html5 audio, but it works only in chrome, safari, and IE. How I can get .ogg track for opera and firefox, if it possible? ...
0
votes
0answers
448 views

Custom Soundcloud Player with comments display

I have been asked for a project to create an embedded custom HTML5 Soundcloud player with comments display. After looking through the SoundCloud API, the custom player options and the HTML5 widget, ...
0
votes
2answers
426 views

Reference URL with JavaScript to play sound?

Im using soundcloud dot com to upload my sounds. i want to press a button within my mobile application and have that sound play. So basically i want my sound to be referenced from the URL that I am ...
0
votes
1answer
246 views

Streaming audio over HTTP

Does Soundcloud API has an available stream for a song if given the song title and an artist name? Will it give an HTTP url to stream that song and a url for that song on Soundcloud? Could not find ...
1
vote
1answer
372 views

Audio hosting platform / Server-side software

I'm looking for somewhat for audio which is like Kewego or Dailymotion Cloud to video. I'm looking for a good service to: Encode user-uploaded audio files in predefined qualities Stream it on ...
0
votes
2answers
594 views

get audio playlist from soundcloud

I have html5 audio player written using soundmanager2. In my jquery I would need to get track urls and titles for my player from the link like this: ...
2
votes
1answer
849 views

Getting max amplitude for an audio file per second

I know there are some similar questions here, but most of them are concerning generating waveform images, which is not what I want. My goal is to generate a waveform visualization for an audio file, ...
0
votes
1answer
396 views

Working SoundCloud example project for the iPhone

Does anyone know of one that is easy to get started? I would like to post audio files from my app to Facebook via Soundcloud, but the API is not super accessible for a novice like myself.
4
votes
2answers
2k views

Create playlist in SoundCloud with PHP

I am creating a music website on which i have integrated SoundCloud API. Now I want to create a playlist at run time and attach tracks to that playlist. My code is following: class Soundcloud { ...