'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Andy C

Andrew Clarke, known by his stage name Andy C, is an English DJ and producer and co-founder of RAM Records. He is considered a pioneering force in the drum and bass genre. In 2011 Andy C won the Best DJ title in the 2011 Drum and Bass Arena Awards, and since the awards' inception in 2009, he has won the people's vote in the awards for Best DJ each year. He specialises in fast mixing, often employing three turntables. A signature mixing style of Andy is what he refers to as "The Double Drop": lining up 2 tunes so that both basslines drop at the same time. Andy C has often organised events where he DJs continuously for 6 hours. In January 2011 Mixmag UK announced the result of 14 month global poll from 35 nominations chosen by other big names in dance music: the survey asked global voters to decide Who is the Greatest DJ of All Time Andy C was ranked number 4 on it and the highest British DJ on the list.

Music career

Early years

Andy C was a DJ in his own right but gained a strong reputation and more bookings off the back of the hugely successful "Valley of The Shadows" track, an early drum and bass track that walked the line perfectly between hardcore and drum and bass just as the genres were starting to split. The track, created and released by Origin Unknown (made up of Andy C and Ant Miles)—often referred to as "31 Seconds" or "Long Dark Tunnel" because of the samples it incorporates—made use of a heavy bassline, bell samples and a rolling drum track to produce a popular, easy to recognise track that was easy to mix and became a favourite in dance floors at raves across the UK and beyond. The track was released as an EP in 1993 and has been remixed and re-released several times, and is widely recognised as one of the most influential drum and bass tunes of the early 90s. His signature look (Andy C is rarely seen without a baseball cap) and energetic movement behind the decks when playing make him a recognisable figure.

Podcasts:

Andy C

ALBUMS

Andy C

