'+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; })); }); -->

Virgin Radio

Virgin Radio is a brand owned by the Virgin Group. Virgin Radio International was established in 2001 to develop the brand and has since built one of the world's most popular music radio franchises, broadcasting in multiple languages and music based formats in North America, Europe and Asia – including the Middle East – and has 18 million listeners worldwide. Virgin Radio stations in each country are owned independently of the Virgin Group and of each other and generally carry independent programming tailored to local tastes.

Virgin Radio UK

The first Virgin Radio branded station initially broadcast in the UK between 1993 and 2008 under several owners, but was renamed Absolute Radio after a further ownership change in 2008.

In January 2015, it was announced that Virgin Radio International and UTV Media had partnered to relaunch Virgin Radio subject to Ofcom awarding the necessary broadcast licence. In March 2015, Ofcom awarded a UK digital terrestrial commercial radio licence for Virgin Radio UK and the station is expected to launch in March 2016.

Absolute Radio

Coordinates: 51°30′44″N 0°08′13″W / 51.512248°N 0.136937°W / 51.512248; -0.136937

Absolute Radio is one of the UK's three Independent National Radio stations. The station rebranded to its current name at 7:45 am on 29 September 2008.

The station is based in London and plays popular rock music. It currently broadcasts on medium wave and DAB across the UK, on 105.8 FM in London and 105.2 FM in the West Midlands, Sky (channel 0107), Virgin Media (channel 915), Freeview (channel 727) and Freesat (channel 724). It is also available in other parts of the world via satellite, cable, and on the Internet. As of 31 December 2013, international streaming via the internet has been discontinued. Absolute Radio is a patron of The Radio Academy.

Absolute Radio is owned and operated by Bauer Radio of Hamburg based Bauer Media Group, it forms part of Bauer's National portfolio of radio brands.

History

1993–1997: Virgin Radio launch and early years

The 1990 Broadcasting Act allowed for the launch of independent national radio (INR) stations in the United Kingdom. The Radio Authority was mandated to award three INR licences, one of which (INR1) had to be for a 'non-pop' station (which was awarded to Classic FM), and one of which had to be for a predominantly speech-based service (this would be advertised later as INR3 and would be awarded to Talk Radio). The remaining licence was to be open to 'all-comers'. The licences were to be awarded to the highest cash bidder, providing that the applicant met criteria set down in the Broadcasting Act.

Virgin Radio (France)

Virgin Radio is a French network of FM radio stations dedicated to Rock and Pop music, operating on 250 different frequencies across France. Its musical programming is closely related to the American Hot Adult Contemporary format. The network was known as Europe 2 (as the contemporary music sister of Europe 1) until 1 January, 2008, when it was rebranded as Virgin Radio.

The station capital does not in fact belong to Virgin Group, but to Lagardère Active, which has to pay 0.5 to 1% of its profits to Virgin Group under a franchise contract.

Virgin Radio claims approximately 3 million listeners every day.

Because of the decline of the station's listening figures, Virgin Radio gave up playing rock music in 2011 to become a hit music station with a former Europe 2 slogan, "Un maxx de tubes".

