SoundCloud HTML5 widget does not skip high track numbers

I try to load the HTML5 SoundCloud widget and immediately start track 30 from the set.

My code looks like this:

<iframe id="sc-widget" src="https://w.soundcloud.com/player/?url=http://soundcloud.com/drasla&start_track=30&auto_play=true></iframe>

However, this only starts with playing track # 25. The widget seems to paginate the data and only first pulls out the first 25 tracks if the user does not scroll down.

I tried passing the parameter limit=100to the url, but this does not seem to increase the initial load.

Is it possible to immediately jump to the track after # 25 using the widget?

+3
source share
1 answer

Create a playlist for the artist, add tracks, then configure the widget code:

https://w.soundcloud.com/player/?url=https://api.soundcloud.com/playlists/<playlist_number>?start_track=<track_number>&auto_play=true

example: https://w.soundcloud.com/player/?url=https://api.soundcloud.com/playlists/462496?start_track=38&auto_play=true

, № 38 .

+2

All Articles