ALBUMS

  • ANDY C - EDC Vegas 2023

    Next level drum & bass vibes at the BassPod for EDC Las Vegas 🚀🚀🚀 Connect: https://instagram.com/andyc_ramagram https://facebook.com/andycofficial https://tiktok.com/@andycofficial https://soundcloud.com/andyc_ram https://open.spotify.com/artist/75HK7rgkmDMTnWwwmcN53N?si=4K9sc2qlQl68qgF8c_YnJg https://www.beatport.com/artist/andy-c/3393 #AndyC #drumandbass

    published: 25 May 2023
  • Rampage Total Takeover 2023 - Andy C

    Next up: Rampage 2023 - Total Takover 10 + 11 March 2023 Rampage Open Air 2023 - 30 June + 1 + 2 July 2023 Tickets & info: https://linktr.ee/WeAreRampage https://www.facebook.com/RAMPAGE.RADAR/ https://twitter.com/WeAreRampage https://www.instagram.com/rampagebelgium/ https://www.youtube.com/user/WeAreRampageEvents https://open.spotify.com/playlist/3HNs6ZhyWva3XJRcWKlZA4?si=hRg_EP80QzKBbwIQY9mZXg

    published: 23 Mar 2023
  • Andy C - One7Four Stream (DJ Set) - D&BTV: Locked In x UKF On Air

    → Listen to our brand new Drum&BassArena Podcast: https://dnb.lnk.to/Podcast002dn 🎧 Check the Drum&BassArena shop → http://bit.ly/DnBA_Shop Andy C delivers one of the most heavily-anticipated streams since lockdown, powering his way through a huge 90-minute selection of flavours old and new. Check out all the D&BTV: Locked In sets → https://live.breakbeat.co.uk/?ym=past Andy C: Facebook → https://www.facebook.com/andyc Instagram → https://www.instagram.com/andyc_ramagram SoundCloud → https://soundcloud.com/andyc_ram Twitter → https://twitter.com/ANDYC_ram Website → https://andyc.cc Link with Drum&BassArena: Follow our D&B Essentials playlist: http://bit.ly/DnB_Essentials_Playlist_yt Spotify → https://open.spotify.com/user/officialdnba Instagram → https://www.instagram.com/officialdnba...

    published: 12 Jun 2020
  • Rampage 2018 - Andy C feat. MC Tonn Piper

    Next up: Rampage Open Air 2023 - 30 June + 1 + 2 July 2023 RAMPAGE WEEKEND 2024: 15 YEARS OF RAMPAGE - 23 + 24 February Tickets & info: https://linktr.ee/WeAreRampage https://www.facebook.com/RAMPAGE.RADAR/ https://twitter.com/WeAreRampage https://www.instagram.com/rampagebelgium/ https://www.youtube.com/user/WeAreRampageEvents https://open.spotify.com/playlist/3HNs6ZhyWva3XJRcWKlZA4?si=hRg_EP80QzKBbwIQY9mZXg

    published: 06 Mar 2018
  • Rampage 2019 - ANDY C & MC TONN PIPER

    Next up: Rampage Open Air 2023 - 30 June + 1 + 2 July 2023 RAMPAGE WEEKEND 2024: 15 YEARS OF RAMPAGE - 23 + 24 February Tickets & info: https://linktr.ee/WeAreRampage https://www.facebook.com/RAMPAGE.RADAR/ https://twitter.com/WeAreRampage https://www.instagram.com/rampagebelgium/ https://www.youtube.com/user/WeAreRampageEvents https://open.spotify.com/playlist/3HNs6ZhyWva3XJRcWKlZA4?si=hRg_EP80QzKBbwIQY9mZXg

    published: 01 Apr 2019
  • Andy C & Fiora - Heartbeat Loud (Andy C VIP) (Official Video)

    Available to buy now! http://smarturl.it/heartbeatVIP After a packed out summer bringing drum & bass to some of the biggest stages in the world, Andy C gives us this massive VIP of his new single with Fiora 'Heartbeat Loud' Released 16th November 2014! Andy C Like → http://www.facebook.com/andyc Follow → http://www.twitter.com/andyc_ram Instagram → http://wwwinstagram.com/andyc_ramagram Fiora Like → https://www.facebook.com/Fioramusic Follow → https://twitter.com/Fioramusic Website → http://www.fiora.me/ RAM Records Like → http://www.facebook.com/RAMrecordsltd Follow → https://twitter.com/RAMrecordsltd Website → http://ramrecords.com » Connect with UKF Facebook (Drum & Bass Page) → http://facebook.com/ukfdrumandbass Twitter → http://twitter.com/UKF Spotify → http://bit.ly/UKFSpotif...

    published: 20 Oct 2014
  • Andy C - Drum & Bass Arena (2003)

    Artist: Andy C Title: Drum and Bass Arena Label: React Released: 2002 1–Bad Company Bullit Time 0:00 - 2:31 2–Total Science Nosher (Baron Remix) Remix – Baron 2:31 - 4:51 3–Moving Fusion Chilli Pepper (Remix) 4:51- 7:43 4–Keaton & Hive Bring It On 7:43 - 11:00 5–Fresh Foreigner 11:00 - 13:25 6–TaliHigh Hopes (All Over Now) 13:25 - 14:51 7–Matrix & Danny J* Vertigo 14:51 - 17:22 8–Lenny Fontana Spread Love (Nu:Tone Remix) Remix – Nu:Tone 17:22 - 20:57 9–DJ ZincSka (Remix) 20:57 - 22:01 10–Capone Tudor Rose (Shimon Remix) Remix – Shimon 22:01 11–Concord Dawn Ninja 12–E-Z Rollers Crowd Rocker 13–Photek We Got Heat (Ram Trilogy Remix) Featuring – Chiara*, Choc TyRemix – Ram Trilogy 14–John B Pressure (Remix) 15–D. Kay The Martians 16–Concord Dawn Don't Tell MeFeaturing – Tiki Taane ...

    published: 30 Aug 2014
  • Andy C BBC Radio One Residency - 07/04/2022

    🔔 Subscribe - https://www.youtube.com/c/REVDrumBass​​​ - and hit the bell to be notified whenever a new Radio One DnB Show with Rene LaVice or DnB 60 is released! Spotify REV Drum & Bass Mix Show playlist: https://cutt.ly/pzKKkLG Check out Andy C 🎧 on social media: Facebook - https://www.facebook.com/andyc Twitter - https://twitter.com/andyc_ram Andy C played: no tracklist provided #drumandbass #AndyC #RAM Our social media: Facebook: https://www.facebook.com/revdnb

    published: 08 Apr 2022
  • The Prodigy - Firestarter (Andy C Remix)

    Andy C remixes the incendiary Prodigy classic. Original version features on The Fat Of The Land 25th Anniversary Edition. Available to pre-order on limited edition 2LP silver vinyl now: https://prodigy.ffm.to/tfotl25 The Fat Of The Land 25th Anniversary – Remixes out now via XL Recordings featuring Andy C, Mefjus, Camo & Crooked, René LaVice, and Gydra. Special edition silver 12” Vinyl here: https://prodigy.ffm.to/fotl25-remixes Stream/download remix https://prodigy.ffm.to/mindfields-remix Subscribe to the Prodigy’s official YouTube channel: http://prdgy.co/ProdigySubscribe http://theprodigy.com Facebook - http://po.st/TheProdigyFacebook Twitter - http://po.st/TheProdigyTwitter Instagram - http://po.st/TheProdigyInstgram Spotify - http://prdgy.co/Spotify

    published: 30 Jun 2022
  • Andy C - Haunting

    Available to buy: http://po.st/Nightlife6iTunes Like Andy C: http://www.facebook.com/andyc Follow Andy C: http://www.twitter.com/andyc_ram Andy C -- Haunting is taken from Nightlife 6 which is out now: http://po.st/Nightlife6iTunes Like RAM Records: http://po.st/LikeRamFacebook Follow RAM Records: http://po.st/FollowRamTwitter RAM Records YouTube: http://po.st/SubscribeRamYT http://ramrecords.com http://www.facebook.com/ukfdrumandbass http://www.ukfmusic.com http://www.twitter.com/UKFLuke http://www.twitter.com/UKF

    published: 10 Nov 2013