Presenters

  • Bruno Guillon
  • Camille Combal
  • Philippe Despont
  • Sébastien Sefrin
  • Double F
  • Thomas Caussé
  • Léo Lanvin
  • DJ Zebra
  • Greg Di Mano
  • Rock Da World
  • Cyril Hanouna
  • Fabien Delettres
  • Tiffany Bonvoisin
  • Podcasts:

    • Kodaline: Absolute Radio Live Session

      Kodaline perform All I Want and High Hopes at the Absolute Radio Christmas Session ‪#‎ComingUpForAir‬ is out now on iTunes: http://smarturl.it/CUFAiT?iqid=yt Subscribe for more from Kodaline: http://smarturl.it/YTSubscribe Amazon: http://smarturl.it/kodaline_amz Official Kodaline Store: http://smarturl.it/koda_store ---------------------------- For more information, tour dates and new releases: Facebook: http://www.facebook.com/Kodaline Twitter: http://twitter.com/kodaline Official Website: http://www.kodaline.com ----------------------------

      published: 16 Dec 2013
    • Keane - Everybody's Changing (Live)

      Keane live at the opening of the Hard Rock Cafe Piccadilly Circus. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio and in London on 105.8FM. Alternatively listen to any of our stations on the move by downloading the Absolute Radio App ► http://absrad.io/1EWGRUr #Keane #AbsoluteRadio

      published: 30 Sep 2019
    • Keane - Somewhere Only We Know (Live)

      Keane live at the opening of the Hard Rock Cafe Piccadilly Circus. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio and in London on 105.8FM. Alternatively listen to any of our stations on the move by downloading the Absolute Radio App ► http://absrad.io/1EWGRUr #Keane #AbsoluteRadio

      published: 26 Sep 2019
    • Noel Gallagher's High Flying Birds - Don't Look Back In Anger: Absolute Radio Live

      Noel Gallagher's High Flying Birds performing 'Don't Look Back In Anger': To celebrate 10 years of the band and the release of 'Back The Way We Came: Vol 1'. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- Listen to Absolute Radio on digital radio, the free Absolute Radio app and via your smart speaker (“Play Absolute Radio”) ► http://absrad.io/1EWGRUr

      published: 11 Jun 2021
    • Absolute 80s - Non Stop 80s Greatest Forgotten Hits

      A non stop mix of some of the best tunes from the 80s. Title: Animotion - Room To Move Title: Boogie Box High - Jive Talkin' (Jellybean 7 Mix) Title: Bros - Madly In Love (Joe Smooth Mix) Title: Climie Fisher - Keeping The Mystery Alive Title: Climie Fisher - Love Changes (Everything) (Extended) Title: Donna Summer - Dinner With Gershwin (Extended Version) Artist: Eastbound Expressway - You're A Beat Title: Erasure - Oh L'amour Title: Grant Miller - Doctor For My Heart (12 Version) Title: Hazell Dean - They Say It's Gonna Rain (Rerecorded) Title: Jellybean - Sidewalk Talk Title: Kelly Brown - Only You Can Title: Kim Wilde - You Came (12_ Version) Title: Kylie Minogue - Got To Be Certain (Extended Version) Title: Kylie Minogue - Je Ne Sais Pas Pourquoi (Moi Non Plus Mix) Ti...

      published: 07 Dec 2020
    • Robert Smith - 'Songs of a Lost World' track-by-track | Tim's Listening Party

      The Cure's legendary frontman Robert Smith joined Tim Burgess on Tim's Listening Party to discuss The Cure's critically-acclaimed 2024 album 'Songs of a Lost World'. In the in-depth interview over an hour they chatted about everything from recording at Rockfield Studios, dedicating the album to The Cure's fans, the emotions of playing live, their intimate Troxy show, how Reeves Gabrels joined the band, Robert reading his own album reviews, how he doesn't view himself as a singer, his iconic hair and makeup, and much much more. You can also take the whole thing with you and listen in podcast form - listen on Rayo, or wherever you get podcasts 🔊 https://hellorayo.co.uk/podcasts/tims-listening-party/id-2243896/ Listen to loads more artists on Tim's Listening Party, including New Order, Sim...

      published: 12 Dec 2024
    • Absolute Radio 2014

      Check out our channel http://www.youtube.com/absoluteradio Subscribe http://www.youtube.com/subscription_center?add_user=absoluteradio Find us on Facebook http://www.facebook.com/absoluteradio And follow us on Twitter http://www.twitter.com/absoluteradio Listen to Absolute Radio at http://www.absoluteradio.co.uk/listen

      published: 27 Dec 2013
    • Noel tells someone to GOOGLE him...

      Noel Gallagher chats to Dave Berry about the new album 'Council Skies' and the bands new single 'Easy Now' - with some hilarious stories along the way. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio. Alternatively listen to any of our stations on the move by downloading the Absolute Radio App ► http://absrad.io/1EWGRUr

      published: 17 Jan 2023
    • You're Listening to the Radio when Yellowstone Erupts | Fire Sounds | Sleep Ambience ASMR

      What started as a peaceful night around the campfire quickly spirals into chaos when Yellowstone erupts. Join this channel to get access to perks: https://www.youtube.com/channel/UCS7FmgbbwxmYl7CAlinIrTA/join Heatwave Apocalyse: https://www.youtube.com/watch?v=3lBojC51X9E Zombie Apocalyse: https://www.youtube.com/watch?v=0LPDGQUrfTE Alien Invasion: https://www.youtube.com/watch?v=K6w42henGeo YELLOWSTONE ERUPTS | YELLOWSTONE NATIONAL PARK | YELLOWSTONE ERUPTION | AMBIENT ESCAPADE | FIRE SOUNDS | SLEEP AMBIENCE | ASMR | YELLOWSTONE VOLCANO | VOLCANIC ERUPTION AMBIENCE | EAS #asmr #ambience

      published: 21 Feb 2025
    • Nickelback - How You Remind Me (Intimate gig for Absolute Radio)

      Nickelback played their fan favourite 2001 track How You Remind Me at an intimate gig for Absolute Radio listeners. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download the App: http://absrad.io/1EWGRUr ► Listen Now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Mixcloud: https://www.mixcloud.com/absoluteradio/ ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio, in London on 105.8FM and in the West Midlands on 105.2FM. Alternatively listen to any of our stations on the move by downloading the Absolute Radio App ► http://absra...

      published: 17 May 2018
    Kodaline: Absolute Radio Live Session
    24:42

    Kodaline: Absolute Radio Live Session

    • Order:
    • Duration: 24:42
    • Uploaded Date: 16 Dec 2013
    • views: 383157
    Kodaline perform All I Want and High Hopes at the Absolute Radio Christmas Session ‪#‎ComingUpForAir‬ is out now on iTunes: http://smarturl.it/CUFAiT?iqid=yt Subscribe for more from Kodaline: http://smarturl.it/YTSubscribe Amazon: http://smarturl.it/kodaline_amz Official Kodaline Store: http://smarturl.it/koda_store ---------------------------- For more information, tour dates and new releases: Facebook: http://www.facebook.com/Kodaline Twitter: http://twitter.com/kodaline Official Website: http://www.kodaline.com ----------------------------
    https://wn.com/Kodaline_Absolute_Radio_Live_Session
    Keane - Everybody's Changing (Live)
    3:57

    Keane - Everybody's Changing (Live)

    • Order:
    • Duration: 3:57
    • Uploaded Date: 30 Sep 2019
    • views: 3721860
    Keane live at the opening of the Hard Rock Cafe Piccadilly Circus. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio and in London on 105.8FM. Alternatively listen to any of our stations on the move by downloading the Absolute Radio App ► http://absrad.io/1EWGRUr #Keane #AbsoluteRadio
    https://wn.com/Keane_Everybody's_Changing_(Live)
    Keane - Somewhere Only We Know (Live)
    4:13

    Keane - Somewhere Only We Know (Live)

    • Order:
    • Duration: 4:13
    • Uploaded Date: 26 Sep 2019
    • views: 642453
    Keane live at the opening of the Hard Rock Cafe Piccadilly Circus. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio and in London on 105.8FM. Alternatively listen to any of our stations on the move by downloading the Absolute Radio App ► http://absrad.io/1EWGRUr #Keane #AbsoluteRadio
    https://wn.com/Keane_Somewhere_Only_We_Know_(Live)
    Noel Gallagher's High Flying Birds - Don't Look Back In Anger: Absolute Radio Live
    4:57

    Noel Gallagher's High Flying Birds - Don't Look Back In Anger: Absolute Radio Live

    • Order:
    • Duration: 4:57
    • Uploaded Date: 11 Jun 2021
    • views: 512145
    Noel Gallagher's High Flying Birds performing 'Don't Look Back In Anger': To celebrate 10 years of the band and the release of 'Back The Way We Came: Vol 1'. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- Listen to Absolute Radio on digital radio, the free Absolute Radio app and via your smart speaker (“Play Absolute Radio”) ► http://absrad.io/1EWGRUr
    https://wn.com/Noel_Gallagher's_High_Flying_Birds_Don't_Look_Back_In_Anger_Absolute_Radio_Live
    Absolute 80s - Non Stop 80s Greatest Forgotten Hits
    1:27:12

    Absolute 80s - Non Stop 80s Greatest Forgotten Hits

    • Order:
    • Duration: 1:27:12
    • Uploaded Date: 07 Dec 2020
    • views: 49431
    A non stop mix of some of the best tunes from the 80s. Title: Animotion - Room To Move Title: Boogie Box High - Jive Talkin' (Jellybean 7 Mix) Title: Bros - Madly In Love (Joe Smooth Mix) Title: Climie Fisher - Keeping The Mystery Alive Title: Climie Fisher - Love Changes (Everything) (Extended) Title: Donna Summer - Dinner With Gershwin (Extended Version) Artist: Eastbound Expressway - You're A Beat Title: Erasure - Oh L'amour Title: Grant Miller - Doctor For My Heart (12 Version) Title: Hazell Dean - They Say It's Gonna Rain (Rerecorded) Title: Jellybean - Sidewalk Talk Title: Kelly Brown - Only You Can Title: Kim Wilde - You Came (12_ Version) Title: Kylie Minogue - Got To Be Certain (Extended Version) Title: Kylie Minogue - Je Ne Sais Pas Pourquoi (Moi Non Plus Mix) Title: Holiday Rap (12in) Artist: M.c. Miker 'g' & Deejay Sven Title: Black Station_White Station (Lexx Edit) Title: Showing Out (Get Fresh At The Weekend) Artist: Mel And Kim Title: The Look (Headdrum Mix) Artist: Roxette Title: Dolce Vita (Extended Mix) Artist: Ryan Paris & Mauro Title: Everlasting Love (Remastered 2009) Artist: Sandra Title: Around My Dream Artist: Silver Pozzoli Title: Pretty Baby Artist: Silver Pozzoli Title: Sonia - Can't Forget You (Extended Version) Title: Sonia - You'll Never Stop Me Loving You Title: Never Let You Go Artist: Sweet Sensation Title: Crush On You Artist: The Jets Title: Living In The Shuttle Artist: Torrevado
    https://wn.com/Absolute_80S_Non_Stop_80S_Greatest_Forgotten_Hits
    Robert Smith - 'Songs of a Lost World' track-by-track | Tim's Listening Party
    1:07:16

    Robert Smith - 'Songs of a Lost World' track-by-track | Tim's Listening Party

    • Order:
    • Duration: 1:07:16
    • Uploaded Date: 12 Dec 2024
    • views: 56140
    The Cure's legendary frontman Robert Smith joined Tim Burgess on Tim's Listening Party to discuss The Cure's critically-acclaimed 2024 album 'Songs of a Lost World'. In the in-depth interview over an hour they chatted about everything from recording at Rockfield Studios, dedicating the album to The Cure's fans, the emotions of playing live, their intimate Troxy show, how Reeves Gabrels joined the band, Robert reading his own album reviews, how he doesn't view himself as a singer, his iconic hair and makeup, and much much more. You can also take the whole thing with you and listen in podcast form - listen on Rayo, or wherever you get podcasts 🔊 https://hellorayo.co.uk/podcasts/tims-listening-party/id-2243896/ Listen to loads more artists on Tim's Listening Party, including New Order, Simple Minds, Tears For Fears, The Libertines, The Kinks and more 🔊 https://hellorayo.co.uk/podcasts/tims-listening-party/ ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Instagram: http://instagram.com/absoluteradio ► TikTok: https://www.tiktok.com/@absoluteradio ► Facebook: http://facebook.com/absoluteradio ► Threads: https://www.threads.net/@absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio, or on your smart speaker. Alternatively listen to any of our stations on the move by downloading the Rayo app ► http://absrad.io/1EWGRUr
    https://wn.com/Robert_Smith_'Songs_Of_A_Lost_World'_Track_By_Track_|_Tim's_Listening_Party
    Absolute Radio 2014
    3:25

    Absolute Radio 2014

    • Order:
    • Duration: 3:25
    • Uploaded Date: 27 Dec 2013
    • views: 13368
    Check out our channel http://www.youtube.com/absoluteradio Subscribe http://www.youtube.com/subscription_center?add_user=absoluteradio Find us on Facebook http://www.facebook.com/absoluteradio And follow us on Twitter http://www.twitter.com/absoluteradio Listen to Absolute Radio at http://www.absoluteradio.co.uk/listen
    https://wn.com/Absolute_Radio_2014
    Noel tells someone to GOOGLE him...
    14:50

    Noel tells someone to GOOGLE him...

    • Order:
    • Duration: 14:50
    • Uploaded Date: 17 Jan 2023
    • views: 192983
    Noel Gallagher chats to Dave Berry about the new album 'Council Skies' and the bands new single 'Easy Now' - with some hilarious stories along the way. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download our free app: http://absrad.io/1EWGRUr ► Listen now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio. Alternatively listen to any of our stations on the move by downloading the Absolute Radio App ► http://absrad.io/1EWGRUr
    https://wn.com/Noel_Tells_Someone_To_Google_Him...
    You're Listening to the Radio when Yellowstone Erupts | Fire Sounds | Sleep Ambience ASMR
    46:24

    You're Listening to the Radio when Yellowstone Erupts | Fire Sounds | Sleep Ambience ASMR

    • Order:
    • Duration: 46:24
    • Uploaded Date: 21 Feb 2025
    • views: 1486
    What started as a peaceful night around the campfire quickly spirals into chaos when Yellowstone erupts. Join this channel to get access to perks: https://www.youtube.com/channel/UCS7FmgbbwxmYl7CAlinIrTA/join Heatwave Apocalyse: https://www.youtube.com/watch?v=3lBojC51X9E Zombie Apocalyse: https://www.youtube.com/watch?v=0LPDGQUrfTE Alien Invasion: https://www.youtube.com/watch?v=K6w42henGeo YELLOWSTONE ERUPTS | YELLOWSTONE NATIONAL PARK | YELLOWSTONE ERUPTION | AMBIENT ESCAPADE | FIRE SOUNDS | SLEEP AMBIENCE | ASMR | YELLOWSTONE VOLCANO | VOLCANIC ERUPTION AMBIENCE | EAS #asmr #ambience
    https://wn.com/You're_Listening_To_The_Radio_When_Yellowstone_Erupts_|_Fire_Sounds_|_Sleep_Ambience_Asmr
    Nickelback - How You Remind Me (Intimate gig for Absolute Radio)
    4:58

    Nickelback - How You Remind Me (Intimate gig for Absolute Radio)

    • Order:
    • Duration: 4:58
    • Uploaded Date: 17 May 2018
    • views: 2415237
    Nickelback played their fan favourite 2001 track How You Remind Me at an intimate gig for Absolute Radio listeners. ----------------------------------------­­­­­­­­­­---------- ► Subscribe to Absolute Radio: http://absrad.io/21DmMuB ► Download the App: http://absrad.io/1EWGRUr ► Listen Now: http://absrad.io/1UJ9Bbf ► Facebook: http://facebook.com/absoluteradio ► Twitter: http://twitter.com/absoluteradio ► Mixcloud: https://www.mixcloud.com/absoluteradio/ ► Instagram: http://instagram.com/absoluteradio ----------------------------------------­­­­­­­­­­­---------- You can listen to Absolute Radio across the UK on Digital Radio, in London on 105.8FM and in the West Midlands on 105.2FM. Alternatively listen to any of our stations on the move by downloading the Absolute Radio App ► http://absrad.io/1EWGRUr
    https://wn.com/Nickelback_How_You_Remind_Me_(Intimate_Gig_For_Absolute_Radio)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Kodaline: Absolute Radio Live Session
      24:42
      Kodaline: Absolute Radio Live Sessionremove from playlist
    • Keane - Everybody's Changing (Live)
      3:57
      Keane - Everybody's Changing (Live)remove from playlist
    • Keane - Somewhere Only We Know (Live)
      4:13
      Keane - Somewhere Only We Know (Live)remove from playlist
    • Noel Gallagher's High Flying Birds - Don't Look Back In Anger: Absolute Radio Live
      4:57
      Noel Gallagher's High Flying Birds - Don't Look Back In Anger: Absolute Radio Liveremove from playlist
    • Absolute 80s - Non Stop 80s Greatest Forgotten Hits
      1:27:12
      Absolute 80s - Non Stop 80s Greatest Forgotten Hitsremove from playlist
    • Robert Smith - 'Songs of a Lost World' track-by-track | Tim's Listening Party
      1:07:16
      Robert Smith - 'Songs of a Lost World' track-by-track | Tim's Listening Partyremove from playlist
    • Absolute Radio 2014
      3:25
      Absolute Radio 2014remove from playlist
    • Noel tells someone to GOOGLE him...
      14:50
      Noel tells someone to GOOGLE him...remove from playlist
    • You're Listening to the Radio when Yellowstone Erupts | Fire Sounds | Sleep Ambience ASMR
      46:24
      You're Listening to the Radio when Yellowstone Erupts | Fire Sounds | Sleep Ambience ASMRremove from playlist
    • Nickelback - How You Remind Me (Intimate gig for Absolute Radio)
      4:58
      Nickelback - How You Remind Me (Intimate gig for Absolute Radio)remove from playlist
    PLAYLIST TIME: 0:00 / 4:21:54

    Kodaline: Absolute Radio Live Session

    Kodaline perform All I Want and High Hopes at the Absolute Radio Christmas Session ‪#‎ComingUpForAir‬ is out now on iTunes: http://smarturl.it/CUFAiT?iqid=yt Subscribe for more from Kodaline: http://smarturl.it/YTSubscribe Amazon: http://smarturl.it/kodaline_amz Official Kodaline Store: http://smarturl.it/koda_store ---------------------------- For more information, tour dates and new releases: Facebook: http://www.facebook.com/Kodaline Twitter: http://twitter.com/kodaline Official Website: http://www.kodaline.com ----------------------------
    24:42
    Kodaline: Absolute Radio Live Session
    Kodaline perform All I Want and High Hopes at the Absolute Radio Christmas Session ‪#‎Com...
    published: 16 Dec 2013
    Play in Full Screen
    3:57
    Keane - Everybody's Changing (Live)
    Keane live at the opening of the Hard Rock Cafe Piccadilly Circus. -----------------------...
    published: 30 Sep 2019
    Play in Full Screen
    4:13
    Keane - Somewhere Only We Know (Live)
    Keane live at the opening of the Hard Rock Cafe Piccadilly Circus. -----------------------...
    published: 26 Sep 2019
    Play in Full Screen
    4:57
    Noel Gallagher's High Flying Birds - Don't Look Back In Anger: Absolute Radio Live
    Noel Gallagher's High Flying Birds performing 'Don't Look Back In Anger': To celebrate 10 ...
    published: 11 Jun 2021
    Play in Full Screen
    1:27:12
    Absolute 80s - Non Stop 80s Greatest Forgotten Hits
    A non stop mix of some of the best tunes from the 80s. Title: Animotion - Room To Move Ti...
    published: 07 Dec 2020
    Play in Full Screen
    1:07:16
    Robert Smith - 'Songs of a Lost World' track-by-track | Tim's Listening Party
    The Cure's legendary frontman Robert Smith joined Tim Burgess on Tim's Listening Party to ...
    published: 12 Dec 2024
    Play in Full Screen
    3:25
    Absolute Radio 2014
    Check out our channel http://www.youtube.com/absoluteradio Subscribe http://www.youtube.co...
    published: 27 Dec 2013
    Play in Full Screen
    14:50
    Noel tells someone to GOOGLE him...
    Noel Gallagher chats to Dave Berry about the new album 'Council Skies' and the bands new s...
    published: 17 Jan 2023
    Play in Full Screen
    46:24
    You're Listening to the Radio when Yellowstone Erupts | Fire Sounds | Sleep Ambience ASMR
    What started as a peaceful night around the campfire quickly spirals into chaos when Yello...
    published: 21 Feb 2025
    Play in Full Screen
    4:58
    Nickelback - How You Remind Me (Intimate gig for Absolute Radio)
    Nickelback played their fan favourite 2001 track How You Remind Me at an intimate gig for ...
    published: 17 May 2018
    Play in Full Screen

    Virgin Radio

    Virgin Radio is a brand owned by the Virgin Group. Virgin Radio International was established in 2001 to develop the brand and has since built one of the world's most popular music radio franchises, broadcasting in multiple languages and music based formats in North America, Europe and Asia – including the Middle East – and has 18 million listeners worldwide. Virgin Radio stations in each country are owned independently of the Virgin Group and of each other and generally carry independent programming tailored to local tastes.

    Virgin Radio UK

    The first Virgin Radio branded station initially broadcast in the UK between 1993 and 2008 under several owners, but was renamed Absolute Radio after a further ownership change in 2008.

    In January 2015, it was announced that Virgin Radio International and UTV Media had partnered to relaunch Virgin Radio subject to Ofcom awarding the necessary broadcast licence. In March 2015, Ofcom awarded a UK digital terrestrial commercial radio licence for Virgin Radio UK and the station is expected to launch in March 2016.

    '); } 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)); } }); }); }); // -->
    ×