VIP LOGIN
SearchPRO
DJ WeaponsRemixes & EditsTrending WeaponsDJ Viral ChartID TrackerPopular TracklistsMashup PacksArchive FeedPRO
CollectionsYour CratesPRO
In The MixCreate TracklistPRO
SpotlightSubmit Your Music
Exclusive DealsPRO
AffiliatesPRO
Account

WILLIAM BLACK – S2O MUSIC FESTIVAL (2026) [Tracklist]

Click to load player
1
SLANDER & William Black - Back To U
2
William Black & Fairlane & AMIDY - Nightmare (DOIL Remix)
Unreleased
3
William Black - Different Shit
4
William Black & Baby Blue - Find Me In The Dark
5
William Black & Fairlane & AMIDY - Nightmare
6
Nikademis - Damage Control
7
William Black - Unlove U
8
Seven Lions & Wooli & Trivecta ft. Nevve - Island (DOIL Flip)
9
ATB - Ecstasy (William Black Remix)
Unreleased
10
Porter Robinson ft. Bright Lights - Language
11
Seven Lions & SLANDER & Dabin ft. Dylan Matthew - First Time
12
William Black ft. Monika Santucci - Deep Blue
13
IKU - LOSING MY MIND
14
Dabin & Trella - Worlds Away (Nikademis Remix)
15
Jason Ross & William Black ft. Oaks - Mirage
16
Dabin & William Black & James Droll - In The Cold
17
Mat Zo & Porter Robinson - Easy
18
Martin Garrix & Zedd ft. Emily Warren - Follow
19
Crankdat ft. SOFI - Whiplash
20
William Black - Deep End
21
William Black & Kate Morgan - Save Me
22
Far East Movement ft. The Cataracs & DEV - Like A G6 (Moore Kismet Reboot)
23
blurrd vzn - R909 (VIP)
24
PEEKABOO & LYNY - Like That (Tape B Remix)
25
SPORTMODE - Fly
26
LE SSERAFIM - Crazy
27
Wish I Could Forget (William Black Remix)
28
Control Freak - WE RUN THIS
29
Skrillex & ISOxo - fuze
30
ISOKNOCK & RL Grime - SMACK TALK
31
SLANDER & William Black ft. Jordan Shaw - Keep U Warm
32
William Black & Siberia & Freja The Dragon - Waiting On This Day Forever
33
Linkin Park - Numb (William Black Edit)
Unreleased
34
William Black & Afinity & Trella - Too Good To Be True
35
Zedd ft. Foxes - Clarity
Acapella
36
Benny Benassi ft. Gary Go - Cinema (ID Remix)
Unreleased
37
Kx5 ft. HAYLA - Escape (BROKN Remix)
38
Jason Ross & Blanke - One More Day (with Chandler Leighton)
39
SLANDER & William Black - Back To U
40
Said The Sky & Dabin ft. Clara Mae - In The End (Jason Ross Remix)
41
Said The Sky & William Black - All Falls Down
42
William Black & Fairlane ft. Dia Frampton - Butterflies
43
William Black & Afinity & No/Me - Let Me Go
44
Britney Spears - Toxic (ID Remix)
Unreleased ID
45
William Black & Baby Blue - Monster

Create your own tracklists, grow your fans, discover viral tracks and stock up your crates.

Join The Family 💜
or
Join The Family 💜

Discover 1000's of tracks, build crates & create your own tracklists.

' +'
' +'

Opening SoundCloud

One moment please...