developed with YouTube
ANDY C - EDC Vegas 2023
1:01:08

ANDY C - EDC Vegas 2023

  • Order:
  • Duration: 1:01:08
  • Uploaded Date: 25 May 2023
  • views: 261420
Next level drum & bass vibes at the BassPod for EDC Las Vegas 🚀🚀🚀 Connect: https://instagram.com/andyc_ramagram https://facebook.com/andycofficial https://tiktok.com/@andycofficial https://soundcloud.com/andyc_ram https://open.spotify.com/artist/75HK7rgkmDMTnWwwmcN53N?si=4K9sc2qlQl68qgF8c_YnJg https://www.beatport.com/artist/andy-c/3393 #AndyC #drumandbass
https://wn.com/Andy_C_Edc_Vegas_2023
Rampage Total Takeover 2023 - Andy C
1:03:16

Rampage Total Takeover 2023 - Andy C

  • Order:
  • Duration: 1:03:16
  • Uploaded Date: 23 Mar 2023
  • views: 423753
Next up: Rampage 2023 - Total Takover 10 + 11 March 2023 Rampage Open Air 2023 - 30 June + 1 + 2 July 2023 Tickets & info: https://linktr.ee/WeAreRampage https://www.facebook.com/RAMPAGE.RADAR/ https://twitter.com/WeAreRampage https://www.instagram.com/rampagebelgium/ https://www.youtube.com/user/WeAreRampageEvents https://open.spotify.com/playlist/3HNs6ZhyWva3XJRcWKlZA4?si=hRg_EP80QzKBbwIQY9mZXg
https://wn.com/Rampage_Total_Takeover_2023_Andy_C
Andy C - One7Four Stream (DJ Set) - D&BTV: Locked In x UKF On Air
1:33:41

Andy C - One7Four Stream (DJ Set) - D&BTV: Locked In x UKF On Air

  • Order:
  • Duration: 1:33:41
  • Uploaded Date: 12 Jun 2020
  • views: 794508
