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

Lazy Day

Lazy Day or Lazy Days may refer to:

Film and TV

  • Lazy Days (film), a 1929 film directed by Robert F. McGowan
  • Music

  • "Lazy Day", a song by New York pop band The Left Banke from Walk Away Renée/Pretty Ballerina 1967
  • "Lazy Day" (Spanky and Our Gang song), 1967
  • "Lazy Day" (The Moody Blues song), 1969
  • "Lazy Day", a song by The Boo Radleys from Everything's Alright Forever
  • "Lazy Day", a song by Us3 from Hand on the Torch 2003
  • "Lazy Days", a song from the album Life thru a Lens by Robbie Williams
  • Lazy Days (Gram Parsons song)
  • "Lazy Days", song by Chris Andrews (singer) 1972
  • "Lazy Days", song by John Paul Young 1978
  • Lazy Day (The Moody Blues song)

    "Lazy Day" is a 1969 song by the progressive rock band The Moody Blues. It was written by the band's flautist Ray Thomas, although he does not play flute on this particular song. It was recorded and released in 1969 on the Moody Blues Album On the Threshold of a Dream.

    "Lazy Day" features Ray Thomas on lead vocals, and its lyrics go on to describe a typical Sunday afternoon, and includes activities like "Like to put your feet up, watch TV."

    Towards the end of the verses, the lyrics "It's a crying shame. Week after week, the same," and "That's how your life goes by, until the day you die" can be heard under Ray Thomas's voice. These lyrics were sung by Justin Hayward, and describe the sad situation of the narrator's typical Sunday afternoons. Many people cite this song as an example of Ray Thomas' great harmonica playing as this song features a melancholy harmonica solo that highlights the sadness of the song's last verse.

    Personnel

  • Ray Thomas: lead vocals, harmonica
  • Lazy Day (Spanky and Our Gang song)

    "Lazy Day" is a popular song by the 1960s band Spanky and Our Gang that peaked at number 14 on the Billboard Hot 100 chart after its 1967 release and number 1 in the Canadian RPM Magazine charts. It appeared on their album Spanky and Our Gang.

    The song stayed in the Top 40 four weeks longer than their other hit song, "Sunday Will Never Be the Same", which peaked higher on the Billboard Hot 100 chart. "Lazy Day" was featured on The Ed Sullivan Show and sold over one million copies.

    Critical reception

    Written by George Fischoff and Tony Powers, the song received generally positive reviews and is fondly remembered. According to AllMusic, "Lazy Day" "...is a giddy joy no matter what." Despite calling the lyrics frothy, The Milwaukee Journal writer Dick Young called the melody magnetic.

    Other versions

  • Lesley Gore released a version in May 1969 as a medley with "98.6".
  • The song's opening was sampled in Masta Ace's 2001 single "Take A Walk".
  • References

    Podcasts:

    • Bruno Mars - The Lazy Song (Official Music Video)

      The official music video for Bruno Mars' "The Lazy Song" from the album 'Doo-Wops and Hooligans''. Stream: https://apple.co/38qBTEU Directed by Bruno Mars and Cameron Duddy Choreographed and Performed by Poreotics: http://poreotics.com Comic Chimp Mask used by permission of Easter Unlimited, Inc. / FunWorld Div. All Rights Reserved. Copyright 2009. 🔔 Subscribe for the latest official music videos, live performances, lyric videos, official audio, and more: https://Atlantic.lnk.to/BMsubscribe Watch All Of Bruno Mars’ Official Music Videos ➤ https://bit.ly/2U7I3mi See Bruno Mars on tour! Visit http://brunomars.com/tour for dates and more info. Get Bruno Mars merchandise! https://brunom.rs/brunomarsstore Follow Bruno Mars: http://www.brunomars.com http://www.instagram.com/brunomars htt...

      published: 15 Apr 2011
    • Lazy Day

      Provided to YouTube by Universal Music Group Lazy Day · Spanky & Our Gang Spanky & Our Gang ℗ A Mercury Records Release; ℗ 1967 UMG Recordings, Inc. Released on: 1967-01-01 Producer: Jerry Ross Associated Performer, Recording Arranger: Jimmy Wisner Composer Lyricist: George Fischoff Composer Lyricist: Tony Powers Auto-generated by YouTube.

      published: 31 Jul 2018
    • Fuse ODG - Lazy Day ft. Danny Ocean (Official Video)

      Stream the song here: https://bit.ly/2QWMWxA Afrobeats pioneer Fuse ODG returns with his brand new track ‘Lazy Day’ which features Latin superstar, Danny Ocean. Credits: Produced by: Killbeatz, Yr$ Trly Vocals by: Fuse ODG, Ed Sheeran, Danny Ocean Written by: Nana Richard Abiona, Ed Sheeran, Joseph Addison Guitars by: OTWoode Mixed by: James Reynolds Mastered by: Kevin Tuffy Music Video Directed by: Chris Moreno Follow Fuse ODG: https://www.instagram.com/FuseODG https://www.twitter.com/FuseODG https://www.facebook.com/FuseODGVibes About the song: Do you ever have one of those days when you feel like doing absolutely nothing? I imagine a resounding ‘Yes’ is the answer. Fuse distills that feeling and dedicates his new song ‘Lazy’ Day’ to the virtues of having a chilled one with the ...

      published: 29 Nov 2019
    • Bruno Mars - The Lazy Song (Lyrics)

      ♫ Bruno Mars - The Lazy Song Stream/Download : • Bruno Mars • • http://www.brunomars.com • http://www.instagram.com/brunomars • http://www.twitter.com/brunomars • http://www.facebook.com/brunomars (Lyrics): [Chorus] Today, I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today, I swear, I'm not doing anything, uh [Verse 1] I'm gonna kick my feet up, then stare at the fan Turn the TV on, throw my hand in my pants Nobody's gon' tell me I can't, nah I'll be lounging on the couch, just chillin' in my Snuggie Click to MTV, so they can teach me how to dougie 'Cause in my castle, I'm the freaking man [Pre-Chorus] Oh-oh, yes, I said it (Ooh-ooh) I said it, I said it, 'cause I can (Ooh-ooh-ooh-ooh-ooh-ooh) [Cho...

      published: 23 Sep 2022
    • Robbie Williams - Lazy Days

      Pre-order new album Swings Both Ways now: iTunes http://po.st/SBWYT | Amazon http://po.st/SBWAmYT http://www.robbiewilliams.com Follow Robbie: http://www.facebook.com/robbiewilliams http://www.twitter.com/robbiewilliams http://mind.robbiewilliams.com/

      published: 20 Jan 2011
    • Spanky & Our Gang "Lazy Day" on The Ed Sullivan Show

      Spanky & Our Gang "Lazy Day" on The Ed Sullivan Show on December 17, 1967. Subscribe now to never miss an update: https://ume.lnk.to/EdSullivanSubscribe Watch Motown performances from The Ed Sullivan Show https://youtube.com/watch?v=jVmVvQdVCSw&list=PLQWND5qZhbj3tfQKiK-5FzjLSTUz5WRTf Watch classic Rock and Roll performances from The Ed Sullivan Show: https://youtube.com/watch?v=qwlrUUyxg9c&list=PLQWND5qZhbj06AA1fnZQnHvOqP5ZctF8Y Watch Iconic Singers perform on The Ed Sullivan Show: https://www.youtube.com/watch?v=MIIU9xkGAMs&list=PLQWND5qZhbj1fSTRzLrpV3vLO1yOGx8vH Sign up to receive the Ed Sullivan Show newsletter! https://EdSullivan.lnk.to/SubscribeToEmail Follow The Ed Sullivan Show: Website http://edsullivan.com/ Facebook https://facebook.com/EdSullivanShow Twitter https://twitter...

      published: 13 Mar 2021
    • Lazy Days

      Provided to YouTube by WM UK Lazy Days · Enya A Day Without Rain ℗ 2000 Warner Music UK Limited Arranger: Enya Unknown: Enya Instruments, Vocals: Enya Arranger, Producer: Nicky Ryan Unknown: Nicky Ryan Engineer: Nicky Ryan Writer: Enya Writer: Roma Ryan Auto-generated by YouTube.

      published: 08 Nov 2014
    • playlist for those lazy days with nothing to do 🌤 // chill pop, indie rock songs

      original description, spotify link and timestamps are in the pinned comment.

      published: 26 Jan 2021
    • COME WITH ME THROUGH OUT MY LAZY DAY. MY FOOD, A CHAT, MORE CHANNEL PLANS. 6th calm quote.

      published: 30 Dec 2023
    • Spanky And Our Gang ~ Lazy Day (Stereo)

      Lazy Day by Spanky And Our Gang - from 1967 - this version is the one that was a hit in our town...it has the people saying hello in the background

      published: 07 Jun 2015
    developed with YouTube
    Bruno Mars - The Lazy Song (Official Music Video)
    3:20

    Bruno Mars - The Lazy Song (Official Music Video)

    • Order:
    • Duration: 3:20
    • Uploaded Date: 15 Apr 2011
    • views: 2892062089
    The official music video for Bruno Mars' "The Lazy Song" from the album 'Doo-Wops and Hooligans''. Stream: https://apple.co/38qBTEU Directed by Bruno Mars and Cameron Duddy Choreographed and Performed by Poreotics: http://poreotics.com Comic Chimp Mask used by permission of Easter Unlimited, Inc. / FunWorld Div. All Rights Reserved. Copyright 2009. 🔔 Subscribe for the latest official music videos, live performances, lyric videos, official audio, and more: https://Atlantic.lnk.to/BMsubscribe Watch All Of Bruno Mars’ Official Music Videos ➤ https://bit.ly/2U7I3mi See Bruno Mars on tour! Visit http://brunomars.com/tour for dates and more info. Get Bruno Mars merchandise! https://brunom.rs/brunomarsstore Follow Bruno Mars: http://www.brunomars.com http://www.instagram.com/brunomars http://www.twitter.com/brunomars http://www.facebook.com/brunomars LYRICS Today I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today I swear I'm not doing anything. Uh! I'm gonna kick my feet up Then stare at the fan Turn the TV on, throw my hand in my pants Nobody's gonna tell me I can't I'll be lounging on the couch, Just chillin' in my snuggie Click to MTV, so they can teach me how to dougie 'Cause in my castle I'm the freaking man Oh, yes I said it I said it I said it 'cause I can Today I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today I swear I'm not doing anything Nothing at all! Ooh, hoo, ooh, hoo, ooh, ooh-ooh Nothing at all Ooh, hoo, ooh, hoo, ooh, ooh-ooh Tomorrow I'll wake up, do some P90X Meet a really nice girl, have some really nice sex And she's gonna scream out: 'This is Great' (Oh my God, this is great) Yeah I might mess around, get my college degree I bet my old man will be so proud of me But sorry pops, you'll just have to wait Haha Oh, yes I said it I said it I said it 'cause I can Today I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today I swear I'm not doing anything No, I ain't gonna comb my hair 'Cause I ain't going anywhere No, no, no, no, no, no, no, no, no I'll just strut in my birthday suit And let everything hang loose Yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah Ooh Today I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today I swear I'm not doing anything Nothing at all Nothing at all Nothing at all The official YouTube channel of Atlantic Records artist Bruno Mars. 15x GRAMMY Award winner and 27x GRAMMY Award nominee Bruno Mars is a celebrated singer, songwriter, producer, and musician with iconic hits like "The Lazy Song", "That's What I Like", "Just The Way You Are", "24K Magic", "Locked Out Of Heaven", and "When I Was Your Man". His legendary body of work also includes blockbuster albums such as Doo-Wops & Hooligans, Unorthodox Jukebox, and 24K Magic, as well as era-defining collaborations like "Uptown Funk" with Mark Ronson, "Finesse" with Cardi B, and "Nothin' On You" with B.o.B. Forever classic, yet supremely innovative, Bruno continues to redefine music, style, and popular culture, pushing the boundaries of pop, R&B, funk, soul, hip-hop, and dance, and remains as influential as ever. #BrunoMars #TheLazySong #DooWopsandHooligans #OfficialMusicVideo #AtlanticRecords
    https://wn.com/Bruno_Mars_The_Lazy_Song_(Official_Music_Video)
    Lazy Day
    3:09

    Lazy Day

    • Order:
    • Duration: 3:09
    • Uploaded Date: 31 Jul 2018
    • views: 622535
    Provided to YouTube by Universal Music Group Lazy Day · Spanky & Our Gang Spanky & Our Gang ℗ A Mercury Records Release; ℗ 1967 UMG Recordings, Inc. Released on: 1967-01-01 Producer: Jerry Ross Associated Performer, Recording Arranger: Jimmy Wisner Composer Lyricist: George Fischoff Composer Lyricist: Tony Powers Auto-generated by YouTube.
    https://wn.com/Lazy_Day
    Fuse ODG - Lazy Day ft. Danny Ocean (Official Video)
    3:34

    Fuse ODG - Lazy Day ft. Danny Ocean (Official Video)

    • Order:
    • Duration: 3:34
    • Uploaded Date: 29 Nov 2019
    • views: 1488410
    Stream the song here: https://bit.ly/2QWMWxA Afrobeats pioneer Fuse ODG returns with his brand new track ‘Lazy Day’ which features Latin superstar, Danny Ocean. Credits: Produced by: Killbeatz, Yr$ Trly Vocals by: Fuse ODG, Ed Sheeran, Danny Ocean Written by: Nana Richard Abiona, Ed Sheeran, Joseph Addison Guitars by: OTWoode Mixed by: James Reynolds Mastered by: Kevin Tuffy Music Video Directed by: Chris Moreno Follow Fuse ODG: https://www.instagram.com/FuseODG https://www.twitter.com/FuseODG https://www.facebook.com/FuseODGVibes About the song: Do you ever have one of those days when you feel like doing absolutely nothing? I imagine a resounding ‘Yes’ is the answer. Fuse distills that feeling and dedicates his new song ‘Lazy’ Day’ to the virtues of having a chilled one with the one you love. No plans, no pressure, just lounging about in comfies, eating and watching trashy tv. Fuse extolling the key message...“work hard, rest hard, recharge, then take over” #FuseODG #LazyDay
    https://wn.com/Fuse_Odg_Lazy_Day_Ft._Danny_Ocean_(Official_Video)
    Bruno Mars - The Lazy Song (Lyrics)
    3:10

    Bruno Mars - The Lazy Song (Lyrics)

    • Order:
    • Duration: 3:10
    • Uploaded Date: 23 Sep 2022
    • views: 14473139
    ♫ Bruno Mars - The Lazy Song Stream/Download : • Bruno Mars • • http://www.brunomars.com • http://www.instagram.com/brunomars • http://www.twitter.com/brunomars • http://www.facebook.com/brunomars (Lyrics): [Chorus] Today, I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today, I swear, I'm not doing anything, uh [Verse 1] I'm gonna kick my feet up, then stare at the fan Turn the TV on, throw my hand in my pants Nobody's gon' tell me I can't, nah I'll be lounging on the couch, just chillin' in my Snuggie Click to MTV, so they can teach me how to dougie 'Cause in my castle, I'm the freaking man [Pre-Chorus] Oh-oh, yes, I said it (Ooh-ooh) I said it, I said it, 'cause I can (Ooh-ooh-ooh-ooh-ooh-ooh) [Chorus] Today, I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today, I swear, I'm not doing anything Nothing at all Woo-hoo, woo-hoo, ooh Nothing at all Woo-hoo, woo-hoo, ooh [Verse 2] Tomorrow, I'll wake up, do some P90X Meet a really nice girl, have some really nice sex And she's gonna scream out, "This is great!" (Oh my God, this is great) Yeah, I might mess around and get my college degree I bet my old man will be so proud of me But sorry, pops, you'll just have to wait [Pre-Chorus] Oh-oh, yes I said it (Ooh-ooh) I said it, I said it, 'cause I can (Ooh-ooh-ooh-ooh-ooh) [Chorus] Today, I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today, I swear, I'm not doing anything [Bridge] No, I ain't gonna comb my hair (Ooh-ooh-ooh) 'Cause I ain't going anywhere (Ooh-ooh-ooh) No, no, no, no, no, no, no, no, no I'll just strut in my birthday suit (Ooh-ooh-ooh) And let everything hang loose (Ooh-ooh-ooh) Yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah [Chorus] Oh, today, I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today, I swear, I'm not doing anything Nothing at all Woo-hoo, woo-hoo, ooh Nothing at all Woo-hoo, woo-hoo, ooh Nothing at all Tags: Bruno Mars The Lazy Song Lyrics The Lazy Song Lyrics Bruno Mars Bruno Mars Lyrics The Lazy Song Bruno Mars The Lazy Song Oh today I don't feel like doing anything I just wanna lay in my bed Bruno Mars Lazy Song #brunomars #thelazysong #lyrics Contact : droppinglyricsvibe@gmail.com
    https://wn.com/Bruno_Mars_The_Lazy_Song_(Lyrics)
    Robbie Williams - Lazy Days
    3:52

    Robbie Williams - Lazy Days

    • Order:
    • Duration: 3:52
    • Uploaded Date: 20 Jan 2011
    • views: 1130711
    Pre-order new album Swings Both Ways now: iTunes http://po.st/SBWYT | Amazon http://po.st/SBWAmYT http://www.robbiewilliams.com Follow Robbie: http://www.facebook.com/robbiewilliams http://www.twitter.com/robbiewilliams http://mind.robbiewilliams.com/
    https://wn.com/Robbie_Williams_Lazy_Days
    Spanky & Our Gang "Lazy Day" on The Ed Sullivan Show
    2:26

    Spanky & Our Gang "Lazy Day" on The Ed Sullivan Show

    • Order:
    • Duration: 2:26
    • Uploaded Date: 13 Mar 2021
    • views: 553632
    Spanky & Our Gang "Lazy Day" on The Ed Sullivan Show on December 17, 1967. Subscribe now to never miss an update: https://ume.lnk.to/EdSullivanSubscribe Watch Motown performances from The Ed Sullivan Show https://youtube.com/watch?v=jVmVvQdVCSw&list=PLQWND5qZhbj3tfQKiK-5FzjLSTUz5WRTf Watch classic Rock and Roll performances from The Ed Sullivan Show: https://youtube.com/watch?v=qwlrUUyxg9c&list=PLQWND5qZhbj06AA1fnZQnHvOqP5ZctF8Y Watch Iconic Singers perform on The Ed Sullivan Show: https://www.youtube.com/watch?v=MIIU9xkGAMs&list=PLQWND5qZhbj1fSTRzLrpV3vLO1yOGx8vH Sign up to receive the Ed Sullivan Show newsletter! https://EdSullivan.lnk.to/SubscribeToEmail Follow The Ed Sullivan Show: Website http://edsullivan.com/ Facebook https://facebook.com/EdSullivanShow Twitter https://twitter.com/EdSullivanShow Instagram https://instagram.com/theedsullivanshow/ TikTok: https://www.tiktok.com/@theedsullivanshow The Ed Sullivan Show was a television variety program that aired on CBS from 1948-1971. For 23 years it aired every Sunday night and played host to the world's greatest talents. The Ed Sullivan Show is well known for bringing rock n' roll music to the forefront of American culture through acts like Elvis Presley, The Beatles, and The Rolling Stones. The entertainers each week ranged from comedians like Joan Rivers and Rodney Dangerfield, to Broadway stars Julie Andrews and Richard Burton, to pop singers such as Bobby Darin and Petula Clark. It also frequently featured stars of Motown such as The Supremes, The Temptations, Stevie Wonder and The Jackson 5. The Ed Sullivan Show was one of the only places on American television where such a wide variety of popular culture was showcased and its legacy lives on to this day. © SOFA Entertainment. All Rights Reserved. #SpankyOurGang #EdSullivan #EdSullivanShow
    https://wn.com/Spanky_Our_Gang_Lazy_Day_On_The_Ed_Sullivan_Show
    Lazy Days
    3:44

    Lazy Days

    • Order:
    • Duration: 3:44
    • Uploaded Date: 08 Nov 2014
    • views: 2096778
    Provided to YouTube by WM UK Lazy Days · Enya A Day Without Rain ℗ 2000 Warner Music UK Limited Arranger: Enya Unknown: Enya Instruments, Vocals: Enya Arranger, Producer: Nicky Ryan Unknown: Nicky Ryan Engineer: Nicky Ryan Writer: Enya Writer: Roma Ryan Auto-generated by YouTube.
    https://wn.com/Lazy_Days
    playlist for those lazy days with nothing to do 🌤 // chill pop, indie rock songs
    1:55:14

    playlist for those lazy days with nothing to do 🌤 // chill pop, indie rock songs

    • Order:
    • Duration: 1:55:14
    • Uploaded Date: 26 Jan 2021
    • views: 646930
    original description, spotify link and timestamps are in the pinned comment.
    https://wn.com/Playlist_For_Those_Lazy_Days_With_Nothing_To_Do_🌤_Chill_Pop,_Indie_Rock_Songs
    COME WITH ME THROUGH OUT MY LAZY DAY.  MY FOOD, A CHAT, MORE CHANNEL PLANS. 6th calm quote.
    40:36

    COME WITH ME THROUGH OUT MY LAZY DAY. MY FOOD, A CHAT, MORE CHANNEL PLANS. 6th calm quote.

    • Order:
    • Duration: 40:36
    • Uploaded Date: 30 Dec 2023
    • views: 515
    https://wn.com/Come_With_Me_Through_Out_My_Lazy_Day._My_Food,_A_Chat,_More_Channel_Plans._6Th_Calm_Quote.
    Spanky And Our Gang ~ Lazy Day (Stereo)
    3:04

    Spanky And Our Gang ~ Lazy Day (Stereo)

    • Order:
    • Duration: 3:04
    • Uploaded Date: 07 Jun 2015
    • views: 78767
    Lazy Day by Spanky And Our Gang - from 1967 - this version is the one that was a hit in our town...it has the people saying hello in the background
    https://wn.com/Spanky_And_Our_Gang_~_Lazy_Day_(Stereo)
    • The Moody Blues: Lazy Day

      Music by The Moody Blues Lazy Day From their album; On a Threshold of a Dream Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Must be lamb today 'cause beef was last week. So full up, bursting at the seams, Soon you'll start to nod off, happy dreams. Wake up, for tea and buttered scones Such a lot of work for you Sunday Moms. Today's heaven-sent and you're feeling content, You worked all week long. Still, it's quite sad tomorrow's so bad And I don't feel so strong. Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Now it's almost over till next week.

      published: 01 Oct 2011
    • Lazy Day

      Provided to YouTube by Universal Music Group Lazy Day · The Moody Blues On The Threshold Of A Dream ℗ A UMC Recording; ℗ 1969 Universal Music Operations Limited Released on: 1969-01-01 Producer: Tony Clarke Associated Performer, Vocals, Bass Guitar: John Lodge Associated Performer, Vocals, Harmonica: Ray Thomas Associated Performer, Vocals, Mellotron: Mike Pinder Associated Performer, Vocals, Acoustic Guitar: Justin Hayward Associated Performer, Drums, Percussion: Graeme Edge Composer Lyricist: Ray Thomas Auto-generated by YouTube.

      published: 30 Jul 2018
    • Moody Blues - Lazy Day (1970)

      The Moody Blues performs Lazy Day in Paris(1970) and I will upload Gypsy right after Lay Day because the end of lazy day you will start to hear Gyspy

      published: 04 Oct 2006
    • Moody Blues-Lazy Day

      Ray Thomas' song from the Moody Blues album "On the Threshold of a Dream"

      published: 21 Nov 2009
    • "Never Comes The Day"- " Lazy Day"- "Are You Sitting Comfortably?"- W/Lyrics- Moody Blues

      No copyright infringement intended. This video is solely to highlight the talent of the musicians and songwriters. I seek no monetary gain. The first three cuts "Never Comes The Day", "Lazy Day", "Are You Sitting Comfortably?"- with lyrics- from the Moody Blues 1969 album; "On The Threshold Of A Dream". Best viewed on full screen of your computer.

      published: 09 Feb 2014
    • Moody Blues - Lazy Day

      Taken from the classic Threshhold Of A Dream album, This is not a track you hear very often and is as good as any on the album, Ive put up some random images that i hope compliment the song. If anyone objects to the images or music in my videos please let me know and i will remove them.

      published: 15 Aug 2008
    • Lazy day-The moody blues

      Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Must be beef today 'cause lamb was last week. So full up, bursting at the seams, Soon you'll start to nod off, happy dreams. Wake up, for tea and buttered scones Such a lot of work for you Sunday Moms. It's such a crying shame Week after week the same. Today's heaven-sent and you're feeling content, You worked all week long. Still, it's quite sad tomorrow's so bad And I don't feel so strong. Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Now it's almost over till week. That's how your life goes by Until the day you die More themes

      published: 16 Aug 2010
    • The Moody Blues - Lazy Day (1969)

      published: 28 Sep 2022
    • the moody blues ♦ lazy day ♦ stereo edit

      Edit for headphones, August 2022. A song from the 1969 album "On The Threshold Of A Dream" (1994 Mobile Fidelity Sound Lab remaster UDCD 612). I think there's just a little too much "aaah" going on in this song, hence this edit. LAZY DAY (Ray Thomas) lazy day Sunday afternoon like to get your feet up watch TV Sunday roast is something good to eat must be lamb today 'cause beef was last week so full up bursting at the seams soon you'll start to nod off happy dreams  (it's such a crying shame) wake up for tea and buttered scones  (week after week the same) such a lot of work for you Sunday moms today's heaven-sent and you're feeling content 'cause you worked all week long still it's quite sad tomorrow's so bad I don't feel too strong lazy day Sunday afternoon like to get your feet up ...

      published: 05 Aug 2022
    developed with YouTube
    The Moody Blues: Lazy Day
    2:45

    The Moody Blues: Lazy Day

    • Order:
    • Duration: 2:45
    • Uploaded Date: 01 Oct 2011
    • views: 125948
    Music by The Moody Blues Lazy Day From their album; On a Threshold of a Dream Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Must be lamb today 'cause beef was last week. So full up, bursting at the seams, Soon you'll start to nod off, happy dreams. Wake up, for tea and buttered scones Such a lot of work for you Sunday Moms. Today's heaven-sent and you're feeling content, You worked all week long. Still, it's quite sad tomorrow's so bad And I don't feel so strong. Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Now it's almost over till next week.
    https://wn.com/The_Moody_Blues_Lazy_Day
    Lazy Day
    2:44

    Lazy Day

    • Order:
    • Duration: 2:44
    • Uploaded Date: 30 Jul 2018
    • views: 149050
    Provided to YouTube by Universal Music Group Lazy Day · The Moody Blues On The Threshold Of A Dream ℗ A UMC Recording; ℗ 1969 Universal Music Operations Limited Released on: 1969-01-01 Producer: Tony Clarke Associated Performer, Vocals, Bass Guitar: John Lodge Associated Performer, Vocals, Harmonica: Ray Thomas Associated Performer, Vocals, Mellotron: Mike Pinder Associated Performer, Vocals, Acoustic Guitar: Justin Hayward Associated Performer, Drums, Percussion: Graeme Edge Composer Lyricist: Ray Thomas Auto-generated by YouTube.
    https://wn.com/Lazy_Day
    Moody Blues - Lazy Day (1970)
    3:34

    Moody Blues - Lazy Day (1970)

    • Order:
    • Duration: 3:34
    • Uploaded Date: 04 Oct 2006
    • views: 382565
    The Moody Blues performs Lazy Day in Paris(1970) and I will upload Gypsy right after Lay Day because the end of lazy day you will start to hear Gyspy
    https://wn.com/Moody_Blues_Lazy_Day_(1970)
    Moody Blues-Lazy Day
    2:44

    Moody Blues-Lazy Day

    • Order:
    • Duration: 2:44
    • Uploaded Date: 21 Nov 2009
    • views: 8632
    Ray Thomas' song from the Moody Blues album "On the Threshold of a Dream"
    https://wn.com/Moody_Blues_Lazy_Day
    "Never Comes The Day"- " Lazy Day"-  "Are You Sitting Comfortably?"- W/Lyrics- Moody Blues
    11:15

    "Never Comes The Day"- " Lazy Day"- "Are You Sitting Comfortably?"- W/Lyrics- Moody Blues

    • Order:
    • Duration: 11:15
    • Uploaded Date: 09 Feb 2014
    • views: 916735
    No copyright infringement intended. This video is solely to highlight the talent of the musicians and songwriters. I seek no monetary gain. The first three cuts "Never Comes The Day", "Lazy Day", "Are You Sitting Comfortably?"- with lyrics- from the Moody Blues 1969 album; "On The Threshold Of A Dream". Best viewed on full screen of your computer.
    https://wn.com/Never_Comes_The_Day_Lazy_Day_Are_You_Sitting_Comfortably_W_Lyrics_Moody_Blues
    Moody Blues - Lazy Day
    2:47

    Moody Blues - Lazy Day

    • Order:
    • Duration: 2:47
    • Uploaded Date: 15 Aug 2008
    • views: 6678
    Taken from the classic Threshhold Of A Dream album, This is not a track you hear very often and is as good as any on the album, Ive put up some random images that i hope compliment the song. If anyone objects to the images or music in my videos please let me know and i will remove them.
    https://wn.com/Moody_Blues_Lazy_Day
    Lazy day-The moody blues
    3:34

    Lazy day-The moody blues

    • Order:
    • Duration: 3:34
    • Uploaded Date: 16 Aug 2010
    • views: 1823
    Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Must be beef today 'cause lamb was last week. So full up, bursting at the seams, Soon you'll start to nod off, happy dreams. Wake up, for tea and buttered scones Such a lot of work for you Sunday Moms. It's such a crying shame Week after week the same. Today's heaven-sent and you're feeling content, You worked all week long. Still, it's quite sad tomorrow's so bad And I don't feel so strong. Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Now it's almost over till week. That's how your life goes by Until the day you die More themes
    https://wn.com/Lazy_Day_The_Moody_Blues
    The Moody Blues - Lazy Day (1969)
    2:44

    The Moody Blues - Lazy Day (1969)

    • Order:
    • Duration: 2:44
    • Uploaded Date: 28 Sep 2022
    • views: 326
    https://wn.com/The_Moody_Blues_Lazy_Day_(1969)
    the moody blues ♦ lazy day ♦ stereo edit
    2:39

    the moody blues ♦ lazy day ♦ stereo edit

    • Order:
    • Duration: 2:39
    • Uploaded Date: 05 Aug 2022
    • views: 98
    Edit for headphones, August 2022. A song from the 1969 album "On The Threshold Of A Dream" (1994 Mobile Fidelity Sound Lab remaster UDCD 612). I think there's just a little too much "aaah" going on in this song, hence this edit. LAZY DAY (Ray Thomas) lazy day Sunday afternoon like to get your feet up watch TV Sunday roast is something good to eat must be lamb today 'cause beef was last week so full up bursting at the seams soon you'll start to nod off happy dreams  (it's such a crying shame) wake up for tea and buttered scones  (week after week the same) such a lot of work for you Sunday moms today's heaven-sent and you're feeling content 'cause you worked all week long still it's quite sad tomorrow's so bad I don't feel too strong lazy day Sunday afternoon like to get your feet up watch TV  (that's how your life goes by) Sunday roast is something good to eat  (until the day you die) now it's almost over till next week ®© UMG on behalf of UMC (Universal Music Catalogue) ®© therock&rollingsixties
    https://wn.com/The_Moody_Blues_♦_Lazy_Day_♦_Stereo_Edit
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Bruno Mars - The Lazy Song (Official Music Video)
      3:20
      Bruno Mars - The Lazy Song (Official Music Video)remove from playlist
    • Lazy Day
      3:09
      Lazy Dayremove from playlist
    • Fuse ODG - Lazy Day ft. Danny Ocean (Official Video)
      3:34
      Fuse ODG - Lazy Day ft. Danny Ocean (Official Video)remove from playlist
    • Bruno Mars - The Lazy Song (Lyrics)
      3:10
      Bruno Mars - The Lazy Song (Lyrics)remove from playlist
    • Robbie Williams - Lazy Days
      3:52
      Robbie Williams - Lazy Daysremove from playlist
    • Spanky & Our Gang
      2:26
      Spanky & Our Gang "Lazy Day" on The Ed Sullivan Showremove from playlist
    • Lazy Days
      3:44
      Lazy Daysremove from playlist
    • Spanky And Our Gang ~ Lazy Day (Stereo)
      3:04
      Spanky And Our Gang ~ Lazy Day (Stereo)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Bruno Mars - The Lazy Song (Official Music Video)

    The official music video for Bruno Mars' "The Lazy Song" from the album 'Doo-Wops and Hooligans''. Stream: https://apple.co/38qBTEU Directed by Bruno Mars and Cameron Duddy Choreographed and Performed by Poreotics: http://poreotics.com Comic Chimp Mask used by permission of Easter Unlimited, Inc. / FunWorld Div. All Rights Reserved. Copyright 2009. 🔔 Subscribe for the latest official music videos, live performances, lyric videos, official audio, and more: https://Atlantic.lnk.to/BMsubscribe Watch All Of Bruno Mars’ Official Music Videos ➤ https://bit.ly/2U7I3mi See Bruno Mars on tour! Visit http://brunomars.com/tour for dates and more info. Get Bruno Mars merchandise! https://brunom.rs/brunomarsstore Follow Bruno Mars: http://www.brunomars.com http://www.instagram.com/brunomars http://www.twitter.com/brunomars http://www.facebook.com/brunomars LYRICS Today I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today I swear I'm not doing anything. Uh! I'm gonna kick my feet up Then stare at the fan Turn the TV on, throw my hand in my pants Nobody's gonna tell me I can't I'll be lounging on the couch, Just chillin' in my snuggie Click to MTV, so they can teach me how to dougie 'Cause in my castle I'm the freaking man Oh, yes I said it I said it I said it 'cause I can Today I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today I swear I'm not doing anything Nothing at all! Ooh, hoo, ooh, hoo, ooh, ooh-ooh Nothing at all Ooh, hoo, ooh, hoo, ooh, ooh-ooh Tomorrow I'll wake up, do some P90X Meet a really nice girl, have some really nice sex And she's gonna scream out: 'This is Great' (Oh my God, this is great) Yeah I might mess around, get my college degree I bet my old man will be so proud of me But sorry pops, you'll just have to wait Haha Oh, yes I said it I said it I said it 'cause I can Today I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today I swear I'm not doing anything No, I ain't gonna comb my hair 'Cause I ain't going anywhere No, no, no, no, no, no, no, no, no I'll just strut in my birthday suit And let everything hang loose Yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah Ooh Today I don't feel like doing anything I just wanna lay in my bed Don't feel like picking up my phone So leave a message at the tone 'Cause today I swear I'm not doing anything Nothing at all Nothing at all Nothing at all The official YouTube channel of Atlantic Records artist Bruno Mars. 15x GRAMMY Award winner and 27x GRAMMY Award nominee Bruno Mars is a celebrated singer, songwriter, producer, and musician with iconic hits like "The Lazy Song", "That's What I Like", "Just The Way You Are", "24K Magic", "Locked Out Of Heaven", and "When I Was Your Man". His legendary body of work also includes blockbuster albums such as Doo-Wops & Hooligans, Unorthodox Jukebox, and 24K Magic, as well as era-defining collaborations like "Uptown Funk" with Mark Ronson, "Finesse" with Cardi B, and "Nothin' On You" with B.o.B. Forever classic, yet supremely innovative, Bruno continues to redefine music, style, and popular culture, pushing the boundaries of pop, R&B, funk, soul, hip-hop, and dance, and remains as influential as ever. #BrunoMars #TheLazySong #DooWopsandHooligans #OfficialMusicVideo #AtlanticRecords
    3:20
    Bruno Mars - The Lazy Song (Official Music Video)
    The official music video for Bruno Mars' "The Lazy Song" from the album 'Doo-Wops and Hool...
    published: 15 Apr 2011
    Play in Full Screen
    3:09
    Lazy Day
    Provided to YouTube by Universal Music Group Lazy Day · Spanky & Our Gang Spanky & Our G...
    published: 31 Jul 2018
    Play in Full Screen
    3:34
    Fuse ODG - Lazy Day ft. Danny Ocean (Official Video)
    Stream the song here: https://bit.ly/2QWMWxA Afrobeats pioneer Fuse ODG returns with his ...
    published: 29 Nov 2019
    Play in Full Screen
    3:10
    Bruno Mars - The Lazy Song (Lyrics)
    ♫ Bruno Mars - The Lazy Song Stream/Download : • Bruno Mars • • http://www.brunomars.com ...
    published: 23 Sep 2022
    Play in Full Screen
    3:52
    Robbie Williams - Lazy Days
    Pre-order new album Swings Both Ways now: iTunes http://po.st/SBWYT | Amazon http://po.st/...
    published: 20 Jan 2011
    Play in Full Screen
    2:26
    Spanky & Our Gang "Lazy Day" on The Ed Sullivan Show
    Spanky & Our Gang "Lazy Day" on The Ed Sullivan Show on December 17, 1967. Subscribe now t...
    published: 13 Mar 2021
    Play in Full Screen
    3:44
    Lazy Days
    Provided to YouTube by WM UK Lazy Days · Enya A Day Without Rain ℗ 2000 Warner Music UK...
    published: 08 Nov 2014
    Play in Full Screen
    1:55:14
    playlist for those lazy days with nothing to do 🌤 // chill pop, indie rock songs
    original description, spotify link and timestamps are in the pinned comment.
    published: 26 Jan 2021
    Play in Full Screen
    40:36
    COME WITH ME THROUGH OUT MY LAZY DAY. MY FOOD, A CHAT, MORE CHANNEL PLANS. 6th calm quote.
    published: 30 Dec 2023
    Play in Full Screen
    3:04
    Spanky And Our Gang ~ Lazy Day (Stereo)
    Lazy Day by Spanky And Our Gang - from 1967 - this version is the one that was a hit in ou...
    published: 07 Jun 2015
    Play in Full Screen

    Lazy Day

    Lazy Day or Lazy Days may refer to:

    Film and TV

  • Lazy Days (film), a 1929 film directed by Robert F. McGowan
  • Music

  • "Lazy Day", a song by New York pop band The Left Banke from Walk Away Renée/Pretty Ballerina 1967
  • "Lazy Day" (Spanky and Our Gang song), 1967
  • "Lazy Day" (The Moody Blues song), 1969
  • "Lazy Day", a song by The Boo Radleys from Everything's Alright Forever
  • "Lazy Day", a song by Us3 from Hand on the Torch 2003
  • "Lazy Days", a song from the album Life thru a Lens by Robbie Williams
  • Lazy Days (Gram Parsons song)
  • "Lazy Days", song by Chris Andrews (singer) 1972
  • "Lazy Days", song by John Paul Young 1978
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    The Moody Blues: Lazy Day

    Music by The Moody Blues Lazy Day From their album; On a Threshold of a Dream Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Must be lamb today 'cause beef was last week. So full up, bursting at the seams, Soon you'll start to nod off, happy dreams. Wake up, for tea and buttered scones Such a lot of work for you Sunday Moms. Today's heaven-sent and you're feeling content, You worked all week long. Still, it's quite sad tomorrow's so bad And I don't feel so strong. Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is something good to eat, Now it's almost over till next week.
    2:45
    The Moody Blues: Lazy Day
    Music by The Moody Blues Lazy Day From their album; On a Threshold of a Dream Lazy ...
    published: 01 Oct 2011
    Play in Full Screen
    2:44
    Lazy Day
    Provided to YouTube by Universal Music Group Lazy Day · The Moody Blues On The Threshold...
    published: 30 Jul 2018
    Play in Full Screen
    3:34
    Moody Blues - Lazy Day (1970)
    The Moody Blues performs Lazy Day in Paris(1970) and I will upload Gypsy right after Lay D...
    published: 04 Oct 2006
    Play in Full Screen
    2:44
    Moody Blues-Lazy Day
    Ray Thomas' song from the Moody Blues album "On the Threshold of a Dream"
    published: 21 Nov 2009
    Play in Full Screen
    11:15
    "Never Comes The Day"- " Lazy Day"- "Are You Sitting Comfortably?"- W/Lyrics- Moody Blues
    No copyright infringement intended. This video is solely to highlight the talent of the m...
    published: 09 Feb 2014
    Play in Full Screen
    2:47
    Moody Blues - Lazy Day
    Taken from the classic Threshhold Of A Dream album, This is not a track you hear very ofte...
    published: 15 Aug 2008
    Play in Full Screen
    3:34
    Lazy day-The moody blues
    Lazy day, Sunday afternoon, Like to get your feet up, watch T.V. Sunday roast is somethi...
    published: 16 Aug 2010
    Play in Full Screen
    2:44
    The Moody Blues - Lazy Day (1969)
    published: 28 Sep 2022
    Play in Full Screen
    2:39
    the moody blues ♦ lazy day ♦ stereo edit
    Edit for headphones, August 2022. A song from the 1969 album "On The Threshold Of A Dream"...
    published: 05 Aug 2022
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×