- published: 29 Nov 2019
- views: 1488410
'+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; })); }); -->
The Baja Marimba Band was a popular musical group led by marimba player Julius Wechter. Initially formed by producer Herb Alpert to cash in on the "south of the border" craze started by his own Tijuana Brass, the Baja Marimba Band outlasted the Tijuana Brass by several years thanks largely in part to TV producer Chuck Barris, who featured the group's music on his game shows through the mid-1970s.
During his youth, Julius Wechter took up several percussion instruments including the vibes and marimba. In 1956 his group the Julius Wechter Quartet released a jazz album entitled Linear Sketches.
In 1958, Julius joined Martin Denny's band where he played marimba (replacing Arthur Lyman) as well as numerous other percussion instruments. Four years later he was paid $15 as a session man on Herb Alpert's debut album, The Lonely Bull. Wechter soon composed "Spanish Flea" for Alpert, which became a hit for him. Alpert encouraged Wechter to form his own group, The Baja Marimba Band, to help cash in on the faux-Mexican popularity of Albert's own Tijuana Brass.
"Lazy Days" is a song recorded by English singer-songwriter Robbie Williams. It was released in the United Kingdom on 14 July 1997 as the second single from his debut studio album Life thru a Lens (1997). The song became a top ten hit in the United Kingdom, but success was limited elsewhere.
A demo version of Lazy Days is included as a B Side on the Millennium CD2 single under the title Lazy Days (Original Version). It has significant differences in the arrangement and lyrics.
Williams took a day out of rehab to shoot the video for the song, and he explained it was "a bonkers video, 'cause that's how my head was at the time, I think".
The song struggled to make the top 40 around Europe. It only spent a week inside the top ten in the UK Singles Chart, peaking at number eight.
These are the formats and track listings of major single releases of "Lazy Days".
UK CD1
Lazy Day or Lazy Days may refer to:
Lazydays is an recreational vehicle dealership with locations in Tampa, Florida, and Tucson, Arizona. The Tampa location is the largest RV dealership in the world and has a 300-site RV campground.
Lazydays is one of the most successful RV dealerships in the United States, selling one of every 10 new diesel motorhomes. It was named #1 in Class A vehicles for its industry in the nation, has a score of A+ from the Better Business Bureau, and has received awards from both Tiffin Motorhomes and Winnebago. Both the Tampa and Tucson locations were featured on the reality TV show Big Time RV.
Founded in Tampa, Florida, in 1976, Lazydays was originally owned by the Wallace family, which included Herman and his sons Don and Ron. Lazydays was founded with only two travel trailers and $500. During its first five years, the dealerships limited itself to selling travel trailers and mini motorhomes. Sales grew to $13 million by 1980 and $50 million by 1983. Herman Wallace retired in 1993 and Don Wallace took over the business. Bought in 2004 by LDRV Holdings Corp, Lazydays Tampa is the largest RV dealership in the world, with more than 1,200 RVs in stock at any given time. The current CEO is Tim Sheehan.
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 ...
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/
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.
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.
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...
I have already done an Enya music video with my friend on my other channel, so I thought I would do one by myself. I chose to take a bunch of awesome clips, compile them, and time correctly to make this movie. I hope you like it.
This is Big the Cat's theme tune in Sonic Adventure DX. The song is "Lazy Days" by Ted Poley.
Provided to YouTube by Africori Limited Lazy Days · Dwson Say Less ℗ Stay True Sounds Released on: 2019-11-07 Artist: Dwson Auto-generated by YouTube.
Lazy Days (Livin' In Paradise) by Ted Poley (Theme of Big in Sonic Adventure) Lyrics Verse 1 Oh, it's a windy and sunny day And I can hear the faint sound of the distant waves The past weeks have been going by so fast It's all the same, the bright sky and shining sun I have a feeling it's gonna be a fun day Oh, it's a windy and sunny day The many summers and many great games Guess it's another trouble-free day Our playground's so huge, we don't know where it ends Feels energetic and groovy Everything's cool, it's excellent Everyday's a new beginning, yeah! - We don't know who we're gonna meet today The more I want, the less that I can get - Keep working for a new tomorrow But I guess that I'm happy now gonna set my heart free Now I've got nothing to worry me, Come on! Let's just get up ...
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.
Paul Hardcastle - Hardcastle 1
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...
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.
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 ...
♫ 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...
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/
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...
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.
original description, spotify link and timestamps are in the pinned comment.
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
The Baja Marimba Band was a popular musical group led by marimba player Julius Wechter. Initially formed by producer Herb Alpert to cash in on the "south of the border" craze started by his own Tijuana Brass, the Baja Marimba Band outlasted the Tijuana Brass by several years thanks largely in part to TV producer Chuck Barris, who featured the group's music on his game shows through the mid-1970s.
During his youth, Julius Wechter took up several percussion instruments including the vibes and marimba. In 1956 his group the Julius Wechter Quartet released a jazz album entitled Linear Sketches.
In 1958, Julius joined Martin Denny's band where he played marimba (replacing Arthur Lyman) as well as numerous other percussion instruments. Four years later he was paid $15 as a session man on Herb Alpert's debut album, The Lonely Bull. Wechter soon composed "Spanish Flea" for Alpert, which became a hit for him. Alpert encouraged Wechter to form his own group, The Baja Marimba Band, to help cash in on the faux-Mexican popularity of Albert's own Tijuana Brass.
If you say you're the ring finger on my stone
Well I say I'm a kite with a key
If you say that you are unsure of things
Well I'm not accepting defeat
Are we strong enough
Is it good enough
Am I brave enough
For the both of us
I will sing you songs
Even though you can't put 'em on your finger
I'll never be a diamond mine, I'm just a singer
I will sing you songs
Wishing my words carried on as long as a stone
On a band of gold
You're sleepwalking through the daylight
How else am I supposed to follow a dream
And now you say I can't wait on you to connect these hands
But I'm still trying to reach
So are we strong enough
Is it good enough
You pray hard enough
For the both of us
I will sing you songs
Even though you can't put 'em on your finger
I'll never be a diamond mine, I'm just a singer
I will sing you songs
Wishing my words carried on as long as a stone
On a band of gold
'Cause I'm just a rolling stone in a band on the road
I know words don't mean
Much on their own
But what I sing to you
Is worth more than a stone
I will sing you songs
Even though you can't put 'em on your finger
I'll never be a diamond mine, I'm just a singer
I will sing you songs
Wishing my words carried on as long as a stone
On a band of gold
'Cause I'm just a rolling stone in a band on the road
You said you want a stone
On a band of gold
What you got is a rolling stone
In a band on the road
Yeah I'm just a rolling stone in a band on the road
I haven't seen the sun in days
Man, it's getting to me
Well that's our industry
I lost my happy thoughts
Caught up in a tree
Flying's harder for me now
And kiss my ass you dream
I hope you're hearing me
No one's bet on you quite like I did
It's taken everything I've got
To keep myself on the road
I don't wanna drive no more
I am a stubborn bull
I am a caveman
A cheap tattoo
Gone from black to blue
So I don't wanna hear it from you
Never gonna be a spaceman
Sitting on my tin can
Never come back
I spend my afternoons
Making masterpieces
People would later understand
Well damn you wishing well
You should've told me
I bought dreams you wouldn't sell
It's taken everything I've god
To keep my hands from my face
I don't wanna cry no more
I found dangers in
Acting out
Dreams never meant
To be carried out
Oh, but I am the stubborn bull
Yeah, I am a caveman
A cheap tattoo
Fading from black to blue
So I don't wanna hear it from you