→ Listen to our brand new Drum&BassArena Podcast: https://dnb.lnk.to/Podcast002dn 🎧 Check the Drum&BassArena shop → http://bit.ly/DnBA_Shop Andy C delivers one of the most heavily-anticipated streams since lockdown, powering his way through a huge 90-minute selection of flavours old and new. Check out all the D&BTV: Locked In sets → https://live.breakbeat.co.uk/?ym=past Andy C: Facebook → https://www.facebook.com/andyc Instagram → https://www.instagram.com/andyc_ramagram SoundCloud → https://soundcloud.com/andyc_ram Twitter → https://twitter.com/ANDYC_ram Website → https://andyc.cc Link with Drum&BassArena: Follow our D&B Essentials playlist: http://bit.ly/DnB_Essentials_Playlist_yt Spotify → https://open.spotify.com/user/officialdnba Instagram → https://www.instagram.com/officialdnba/ SoundCloud → https://soundcloud.com/drumandbassarena Facebook → https://www.facebook.com/officialdnba Twitter → https://twitter.com/OfficialDnBA Web → https://breakbeat.co.uk/ Mixcloud → https://mixcloud.com/drumandbassarena/ Send us a demo: demos@breakbeat.co.uk
https://wn.com/Andy_C_One7Four_Stream_(Dj_Set)_D_Btv_Locked_In_X_Ukf_On_Air
Rampage 2018 - Andy C feat. MC Tonn Piper
1:00:36

Rampage 2018 - Andy C feat. MC Tonn Piper

  • Order:
  • Duration: 1:00:36
  • Uploaded Date: 06 Mar 2018
  • views: 2128570
Next up: Rampage Open Air 2023 - 30 June + 1 + 2 July 2023 RAMPAGE WEEKEND 2024: 15 YEARS OF RAMPAGE - 23 + 24 February Tickets & info: https://linktr.ee/WeAreRampage https://www.facebook.com/RAMPAGE.RADAR/ https://twitter.com/WeAreRampage https://www.instagram.com/rampagebelgium/ https://www.youtube.com/user/WeAreRampageEvents https://open.spotify.com/playlist/3HNs6ZhyWva3XJRcWKlZA4?si=hRg_EP80QzKBbwIQY9mZXg
https://wn.com/Rampage_2018_Andy_C_Feat._Mc_Tonn_Piper
Rampage 2019 - ANDY C & MC TONN PIPER
1:00:11

Rampage 2019 - ANDY C & MC TONN PIPER

  • Order:
  • Duration: 1:00:11
  • Uploaded Date: 01 Apr 2019
  • views: 1028771
Next up: Rampage Open Air 2023 - 30 June + 1 + 2 July 2023 RAMPAGE WEEKEND 2024: 15 YEARS OF RAMPAGE - 23 + 24 February Tickets & info: https://linktr.ee/WeAreRampage https://www.facebook.com/RAMPAGE.RADAR/ https://twitter.com/WeAreRampage https://www.instagram.com/rampagebelgium/ https://www.youtube.com/user/WeAreRampageEvents https://open.spotify.com/playlist/3HNs6ZhyWva3XJRcWKlZA4?si=hRg_EP80QzKBbwIQY9mZXg
https://wn.com/Rampage_2019_Andy_C_Mc_Tonn_Piper
Andy C & Fiora - Heartbeat Loud (Andy C VIP) (Official Video)
4:20

Andy C & Fiora - Heartbeat Loud (Andy C VIP) (Official Video)

  • Order:
  • Duration: 4:20
  • Uploaded Date: 20 Oct 2014
  • views: 2291436