'; // ------------------------------------------------------------------------- // OVERLAY — paint button + blocker on each SoundCloud iframe // ------------------------------------------------------------------------- function processEmbed(iframe){ if(iframe.dataset.sctProcessed)return; iframe.dataset.sctProcessed='true'; var parent=iframe.parentElement; if(!parent)return; if(!parent.style.position||parent.style.position==='static'){ parent.classList.add('sct-sc-parent'); } var h=parseInt(iframe.height)||166; var type=h>200?'visual':'mini'; // Click blocker so the SC widget itself can't be clicked var blocker=document.createElement('div'); blocker.className='sct-sc-blocker'; blocker.dataset.playerType=type; blocker.onclick=function(e){e.preventDefault();e.stopPropagation()}; parent.appendChild(blocker); // The actual orange button — clicks intercepted by delegation below var btn=document.createElement('div'); btn.className='sct-sc-button'; btn.dataset.playerType=type; btn.innerHTML=SC_ICON+'SoundCloud \u2192'; btn.title='Open in SoundCloud'; parent.appendChild(btn); } function findEmbeds(){ document.querySelectorAll('iframe[src*="soundcloud.com/player"]:not([data-sct-processed])').forEach(processEmbed); } function initOverlay(){ findEmbeds(); new MutationObserver(findEmbeds).observe(document.body,{childList:true,subtree:true}); } // ------------------------------------------------------------------------- // CLICK INTERCEPTION — route through /r/?u=... // ------------------------------------------------------------------------- // Widget API loader — singleton promise so repeat callers share the same load var widgetApiPromise=null; function loadWidgetApi(){ if(window.SC&&window.SC.Widget)return Promise.resolve(); if(widgetApiPromise)return widgetApiPromise; widgetApiPromise=new Promise(function(resolve,reject){ var s=document.createElement('script'); s.src='https://w.soundcloud.com/player/api.js'; s.onload=resolve; s.onerror=reject; document.head.appendChild(s); }); return widgetApiPromise; } // Extract the public SC track permalink from an iframe src function getPermalink(iframe){ return new Promise(function(resolve){ var m=iframe.src.match(/url=([^&]+)/); if(!m){resolve(null);return} var decoded=decodeURIComponent(m[1]); // Already a public permalink if(decoded.indexOf('soundcloud.com')>-1&&decoded.indexOf('api.soundcloud.com')===-1&&decoded.indexOf('w.soundcloud.com')===-1){ resolve(decoded);return; } // api.soundcloud.com/tracks/NNN → ask Widget API loadWidgetApi().then(function(){ try{ var w=SC.Widget(iframe); w.getCurrentSound(function(sound){ if(sound&&sound.permalink_url)resolve(sound.permalink_url); else resolve(null); }); }catch(e){resolve(null)} }).catch(function(){resolve(null)}); }); } function reset(btn){btn.innerHTML=SC_ICON+'SoundCloud \u2192';btn.classList.remove('loading')} // Write the branded splash into a freshly-opened tab. function paintTab(tab){ if(!tab)return; try{tab.document.open();tab.document.write(TAB_SPLASH);tab.document.close();}catch(e){} } // Event delegation at capture phase — fires BEFORE any button's own onclick function sctAffHandleClick(e){ var btn=e.target.closest('.sct-sc-button'); if(!btn)return; if(e._sctAffHandled)return; e._sctAffHandled=true; e.preventDefault(); e.stopPropagation(); if(e.stopImmediatePropagation)e.stopImmediatePropagation(); var parent=btn.closest('.sct-sc-parent'); if(!parent)parent=btn.parentElement; if(!parent){console.warn('[sct-aff] no parent for button',btn);return} var iframe=parent.querySelector('iframe[src*="soundcloud.com/player"]'); if(!iframe){console.warn('[sct-aff] no iframe under parent',parent);return} // Open the tab NOW, synchronously, while we still have the user gesture, // and immediately paint the branded loading splash into it. var newTab=window.open('','_blank'); paintTab(newTab); btn.classList.add('loading'); btn.innerHTML=SPIN+'Opening...'; getPermalink(iframe).then(function(url){ if(!url){ if(newTab)newTab.close(); btn.innerHTML=SC_ICON+'Error'; setTimeout(function(){reset(btn)},2000); return; } var target=BASE+'?u='+encodeURIComponent(url); if(newTab){ newTab.location.href=target; // redirect the already-open splash tab }else{ window.open(target,'_blank'); // fallback if popup was blocked anyway } btn.innerHTML=TICK+'Opened!'; btn.classList.remove('loading'); setTimeout(function(){reset(btn)},1000); }); } // Bind on BOTH capture and bubble. _sctAffHandled prevents double-execution. document.addEventListener('click',sctAffHandleClick,true); // capture phase document.addEventListener('click',sctAffHandleClick,false); // bubble phase // ------------------------------------------------------------------------- // BOOT // ------------------------------------------------------------------------- if(document.readyState==='loading'){ document.addEventListener('DOMContentLoaded',initOverlay); }else{ initOverlay(); } })();

Save to crate

OR