- published: 21 Apr 2008
- views: 3886384
'+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; })); }); -->
HIDDEN ERROR: Usage of "Notable_songs" is not recognizedHIDDEN ERROR: Usage of "Notable_albums" is not recognized
'Tiki Taane, is a New Zealand-based musician, experimentalist, musical activist, producer, live engineer. He was a member of leading New Zealand band Salmonella Dub but left after 11 years on 1 January 2007 to pursue a solo career. His debut album, "Past, Present, Future", was released on 22 October 2007 in New Zealand and has since gone two times platinum, achieving a number one single, "Always On My Mind", which is the most successful single of all time in New Zealand. Becoming the first digital single to reach platinum sales and also holds the record by staying in the NZ Top 40 Charts for 55 weeks. Taane is also the exclusive live sound engineer for New Zealand drum and bass act Shapeshifter since their first gig in 1999. Taane has also produced multi platinum albums for bands such as Six60, Salmonella Dub and Tiki Taane.
Taane was born on 17 December 1976. In 1996, Taane was asked to become live soundman to Christchurch band Salmonella Dub, who were becoming one of NZ’s most popular acts. Through this role, Tiki began to earn himself a reputation for his ability to bring a staggeringly powerful live sound to whatever equipment, venue or environment he was faced with. His time with his metal bands Cultivation and Braaspadeak had become minuscule and irregular, and while on tour with the Dub, Tiki had composed a dub-reggae track in his hotel room. Once he shared it with Salmonella, they recorded it straight away. Tiki and his whanau and friends set to work making a music video featuring Tiki on tour at The Gathering that year. This track, "For the Love Of It", shot into the NZ charts and became a summertime anthem. And so he became faced with not only being soundman for the band, but also the public expectation that he perform his hit song at all their gigs.
"Take Me Away" is the song recorded by the Dutch group Twenty 4 Seven. It was released as the third single from their second album, Slave to the Music, in 1994. Unlike previous singles from the album, the song did not feature any raps. The single was a hit in Austria, Germany, Switzerland, Sweden and Belgium, and peaked at number 11 in the Netherlands on the Dutch Top 40. (In America, "Slave to the Music" and "Leave Them Alone" were their only minor hits in that country). A studio video was shot in Johannesburg, Durban, and Cape Town (South Africa).
"Supersonic" is the debut single by the English rock band Oasis, written by lead guitarist Noel Gallagher. The song appears on their debut album Definitely Maybe, released in August 1994.
The song was released on 11 April 1994 and peaked at number 31 on the UK Singles Chart, Oasis's lowest-peaking single. However, over time it has amassed sales of over 215,000, making it their 13th biggest selling single ever in the UK, even outselling their 2002 number one "The Hindu Times", and both of their 2005 number ones, "Lyla" and "The Importance of Being Idle".
"Supersonic" was also the band's first single to chart in the United States, where it peaked at number 11 on the US Billboard Modern Rock Tracks chart on 10 December 1994. The song was performed by the band on their debut national TV performance on Channel 4's The Word. It remains a favourite song of both the band and their fans (on the Definitely Maybe DVD, Noel cites it as his favourite Oasis song). The single went silver in the UK in 2006.
"Pocketful of Sunshine" is a song performed by British singer and songwriter Natasha Bedingfield, released as the second single from her second North American studio album of the same name (2008). Bedingfield co-wrote the song together with American songwriter Danielle Brisebois and American musician and songwriter John Shanks; Shanks also produced the track as well as performing on most of the instruments present. Epic Records serviced the song to mainstream radios on 11 February 2008 in the United States. It received an international release in spring 2011 to promote the release of Strip Me Away (2011).
Bedingfield noted "Pocketful of Sunshine" as her favorite, stating that it centers on escaping from one's troubles. It adapts dance-pop and adult contemporary styles, differing from her previous recordings. Lyrically, the song discusses escapism and finding a peaceful place in difficult situations. The message is amplified by the melancholic tone of the lyrics mixing with the exuberance displayed in Bedingfield's voice. "Pocketful of Sunshine" was well received by contemporary music critics; the majority of them named it as one of the album's highlights. Several critics also praised it as a bright and lively summer tune.
Tha 4th video/single off Tiki Taane's debut LP 'Past Present Future'. Tha Video was produced by Bret Nichols and Gary Mackay from Roundhead Productions www.tikidub.com Subscribe for more https://www.youtube.com/user/tikidub?sub_confirmation=1 More Tiki Taane music videos are available here https://www.youtube.com/playlist?list=PLqYAUwrbsbyjbSAEHMP1l7EQ-yqRdnxe2 #TikiTaane #AlwaysOnMyMind
Tiki Taane mashing it up LIVE on The Bali Roof Top! Available to stream & download here https://tikitaane.lnk.to/onemanband Push On Thru - written by Salmonella Dub & Tiki Taane. Soldiers Of Fire - written by DubFX & Tiki Taane. www.thebalirooftop.com www.tikidub.com
Subscribe for more 👉🏽 https://www.youtube.com/user/tikidub?sub_confirmation=1 Tiki Taane - Tangaroa / God Of The Sea (Official Music Video) HD Tangaroa was the first single off the now legendary debut solo album: Past, Present, Future Released in 2007 and achieving multi-platinum status. 🎧 Listen to the entire album here: https://www.youtube.com/playlist?list=OLAK5uy_nV91x68kaE6Rl3dYUr6QdCE3E47PkNW9M This video edit was done by Tim Budgen from Warp TV. Tangaroa was written by Tiki Taane & Uekaha Taane Tinorau. Mixed & Produced by Tiki @ Tikidub Productions LTD. 🎧 WATCH/LISTEN to The Complete Tiki Taane Playlist 👇🏽 https://www.youtube.com/playlist?list=PLqYAUwrbsbyjbSAEHMP1l7EQ-yqRdnxe2 #TikiTaane #Tangaroa #godofthesea
iTunes – https://geo.itunes.apple.com/nz/album/id1473564737?at=1l3v9Tx&app=itunes Apple Music – https://geo.itunes.apple.com/nz/album/id1473564737?at=1l3v9Tx&app=music Spotify – http://open.spotify.com/album/2PCmYnXPnDqDH3L9wpD3cV Serendipity written, produced & mixed by Tiki Taane at Tikidub Solar Powered Studios. Featuring Anna Coddington, Annie Crummer, Boh Runga, Charlie & Karcia on backup vocals. Marika Hodgson on bass guitar. Lucien Johnson on saxophone. Barrett Hocking on trumpet. Wazza Maxwell on flute & melodica. Mastered by Evan Short at Mercury Audio Rarotonga. Video shot & edited by Mark Russell (Renegade Peach) with help from Brutus Powers. Video filmed at Wayne Tait Photography. Post animations by Owen Watts (The Makers Initiative). Hair & makeup by Mary Estelle. Catering...
Tiki Taane performs Tangaroa at the Vodafone New Zealand Music Awards 2008.
Tiki Taane did a fantastic like a version on Triple J's breakfast program. He did a reggea, dub version of Kings of Leon's Use somebody. Tiki sure does have a great voice!
NO PLACE LIKE HOME is available for download NOW from the links below. All proceeds go to Good Neighbour, a charity in Tauranga doing amazing things for the community. Thanks for supporting & sharing the love. iTunes – https://itunes.apple.com/nz/album/no-place-like-home-feat.-ria/id1078785020?app=itunes&at=10lrHH Google Play – https://play.google.com/store/music/album/Tiki_Taane_No_Place_Like_Home?id=Buuq7tozebddvwsmp6hfaivguga Spotify – https://open.spotify.com/album/3ae0e73NyhKxkLinNXMRA1 Tikidub - http://www.tikidub.com/shop/product-category/music/3511/ Written & produced by Tiki Taane, featuring Ria Hall, Mike Barker & Grant Haua from Swamp Thing, Ara Adams Tamatea, Pouroto Ngaropo, The Animato String Quartet, Tahatai Coast School, Jo'el Komene. Recorded at Twisty Pole Studio,...
Salmonella Dub & Tiki Taane team up to bring you FINDING MY WAY HOME. The NEW single from the soon to be released SalDub album “Return To Our Kowhai” out November 2021. Stream the song here https://smarturl.it/saldubfindingwayhome Video by Mark Russle from Renegade Peach, thanks to NZOA https://www.salmonelladub.com https://tikidub.com
The 2nd single off Tiki's album "In The World Of Light". Summer Time was written & produced by Tiki & DUBXL. The video was produced by Gareth (u da man) from NEKTAR.... Big Ups to all that were involved in the shoot, Daz, Rahm, KP, Roy, my Piha posse....chur chur... Aotearoa Summer Time we LOVE ya! Subscribe for more https://www.youtube.com/user/tikidub?sub_confirmation=1 More Tiki Taane music videos are available here https://www.youtube.com/playlist?list=PLqYAUwrbsbyjbSAEHMP1l7EQ-yqRdnxe2
Subscribe for more 👉🏽 https://www.youtube.com/user/tikidub?sub_confirmation=1 You can download this tune from tikidub.com + iTunes and ALL proceeds go towards helping the kids at Starship Childrens Hospital. Produced by Manu Forti Productions, directed by Gary Mackay, camera work by Bret Nichols, Jos Wheeler, and Warren Green, and edited by Julian Karehana. Thanks to Metro Films and Envy Post. 🎧 WATCH/LISTEN to The Complete Tiki Taane Playlist 👇🏽 https://www.youtube.com/playlist?list=PLqYAUwrbsbyjbSAEHMP1l7EQ-yqRdnxe2 #TikiTaane #StarshipLullaby #SaveTheKids
Oasis - 'Supersonic' (Official Video) [HD Remastered] Taken from the album 'Definitely Maybe' Directed by Mark Szaszy ‘Definitely Maybe’ - Deluxe 30th Anniversary Editions, released 30th August 2024. Featuring unheard Monnow Valley versions and Sawmills Studios outtakes. Pre-order now: https://OasisMusic.lnk.to/DM30YP SUBSCRIBE ▶︎ https://Oasis.lnk.to/YTSubscribeYo Listen to 'Definitely Maybe': https://Oasis.lnk.to/DefMaybeID Stream the best of Oasis playlists: https://Oasis.lnk.to/OASISESSENTIALSYo Join Oasis online: Website: https://Oasis.lnk.to/WebsiteYo Official Store: https://Oasis.lnk.to/shopYo Facebook: https://Oasis.lnk.to/FacebookYo Twitter: https://Oasis.lnk.to/TwitterYo Instagram: https://Oasis.lnk.to/InstagramYo Lyrics: I need to be myself I can't be no one else I'm fee...
Provided to YouTube by The Orchard Enterprises Supersonic (Remastered) · Oasis · Noel Gallagher Definitely Maybe (Deluxe Edition Remastered) ℗ 2014 Big Brother Recordings Ltd Released on: 2014-05-19 Producer: Oasis Producer: Mark Coyle Music Publisher: Dead Leg Music/Sony/ATV Music Publishing Ltd Auto-generated by YouTube.
supersonic by oasis I do not own any of this music.
The best version ever Enjoy
1st night https://youtube.com/playlist?list=PL_9HGFkD4x5cchveGcXz5fqBi3GAc7q2h 2nd night https://youtube.com/playlist?list=PL_9HGFkD4x5e73cL2CZ_CFP9daA9M0c0y Twitter https://twitter.com/Mint_Titan37 Instagram https://www.instagram.com/mint_titan37/ #oasis #オアシス #OasisKnebworth1996 #Supersonic #洋楽 #ロック #洋ロック
Oasis - Supersonic (Live Wembley 2008) (High Quality video) (HD)
Album: Definitely Maybe Spotify: https://open.spotify.com/track/2VNCp5qBfG9kXxMclBFYod?si=foXUCTnoTO6ixORKKIrwtg Supersonic Lyrics: I need to be myself I can't be no one else I'm feeling supersonic Give me gin and tonic You can have it all but how much do you want it? You make me laugh Give me your autograph Can I ride with you in your BMW ? You can sail with me in my yellow submarine You need to find out 'Cos no one's gonna tell you what I'm on about You need to find a way for what you wanna say But before tomorrow 'Cos my friend said he'd take you home He sits in a corner all alone He lives under a waterfall Nobody can see him Nobody can ever hear him call [2x] You need to be yourself You can't be no one else I know a girl called Elsa She's into Alka Seltzer She sniffs it throu...
Oasis - 'Supersonic' (Official Video, UK Version) Taken from album: 'Definitely Maybe' To celebrate the 30th anniversary of the seminal debut single, Oasis will be re-releasing the original CD, plus a limited edition numbered and pearl coloured 7”, on April 12th 2024. Pre-order here: https://oasismusic.lnk.to/Supersonic30 Directed by: Mark Szaszy SUBSCRIBE ▶︎ https://Oasis.lnk.to/YTSubscribeYo Listen to ‘Definitely Maybe’: https://Oasis.lnk.to/DefMaybeID Stream the best of Oasis playlists: https://Oasis.lnk.to/OASISESSENTIALSYo https://www.youtube.com/playlist?list=PLBeeiCx5Kc2uJ7TjYPpQyLaNkHDKegMBB Join Oasis online: Website: https://Oasis.lnk.to/WebsiteYo Official Store: https://Oasis.lnk.to/shopYo Facebook: https://Oasis.lnk.to/FacebookYo Twitter: https://Oasis.lnk.to/TwitterY...
Liam Gallagher performs Supersonic at Reading & Leeds 2024. Watch more highlights on BBC iPlayer: https://www.bbc.co.uk/iplayer/episodes/b007xt4m Listen to sets and highlights on BBC Sounds: https://www.bbc.co.uk/sounds/brand/m00224qy Follow all on social @BBCR1 / @BBCRadio1
HIDDEN ERROR: Usage of "Notable_songs" is not recognizedHIDDEN ERROR: Usage of "Notable_albums" is not recognized
'Tiki Taane, is a New Zealand-based musician, experimentalist, musical activist, producer, live engineer. He was a member of leading New Zealand band Salmonella Dub but left after 11 years on 1 January 2007 to pursue a solo career. His debut album, "Past, Present, Future", was released on 22 October 2007 in New Zealand and has since gone two times platinum, achieving a number one single, "Always On My Mind", which is the most successful single of all time in New Zealand. Becoming the first digital single to reach platinum sales and also holds the record by staying in the NZ Top 40 Charts for 55 weeks. Taane is also the exclusive live sound engineer for New Zealand drum and bass act Shapeshifter since their first gig in 1999. Taane has also produced multi platinum albums for bands such as Six60, Salmonella Dub and Tiki Taane.
Taane was born on 17 December 1976. In 1996, Taane was asked to become live soundman to Christchurch band Salmonella Dub, who were becoming one of NZ’s most popular acts. Through this role, Tiki began to earn himself a reputation for his ability to bring a staggeringly powerful live sound to whatever equipment, venue or environment he was faced with. His time with his metal bands Cultivation and Braaspadeak had become minuscule and irregular, and while on tour with the Dub, Tiki had composed a dub-reggae track in his hotel room. Once he shared it with Salmonella, they recorded it straight away. Tiki and his whanau and friends set to work making a music video featuring Tiki on tour at The Gathering that year. This track, "For the Love Of It", shot into the NZ charts and became a summertime anthem. And so he became faced with not only being soundman for the band, but also the public expectation that he perform his hit song at all their gigs.
[Verse]
Another Mission
Of the invincible
Another Mission
Of the incorruptible
Get Ready!
Throw me Away!
Take Me Away!
[Pre-chorus]
Are You Afraid
For the fight of your life!
[chorus]
Let the flame burn away(Burn away)
Remove the fear of your mind(Remove!)
Turn Away from the the things you want to find!
Take Me Away!
I'm beginning to break
Take Me Away!
Don't Make me take!
Just take me away!
I'm turning away...from you
I'm throwing away...everything about you
I'm so tired of you.Leave me alone!
[verse2]
Your Unbreakable
Your Unshakeable
Your Indestructible
Your Invincible(invincible)
Your Unbreakable
Your Unshakeable
Your Indestructible
Your Invincible(invincible)
[pre-chorus]
Are You Afraid
For the fight of your life!
[Chorus]
Let the flame burn away(Burn away)
Remove the fear of your mind(Remove!)
Turn Away from the the things you want to find!
Take Me Away!
I'm beginning to break
Take Me Away!
Don't Make me take!
Just take me away!
I'm turning away...from you
I'm throwing away...everything about you
I'm so tired of you.Leave me alone!
[Bridge]
Feel the flame
Nothings the same
Every,Broken,Enemy,Will Die!
Orders to kill you!
Unbreakable
Unshakeable
Your Idestructible
Your Invincible
Unbreakable
Unshakeable
Your Idestructible
Your Invincible!
[pre chorus]
Are You Afraid
For the fight of your life
Are You Afraid
For the fight of your life
Are You Afraid
For the fight of your life
Are You Afraid
For the fight of your life!
[chorus]
Let the flame burn away(Burn away)
Remove the fear of your mind(Remove!)
Turn Away from the the things you want to find!
Take Me Away!
I'm beginning to break
Take Me Away!
Don't Make me take!
Just take me away!
I'm turning away...from you
I'm throwing away...everything about you