Available to buy now! http://smarturl.it/heartbeatVIP After a packed out summer bringing drum & bass to some of the biggest stages in the world, Andy C gives us this massive VIP of his new single with Fiora 'Heartbeat Loud' Released 16th November 2014! Andy C Like → http://www.facebook.com/andyc Follow → http://www.twitter.com/andyc_ram Instagram → http://wwwinstagram.com/andyc_ramagram Fiora Like → https://www.facebook.com/Fioramusic Follow → https://twitter.com/Fioramusic Website → http://www.fiora.me/ RAM Records Like → http://www.facebook.com/RAMrecordsltd Follow → https://twitter.com/RAMrecordsltd Website → http://ramrecords.com » Connect with UKF Facebook (Drum & Bass Page) → http://facebook.com/ukfdrumandbass Twitter → http://twitter.com/UKF Spotify → http://bit.ly/UKFSpotify SoundCloud → http://soundcloud.com/ukf Sign up to the Newsletter → http://ukf.com/signup Website → http://ukf.com
https://wn.com/Andy_C_Fiora_Heartbeat_Loud_(Andy_C_Vip)_(Official_Video)
Andy C - Drum & Bass Arena (2003)
1:07:33

Andy C - Drum & Bass Arena (2003)

  • Order:
  • Duration: 1:07:33
  • Uploaded Date: 30 Aug 2014
  • views: 457907
Artist: Andy C Title: Drum and Bass Arena Label: React Released: 2002 1–Bad Company Bullit Time 0:00 - 2:31 2–Total Science Nosher (Baron Remix) Remix – Baron 2:31 - 4:51 3–Moving Fusion Chilli Pepper (Remix) 4:51- 7:43 4–Keaton & Hive Bring It On 7:43 - 11:00 5–Fresh Foreigner 11:00 - 13:25 6–TaliHigh Hopes (All Over Now) 13:25 - 14:51 7–Matrix & Danny J* Vertigo 14:51 - 17:22 8–Lenny Fontana Spread Love (Nu:Tone Remix) Remix – Nu:Tone 17:22 - 20:57 9–DJ ZincSka (Remix) 20:57 - 22:01 10–Capone Tudor Rose (Shimon Remix) Remix – Shimon 22:01 11–Concord Dawn Ninja 12–E-Z Rollers Crowd Rocker 13–Photek We Got Heat (Ram Trilogy Remix) Featuring – Chiara*, Choc TyRemix – Ram Trilogy 14–John B Pressure (Remix) 15–D. Kay The Martians 16–Concord Dawn Don't Tell MeFeaturing – Tiki Taane 17–M.I.S.T. Outerspace 18–London Elektricity Different Drum (Dillinja Remix) Remix – Dillinja 19–FreshBig Love 20–DJ Ecco & Sabotage House Music (VIP Mix) 21–Ed Rush & Optical Goodfoot 22–Spirit Out Of Control (Cause 4 Concern Remix) Remix – Cause 4 Concern 23–Pendulum (3) Back To You Featuring – Lisa Lindt 24–Resonant Evil Troubleshoot 25–Moving Fusion Living Daylights 26–Hold Tight Fever Copyright Disclamier! I do NOT own this song nor the images featured in the video. All rights belong to it's rightful owner/owner's. No Copyright Intended. For promotional purposes only. Support the artist/s by purchasing their single/album.
https://wn.com/Andy_C_Drum_Bass_Arena_(2003)
Andy C BBC Radio One Residency - 07/04/2022
1:00:01

Andy C BBC Radio One Residency - 07/04/2022

  • Order:
  • Duration: 1:00:01
  • Uploaded Date: 08 Apr 2022
  • views: 171395
🔔 Subscribe - https://www.youtube.com/c/REVDrumBass​​​ - and hit the bell to be notified whenever a new Radio One DnB Show with Rene LaVice or DnB 60 is released! Spotify REV Drum & Bass Mix Show playlist: https://cutt.ly/pzKKkLG Check out Andy C 🎧 on social media: Facebook - https://www.facebook.com/andyc Twitter - https://twitter.com/andyc_ram Andy C played: no tracklist provided #drumandbass #AndyC #RAM Our social media: Facebook: https://www.facebook.com/revdnb
https://wn.com/Andy_C_BBC_Radio_One_Residency_07_04_2022
The Prodigy - Firestarter (Andy C Remix)
3:53

The Prodigy - Firestarter (Andy C Remix)

  • Order:
  • Duration: 3:53
  • Uploaded Date: 30 Jun 2022
  • views: 483320
