Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Soundcloud: How do I know the sound cloud track ID right away after uploading a track?

Tags:

soundcloud

http://developers.soundcloud.com/docs/api

When I look at the API docs, I see

 SC.stream("/tracks/293", function(sound){
      sound.play();
 });

When I look at the track I uploaded, it only provides me the permalink. How do I get the track ID from the website? Do I always have to do a /resolve to get the ID?

like image 694
slee Avatar asked Sep 20 '13 19:09

slee


People also ask

How long does it take for SoundCloud to process a track?

It normally takes up to 5 business days for a track to become monetized on SoundCloud. However, if you want to make sure you do not miss out on any monetized streams, you can submit tracks for monetization while they are still private or unreleased!

How do you see when you uploaded on SoundCloud?

Any track that was manually uploaded will now be organized by the date it was made public within SoundCloud's “Tracks” tab. The same organization is applied to the “All” as well as the “Streams” tab.

Why is my track not uploading on SoundCloud?

Check your upload allowance, and make sure you've got space to upload. Make sure you follow our upload requirements. Confirm your email if this is not done. Check our Status Blog to make sure that there are not any interruptions on site that could cause you difficulties loading pages.


1 Answers

This is probably more manual steps than /resolve, but it is "from the website." The sound id also appears in the embed code when you go to the sound and click "Share".

For example, if you go to a sound page, e.g.:

https://soundcloud.com/lowcountrykingdom/another-ordinary-day

Then click "Share", which brings up a pop up. Click "Embed" to switch to the embed tab, and copy the Embed code, which will look something like:

<iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/47580057&amp;color=ff6600&amp;auto_play=false&amp;show_artwork=true"></iframe>

Note the ID in the value of the url query parameter:

url=https%3A//api.soundcloud.com/tracks/47580057
like image 183
scott_ri Avatar answered Dec 29 '22 01:12

scott_ri