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

Hold On (Sean Paul song)

Hold On is the third single from the Jamaican recording artist Sean Paul's fifth studio album Tomahawk Technique. It was written by Pierre "The Maven" Medor, Rico Love and Sean Paul Henriques and was produced by Pierre "The Maven" Medor, Rico Love. The song has charted in France.

Hold On is widely associated with Usain Bolt in his endeavour to victory in the London 2012 Olympic Games in the 100m and 200m races.

Music video

A Lyric music video to accompany the release of "Hold On" was first released onto YouTube on 21 February 2012 at a total length of four minutes and nine seconds.

Track listing

  • "Hold On" - 4:08
  • Credits and personnel

  • Lead vocals – Sean Paul
  • Producers – Pierre "The Maven" Medor, Rico Love
  • Lyrics – Pierre "The Maven" Medor, Rico Love, Sean Paul Henriques
  • Label: Atlantic
  • Chart performance

    References

    Hold On (Rosanne Cash song)

    "Hold On" is a song written and recorded by American country music artist Rosanne Cash. It was released in February 1986 as the third single from the album Rhythm and Romance. The song reached #5 on the Billboard Hot Country Singles & Tracks chart.

    Chart performance

    References

    Starsailor (band)

    Starsailor is an English post-Britpop band, formed in 2000. Since its formation the band has included guitarist and vocalist James Walsh, drummer Ben Byrne, bassist James Stelfox and keyboardist Barry Westhead.

    The band have released four studio albums: Love Is Here (2001), Silence Is Easy (2003), On the Outside (2005) and All the Plans (2009), and have scored ten Top 40 hit singles in the UK. After the release of their most recent album, All the Plans, the band had entered into extended hiatus until 2014, during which they have been involved in individual projects.

    Starsailor announced their reunion on 23 May 2014 and began performing worldwide.

    History

    Formation, signed by EMI (1999–2000)

    Despite being known as a Wigan band, only one member of Starsailor is actually from the town. The band met at the Parsons Walk Campus of Wigan and Leigh College. Bassist James Stelfox and drummer Ben Byrne had been playing together in Warrington, Cheshire for a number of years. When their regular singer fell ill, they recruited young singer and songwriter James Walsh from a school choir. He was influenced by Jeff Buckley and his 1994 album Grace in his singing style. Comparing it to Oasis' (What's the Story) Morning Glory? album, which Walsh says sums up a unique moment, Grace captures every moment.

    Fermata

    A fermata [ferˈmaːta] (also known as a hold, pause, colloquially a birdseye or cyclops eye, or as a grand pause when placed on a note or a rest) is a symbol of musical notation indicating that the note should be prolonged beyond its normal duration or note value would indicate. Exactly how much longer it is held is up to the discretion of the performer or conductor, but twice as long is not unusual. It is usually printed above, but occasionally below (upside down), the note that is to be held longer.

    When a fermata is placed over a bar or double-bar, it is used to indicate the end of a phrase or section of a work. In a concerto, it indicates the point where the soloist is to play a cadenza.

    A fermata can occur at the end of a piece (or movement), or it can occur in the middle of a piece, and be followed by either a brief rest or more notes.

    Other names for a fermata are corona (Italian), point d'orgue (French), Fermate (German), and calderón (Spanish).

    History and use

    This symbol appears as early as the 15th century, and is quite common in the works of Dufay and Josquin.

    Hold (baseball)

    A hold (abbreviated HLD, H or HD) is awarded to a relief pitcher who meets the following three conditions:

    The hold is not an official Major League Baseball statistic.

    Description

    Unlike saves, wins, and losses, more than one pitcher per team can earn a hold for a game, though it is not possible for a pitcher to receive more than one hold in a given game. A pitcher can receive a hold by protecting a lead even if that lead is lost by a later pitcher after his exit.

    The hold was invented in 1986 by John Dewan and Mike O'Donnell to give a statistical measure of the effectiveness of the vast majority of relief pitchers who are afforded few opportunities to close a game. While middle relievers earn their share, holds are most often credited to setup pitchers.

    In 1994, PA SportsTicker created an alternate definition for a hold, removing the requirement that a pitcher needs to make an out in order to record a hold. In 2009, STATS LLC purchased PA SportsTicker, and the alternate definition is no longer in use.

    I'm Sorry I'm Leaving

    I'm Sorry I'm Leaving is an acoustic EP released by American rock band Saves the Day, released by Immigrant Sun on July 1, 1999.

    It differed from the album by having a lighter acoustic sound. The EP was recorded in one week in 1998.

    Background and recording

    Saves the Day formed in late 1997, their debut album, Can't Slow Down, was released with Equal Vision in August 1998. The album helped the band gain fans, but only in the New Jersey area. The band promoted the album with two tours, which helped the band expand their fan base. Saves the Day had three different line-up changes while touring Can't Slow Down, leaving vocalist Chris Conley and Newman as the only original members left.

    I'm Sorry I'm Leaving was recorded and mixed at Shoulder to the Wheel Studio in March 1999. The EP was mastered by M.J.R. at Metropolis Mastering Ltd.

    Release

    I'm Sorry I'm Leaving was released on Immigrant Sun Records on July 1, 1999. It includes a cover of Modern English's "I Melt with You".

    MV Erika

    Erika was the name of a tanker built in 1975 and last chartered by Total-Fina-Elf. It sank off the coast of France in 1999, causing a major environmental disaster.

    Background

    Erika was one of eight sister ships built in Japan. Despite having 10% less steel than many other tankers of similar size, Erika was very popular amongst shipping companies because of its relative inexpensiveness.

    Sinking

    On December 8, 1999, she sailed out of Dunkerque, bound for Livorno and with a heavy cargo of around 31,000 tons of fuel oil.

    As she entered the Bay of Biscay, the Erika ran into a heavy storm. On December 12, 1999, she broke in two and sank, releasing thousands of tons of oil into the sea, killing marine life and polluting shores around Brittany, France.

    According to the official inquiry by the Dunkerque Tribunal, the Principal Shareholder of Tevere Shipping is Giuseppe Savarese, owner of the Erika since 1996. Savarese lives in London and was personally responsible for finance, administration, legal, commercial, hull and machinery insurance and P&I insurance matters.

    Podcasts:

    • Starsailor - Poor Misguided Fool (Official Video)

      Official video of Starsailor performing Poor Misguided Fool from the album Love Is Here. Buy It Here: http://smarturl.it/vu5qu3 Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #PoorMisguidedFool #LoveIsHere

      published: 26 Feb 2009
    • Starsailor - Silence Is Easy (Official Video)

      Official video of Starsailor performing Silence Is Easy from the album Silence Is Easy. Buy It Here: http://smarturl.it/mrhqjy Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #SilenceIsEasy #Indie

      published: 26 Feb 2009
    • Starsailor - Alcoholic (Official Video)

      Official video of Starsailor performing Alcoholic from the album Love Is Here. Buy It Here: http://smarturl.it/kx2pqa Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #Alcoholic #LoveIsHere

      published: 26 Feb 2009
    • Starsailor - Listen to Your Heart (Lyric Video)

      'Listen To Your Heart' is the new single from Starsailor’s brand new album 'All This Life' out now! Visit https://starsailor.lnk.to/ATLYo to buy the album now. The album includes ‘Listen To Your Heart’, ‘Take A Little Time’ and ‘All This Life'. Exclusive bundles and signed items available from the official store - for further information click here https://starsailor.lnk.to/ATL/starsailorstore Tickets for UK Tour in October & European Tour Oct/Nov 2017 on sale now – available here http://www.starsailorband.co.uk/tour.asp For live dates and the latest news, sign up to Starsailor's mailing list: http://www.starsailorband.co.uk Follow Starsailor: Facebook: https://www.facebook.com/starsailorofficial Twitter: https://twitter.com/Starsailorband Instagram: https://www.instagram.com/stars...

      published: 30 Jun 2017
    • Starsailor - Live at Glastonbury (26/06/04)

      From the archives: Starsailor's triumphant Saturday evening appearance on Glastonbury's Pyramid Stage in 2004. "We had Liam Gallagher in the dressing room in 2004, singing some new songs he was working on a cappella. He was mates with Mark Collins, who played guitar for us." - James Walsh 0:00 Poor Misguided Fool 2:39 Music Was Saved 5:40 Four to The Floor 10:27 Alcoholic 14:19 Silence is Easy 20:02 Good Souls

      published: 27 Jun 2020
    • Starsailor - Four To The Floor (Official Video)

      Official video of Starsailor performing Four To The Floor from the album Silence Is Easy. Buy It Here: http://smarturl.it/5zh9qd Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #FourToTheFloor #SilenceIsEasy

      published: 26 Feb 2009
    • Starsailor - In The Crossfire (Official Video)

      Official video of Starsailor performing In The Crossfire from the album On The Outside. Buy It Here: http://smarturl.it/4gd46d Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #InTheCrossfire #OnTheOutside

      published: 26 Feb 2009
    • S̲t̲a̲r̲s̲a̲i̲l̲o̲r̲̲ | L̲o̲v̲e̲ ̲I̲s̲ ̲H̲e̲r̲e̲

      published: 25 Jan 2022
    • Starsailor - Live at House of Blues (01/06/15)

      From the archives: our full set from the famous House of Blues in Anaheim, California, as streamed online via Yahoo. "This was the first gig of the 2015 U.S. tour. It was surreal. We were jet-lagged and walked up to near the entrance of Disneyland to get into it! It was really exciting to be back in America after so many years and the bus we were sharing with Embrace wasn’t a tip yet!" - James Walsh 0:00 Poor Misguided Fool 4:35 Alcoholic 8:10 Boy in Waiting 11:40 Lullaby 17:27 Neon Sky 25:02 Love Is Here 30:18 Give Up The Ghost 33:58 Tie Up My Hands 41:20 Tell Me It's Not Over 48:15 Four To The Floor 52:28 Silence Is Easy 57:48 Good Souls

      published: 09 May 2020
    • Starsailor - Good Souls (Official Video) HD

      Starsailor - Good Souls (HD Video) 2001 Directed by David Mould https://open.spotify.com/artist/0G8zjE6SsFTlbglCkU8pm3 https://www.starsailorband.co.uk #Starsailor #GoodSouls #Remastered #LoveIsHere #HD

      published: 10 Dec 2022
    developed with YouTube
    Starsailor - Poor Misguided Fool (Official Video)
    3:55

    Starsailor - Poor Misguided Fool (Official Video)

    • Order:
    • Duration: 3:55
    • Uploaded Date: 26 Feb 2009
    • views: 2917941
    Official video of Starsailor performing Poor Misguided Fool from the album Love Is Here. Buy It Here: http://smarturl.it/vu5qu3 Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #PoorMisguidedFool #LoveIsHere
    https://wn.com/Starsailor_Poor_Misguided_Fool_(Official_Video)
    Starsailor - Silence Is Easy (Official Video)
    3:44

    Starsailor - Silence Is Easy (Official Video)

    • Order:
    • Duration: 3:44
    • Uploaded Date: 26 Feb 2009
    • views: 1585455
    Official video of Starsailor performing Silence Is Easy from the album Silence Is Easy. Buy It Here: http://smarturl.it/mrhqjy Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #SilenceIsEasy #Indie
    https://wn.com/Starsailor_Silence_Is_Easy_(Official_Video)
    Starsailor - Alcoholic (Official Video)
    3:08

    Starsailor - Alcoholic (Official Video)

    • Order:
    • Duration: 3:08
    • Uploaded Date: 26 Feb 2009
    • views: 2102625
    Official video of Starsailor performing Alcoholic from the album Love Is Here. Buy It Here: http://smarturl.it/kx2pqa Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #Alcoholic #LoveIsHere
    https://wn.com/Starsailor_Alcoholic_(Official_Video)
    Starsailor - Listen to Your Heart (Lyric Video)
    3:52

    Starsailor - Listen to Your Heart (Lyric Video)

    • Order:
    • Duration: 3:52
    • Uploaded Date: 30 Jun 2017
    • views: 280876
    'Listen To Your Heart' is the new single from Starsailor’s brand new album 'All This Life' out now! Visit https://starsailor.lnk.to/ATLYo to buy the album now. The album includes ‘Listen To Your Heart’, ‘Take A Little Time’ and ‘All This Life'. Exclusive bundles and signed items available from the official store - for further information click here https://starsailor.lnk.to/ATL/starsailorstore Tickets for UK Tour in October & European Tour Oct/Nov 2017 on sale now – available here http://www.starsailorband.co.uk/tour.asp For live dates and the latest news, sign up to Starsailor's mailing list: http://www.starsailorband.co.uk Follow Starsailor: Facebook: https://www.facebook.com/starsailorofficial Twitter: https://twitter.com/Starsailorband Instagram: https://www.instagram.com/starsailorofficial Vevo: https://www.youtube.com/channel/UCEmdIfdDISniS_hf2UYCJFw
    https://wn.com/Starsailor_Listen_To_Your_Heart_(Lyric_Video)
    Starsailor - Live at Glastonbury (26/06/04)
    31:25

    Starsailor - Live at Glastonbury (26/06/04)

    • Order:
    • Duration: 31:25
    • Uploaded Date: 27 Jun 2020
    • views: 16945
    From the archives: Starsailor's triumphant Saturday evening appearance on Glastonbury's Pyramid Stage in 2004. "We had Liam Gallagher in the dressing room in 2004, singing some new songs he was working on a cappella. He was mates with Mark Collins, who played guitar for us." - James Walsh 0:00 Poor Misguided Fool 2:39 Music Was Saved 5:40 Four to The Floor 10:27 Alcoholic 14:19 Silence is Easy 20:02 Good Souls
    https://wn.com/Starsailor_Live_At_Glastonbury_(26_06_04)
    Starsailor - Four To The Floor (Official Video)
    4:00

    Starsailor - Four To The Floor (Official Video)

    • Order:
    • Duration: 4:00
    • Uploaded Date: 26 Feb 2009
    • views: 1919592
    Official video of Starsailor performing Four To The Floor from the album Silence Is Easy. Buy It Here: http://smarturl.it/5zh9qd Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #FourToTheFloor #SilenceIsEasy
    https://wn.com/Starsailor_Four_To_The_Floor_(Official_Video)
    Starsailor - In The Crossfire (Official Video)
    3:27

    Starsailor - In The Crossfire (Official Video)

    • Order:
    • Duration: 3:27
    • Uploaded Date: 26 Feb 2009
    • views: 957205
    Official video of Starsailor performing In The Crossfire from the album On The Outside. Buy It Here: http://smarturl.it/4gd46d Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #InTheCrossfire #OnTheOutside
    https://wn.com/Starsailor_In_The_Crossfire_(Official_Video)
    S̲t̲a̲r̲s̲a̲i̲l̲o̲r̲̲ | L̲o̲v̲e̲ ̲I̲s̲ ̲H̲e̲r̲e̲
    57:56

    S̲t̲a̲r̲s̲a̲i̲l̲o̲r̲̲ | L̲o̲v̲e̲ ̲I̲s̲ ̲H̲e̲r̲e̲

    • Order:
    • Duration: 57:56
    • Uploaded Date: 25 Jan 2022
    • views: 13633
    https://wn.com/S̲T̲A̲R̲S̲A̲I̲L̲O̲R̲̲_|_L̲O̲V̲E̲_̲I̲S̲_̲H̲E̲R̲E̲
    Starsailor - Live at House of Blues (01/06/15)
    1:07:31

    Starsailor - Live at House of Blues (01/06/15)

    • Order:
    • Duration: 1:07:31
    • Uploaded Date: 09 May 2020
    • views: 45930
    From the archives: our full set from the famous House of Blues in Anaheim, California, as streamed online via Yahoo. "This was the first gig of the 2015 U.S. tour. It was surreal. We were jet-lagged and walked up to near the entrance of Disneyland to get into it! It was really exciting to be back in America after so many years and the bus we were sharing with Embrace wasn’t a tip yet!" - James Walsh 0:00 Poor Misguided Fool 4:35 Alcoholic 8:10 Boy in Waiting 11:40 Lullaby 17:27 Neon Sky 25:02 Love Is Here 30:18 Give Up The Ghost 33:58 Tie Up My Hands 41:20 Tell Me It's Not Over 48:15 Four To The Floor 52:28 Silence Is Easy 57:48 Good Souls
    https://wn.com/Starsailor_Live_At_House_Of_Blues_(01_06_15)
    Starsailor - Good Souls (Official Video) HD
    4:31

    Starsailor - Good Souls (Official Video) HD

    • Order:
    • Duration: 4:31
    • Uploaded Date: 10 Dec 2022
    • views: 18836
    Starsailor - Good Souls (HD Video) 2001 Directed by David Mould https://open.spotify.com/artist/0G8zjE6SsFTlbglCkU8pm3 https://www.starsailorband.co.uk #Starsailor #GoodSouls #Remastered #LoveIsHere #HD
    https://wn.com/Starsailor_Good_Souls_(Official_Video)_Hd
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Starsailor - Poor Misguided Fool (Official Video)

    Official video of Starsailor performing Poor Misguided Fool from the album Love Is Here. Buy It Here: http://smarturl.it/vu5qu3 Like Starsailor on Facebook: http://www.facebook.com/starsailorofficial?ref=s Official Website: http://www.starsailor.net/ Official YouTube Channel: http://www.youtube.com/user/starsailorofficial #Starsailor #PoorMisguidedFool #LoveIsHere
    3:55
    Starsailor - Poor Misguided Fool (Official Video)
    Official video of Starsailor performing Poor Misguided Fool from the album Love Is Here. ...
    published: 26 Feb 2009
    Play in Full Screen
    3:44
    Starsailor - Silence Is Easy (Official Video)
    Official video of Starsailor performing Silence Is Easy from the album Silence Is Easy. Bu...
    published: 26 Feb 2009
    Play in Full Screen
    3:08
    Starsailor - Alcoholic (Official Video)
    Official video of Starsailor performing Alcoholic from the album Love Is Here. Buy It Her...
    published: 26 Feb 2009
    Play in Full Screen
    3:52
    Starsailor - Listen to Your Heart (Lyric Video)
    'Listen To Your Heart' is the new single from Starsailor’s brand new album 'All This Life'...
    published: 30 Jun 2017
    Play in Full Screen
    31:25
    Starsailor - Live at Glastonbury (26/06/04)
    From the archives: Starsailor's triumphant Saturday evening appearance on Glastonbury's Py...
    published: 27 Jun 2020
    Play in Full Screen
    4:00
    Starsailor - Four To The Floor (Official Video)
    Official video of Starsailor performing Four To The Floor from the album Silence Is Easy. ...
    published: 26 Feb 2009
    Play in Full Screen
    3:27
    Starsailor - In The Crossfire (Official Video)
    Official video of Starsailor performing In The Crossfire from the album On The Outside. B...
    published: 26 Feb 2009
    Play in Full Screen
    57:56
    S̲t̲a̲r̲s̲a̲i̲l̲o̲r̲̲ | L̲o̲v̲e̲ ̲I̲s̲ ̲H̲e̲r̲e̲
    published: 25 Jan 2022
    Play in Full Screen
    1:07:31
    Starsailor - Live at House of Blues (01/06/15)
    From the archives: our full set from the famous House of Blues in Anaheim, California, as ...
    published: 09 May 2020
    Play in Full Screen
    4:31
    Starsailor - Good Souls (Official Video) HD
    Starsailor - Good Souls (HD Video) 2001 Directed by David Mould https://open.spotify.com/a...
    published: 10 Dec 2022
    Play in Full Screen

    Hold On (Sean Paul song)

    Hold On is the third single from the Jamaican recording artist Sean Paul's fifth studio album Tomahawk Technique. It was written by Pierre "The Maven" Medor, Rico Love and Sean Paul Henriques and was produced by Pierre "The Maven" Medor, Rico Love. The song has charted in France.

    Hold On is widely associated with Usain Bolt in his endeavour to victory in the London 2012 Olympic Games in the 100m and 200m races.

    Music video

    A Lyric music video to accompany the release of "Hold On" was first released onto YouTube on 21 February 2012 at a total length of four minutes and nine seconds.

    Track listing

  • "Hold On" - 4:08
  • Credits and personnel

  • Lead vocals – Sean Paul
  • Producers – Pierre "The Maven" Medor, Rico Love
  • Lyrics – Pierre "The Maven" Medor, Rico Love, Sean Paul Henriques
  • Label: Atlantic
  • Chart performance

    References

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