Andy C remixes the incendiary Prodigy classic. Original version features on The Fat Of The Land 25th Anniversary Edition. Available to pre-order on limited edition 2LP silver vinyl now: https://prodigy.ffm.to/tfotl25 The Fat Of The Land 25th Anniversary – Remixes out now via XL Recordings featuring Andy C, Mefjus, Camo & Crooked, René LaVice, and Gydra. Special edition silver 12” Vinyl here: https://prodigy.ffm.to/fotl25-remixes Stream/download remix https://prodigy.ffm.to/mindfields-remix Subscribe to the Prodigy’s official YouTube channel: http://prdgy.co/ProdigySubscribe http://theprodigy.com Facebook - http://po.st/TheProdigyFacebook Twitter - http://po.st/TheProdigyTwitter Instagram - http://po.st/TheProdigyInstgram Spotify - http://prdgy.co/Spotify
https://wn.com/The_Prodigy_Firestarter_(Andy_C_Remix)
Andy C - Haunting
5:38

Andy C - Haunting

  • Order:
  • Duration: 5:38
  • Uploaded Date: 10 Nov 2013
  • views: 1470785
Available to buy: http://po.st/Nightlife6iTunes Like Andy C: http://www.facebook.com/andyc Follow Andy C: http://www.twitter.com/andyc_ram Andy C -- Haunting is taken from Nightlife 6 which is out now: http://po.st/Nightlife6iTunes Like RAM Records: http://po.st/LikeRamFacebook Follow RAM Records: http://po.st/FollowRamTwitter RAM Records YouTube: http://po.st/SubscribeRamYT http://ramrecords.com http://www.facebook.com/ukfdrumandbass http://www.ukfmusic.com http://www.twitter.com/UKFLuke http://www.twitter.com/UKF
https://wn.com/Andy_C_Haunting
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • ANDY C - EDC Vegas 2023
    1:01:08
    ANDY C - EDC Vegas 2023remove from playlist
  • Rampage Total Takeover 2023 - Andy C
    1:03:16
    Rampage Total Takeover 2023 - Andy Cremove from playlist
  • Andy C - One7Four Stream (DJ Set) - D&BTV: Locked In x UKF On Air
    1:33:41
    Andy C - One7Four Stream (DJ Set) - D&BTV: Locked In x UKF On Airremove from playlist
  • Rampage 2018 - Andy C feat. MC Tonn Piper
    1:00:36
    Rampage 2018 - Andy C feat. MC Tonn Piperremove from playlist
  • Rampage 2019 - ANDY C & MC TONN PIPER
    1:00:11
    Rampage 2019 - ANDY C & MC TONN PIPERremove from playlist
  • Andy C & Fiora - Heartbeat Loud (Andy C VIP) (Official Video)
    4:20
    Andy C & Fiora - Heartbeat Loud (Andy C VIP) (Official Video)remove from playlist
  • Andy C - Drum & Bass Arena (2003)
    1:07:33
    Andy C - Drum & Bass Arena (2003)remove from playlist
  • Andy C BBC Radio One Residency - 07/04/2022
    1:00:01
    Andy C BBC Radio One Residency - 07/04/2022remove from playlist
  • The Prodigy - Firestarter (Andy C Remix)
    3:53
    The Prodigy - Firestarter (Andy C Remix)remove from playlist
  • Andy C - Haunting
    5:38
    Andy C - Hauntingremove from playlist
developed with YouTube
PLAYLIST TIME:

ANDY C - EDC Vegas 2023

Next level drum & bass vibes at the BassPod for EDC Las Vegas 🚀🚀🚀 Connect: https://instagram.com/andyc_ramagram https://facebook.com/andycofficial https://tiktok.com/@andycofficial https://soundcloud.com/andyc_ram https://open.spotify.com/artist/75HK7rgkmDMTnWwwmcN53N?si=4K9sc2qlQl68qgF8c_YnJg https://www.beatport.com/artist/andy-c/3393 #AndyC #drumandbass
1:01:08
ANDY C - EDC Vegas 2023
Next level drum & bass vibes at the BassPod for EDC Las Vegas 🚀🚀🚀 Connect: https://instag...
published: 25 May 2023
Play in Full Screen
1:03:16
Rampage Total Takeover 2023 - Andy C
Next up: Rampage 2023 - Total Takover 10 + 11 March 2023 Rampage Open Air 2023 - 30 June...
published: 23 Mar 2023
Play in Full Screen
1:33:41
Andy C - One7Four Stream (DJ Set) - D&BTV: Locked In x UKF On Air
→ Listen to our brand new Drum&BassArena Podcast: https://dnb.lnk.to/Podcast002dn 🎧 Check...
published: 12 Jun 2020
Play in Full Screen
1:00:36
Rampage 2018 - Andy C feat. MC Tonn Piper
Next up: Rampage Open Air 2023 - 30 June + 1 + 2 July 2023 RAMPAGE WEEKEND 2024: 15 YEARS...
published: 06 Mar 2018
Play in Full Screen
1:00:11
Rampage 2019 - ANDY C & MC TONN PIPER
Next up: Rampage Open Air 2023 - 30 June + 1 + 2 July 2023 RAMPAGE WEEKEND 2024: 15 YEARS...
published: 01 Apr 2019
Play in Full Screen
4:20
Andy C & Fiora - Heartbeat Loud (Andy C VIP) (Official Video)
Available to buy now! http://smarturl.it/heartbeatVIP After a packed out summer bringing d...
published: 20 Oct 2014
Play in Full Screen
1:07:33
Andy C - Drum & Bass Arena (2003)
Artist: Andy C Title: Drum and Bass Arena Label: React Released: 2002 1–Bad Company Bulli...
published: 30 Aug 2014
Play in Full Screen
1:00:01
Andy C BBC Radio One Residency - 07/04/2022
🔔 Subscribe - https://www.youtube.com/c/REVDrumBass​​​ - and hit the bell to be notified w...
published: 08 Apr 2022
Play in Full Screen
3:53
The Prodigy - Firestarter (Andy C Remix)
Andy C remixes the incendiary Prodigy classic. Original version features on The Fat Of The...
published: 30 Jun 2022
Play in Full Screen
5:38
Andy C - Haunting
Available to buy: http://po.st/Nightlife6iTunes Like Andy C: http://www.facebook.com/andyc...
published: 10 Nov 2013
Play in Full Screen

Andy C

Andrew Clarke, known by his stage name Andy C, is an English DJ and producer and co-founder of RAM Records. He is considered a pioneering force in the drum and bass genre. In 2011 Andy C won the Best DJ title in the 2011 Drum and Bass Arena Awards, and since the awards' inception in 2009, he has won the people's vote in the awards for Best DJ each year. He specialises in fast mixing, often employing three turntables. A signature mixing style of Andy is what he refers to as "The Double Drop": lining up 2 tunes so that both basslines drop at the same time. Andy C has often organised events where he DJs continuously for 6 hours. In January 2011 Mixmag UK announced the result of 14 month global poll from 35 nominations chosen by other big names in dance music: the survey asked global voters to decide Who is the Greatest DJ of All Time Andy C was ranked number 4 on it and the highest British DJ on the list.

Music career

Early years

Andy C was a DJ in his own right but gained a strong reputation and more bookings off the back of the hugely successful "Valley of The Shadows" track, an early drum and bass track that walked the line perfectly between hardcore and drum and bass just as the genres were starting to split. The track, created and released by Origin Unknown (made up of Andy C and Ant Miles)—often referred to as "31 Seconds" or "Long Dark Tunnel" because of the samples it incorporates—made use of a heavy bassline, bell samples and a rolling drum track to produce a popular, easy to recognise track that was easy to mix and became a favourite in dance floors at raves across the UK and beyond. The track was released as an EP in 1993 and has been remixed and re-released several times, and is widely recognised as one of the most influential drum and bass tunes of the early 90s. His signature look (Andy C is rarely seen without a baseball cap) and energetic movement behind the decks when playing make him a recognisable figure.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×