- published: 08 Jun 2016
- views: 5862387
'+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; })); }); -->
Brian Robert Setzer (born April 10, 1959) is an American guitarist, singer and songwriter. He first found widespread success in the early 1980s with the 1950s-style rockabilly revival group Stray Cats, and revitalized his career in the late 1990s with his Swing revival band, The Brian Setzer Orchestra.
Setzer was born in Massapequa, New York. Beginning in January 1979, he fronted the rockabilly band The Tomcats before transforming them into the later successful Stray Cats.
After performing locally from New York to Philadelphia under various band names with no real success, singer and lead guitarist Setzer, drummer Slim Jim Phantom (born James McDonnell) and bassist Lee Rocker (born Leon Drucker) decided in June 1980 to go to London, England where they believed people would better appreciate their sound and style.
To obtain the money for their plane tickets, Setzer, Rocker and Phantom went to Sam Ash Music on 48th Street to sell their instruments and gear to the store, for enough money for three one-way plane tickets. Upon their arrival, they decided to call themselves "Stray Cats", a name suggested by Rocker because of their status as 'strays'. After performing for only a few months they drew the attention of the British record producer Dave Edmunds, and released a series of successful singles in the UK, which countered the already-entrenched punk scene in London.
"Glad All Over" is a song written by Dave Clark and Mike Smith and recorded by The Dave Clark Five. In January 1964, it became the British group's first big hit, reaching No.1 on the UK Singles Chart. In April 1964, it reached No.6 on the American U.S. Billboard Hot 100 chart, becoming the first British Invasion hit by a group other than The Beatles. It was also No.1 in Ireland, No.3 in Australia and No.2 in Canada. It reached No.4 in the Netherlands and No.16 in Germany. "Glad All Over" was the No.2 selling single of 1964 in the U.K. (behind "Can't Buy Me Love" by The Beatles), and also had sufficient UK sales in November and December 1963 to make it the 58th best-selling single of 1963; put together these statistics suggest U.K. sales for "Glad All Over" of around 1,000,000 units by the end of 1964.
"Glad All Over" featured Smith leading unison group vocals, often in call and response style, a saxophone line used not for solo decoration but underneath the whole song, and a big, "air hammer" beat that underpinned the wall of sound production known as the "Tottenham Sound".
Glad All Over is the sixth studio album for Californian alternative rock band The Wallflowers. It was released in October 2012 under Columbia Records.
The band revealed the name of album on July 12, 2012, and they released their first single "Reboot the Mission" for free in July 24, 2012.
On October 1, 2012, it was announced on the band's website that "Love is a Country" would be the second single.
All lyrics written by Jakob Dylan, all music composed by The Wallflowers.
"Glad All Over" is a 1957 song recorded by rock and roll and rockabilly artist Carl Perkins, "The Rockin' Guitar Man", at Sun Records in 1957. It was released as a 45 and 78 single, Sun 287, on January 6, 1958 (b/w "Lend Me Your Comb"). It was written by Aaron Schroeder, Sid Tepper, and Roy Bennett.
A performance of the song was featured in the 1957 film Jamboree, where Carl Perkins and his band perform the song in a recording studio in a scene similar to Elvis Presley's studio performance in Jailhouse Rock along with Scotty Moore and Bill Black. The Carl Perkins band consisted of Carl Perkins on lead guitar and vocals, Jay Perkins on rhythm guitar, Clayton Perkins on upright bass, and W.S. "Fluke" Holland on drums, who later became the drummer for Johnny Cash, who called him "The Father of the Drums".
"Glad All Over" was the last single Carl Perkins released on Sun Records. The recording was also released as a 45 in the UK on the London Records label as 45-HLS 8527 backed with "Forever Yours" and appeared on the Warner Bros. soundtrack album for the movie Jamboree. The song was published by Magnificent Music, BMI. In 1978, Sun Records Corporation under owner Shelby Singleton re-released the song as part of the Sun Golden Treasure Series as Sun 24 with "Lend Me Your Comb" as the flipside.
HiQ Hybrid = Live Video Performance PLUS Studio Quality Sound. For other Music Videos - do a YOUTUBE SEARCH for - JARichardsFilm HiQ FULL PLAYLIST or SEARCH for - JARichardsFilm HiQ + (artist name) "Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use." I DO NOT OWN ANY OF THIS MATERIAL NO COPYRIGHT infringement is intended. The owners of this material are as follows and ALL RIGHTS BELONG TO THEM. * Music: "Glad All Over" - The Dave Clark Five * Labels: Columbia, Epic *Writer(s): Dave C...
Provided to YouTube by BMG Rights Management (UK) Limited Glad All Over (2019 - Remaster) · The Dave Clark Five Glad All Over ℗ 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited Released on: 1964-07-06 Producer, Drums: Dave Clark Organ, Piano, Vocals: Mike Smith Guitar: Lenny Davidson Bass Guitar, Harmonica, Guitar: Rick Huxley Saxophone: Denny Payton Composer: Dave Clark Composer: Mike Smith Auto-generated by YouTube.
"Glad All Over" was performed here by Joan Jett, John Mellencamp, John Fogerty, Billy Joel and others at Rock And Roll Hall of Fame induction ceremony at Waldorf-Astoria Hotel in New York on March 10th, 2008. Written by Dave Clark and Mike Smith, the song was originally recorded by a British group Dave Clark Five and released as a single in the UK in 1963 reaching #1 on the UK charts. ---- Welcome to the official YouTube page of legendary musician John Fogerty of Creedence Clearwater Revival. Some songs you might recognize from John's historical career are 'Proud Mary,' 'Fortunate Son,' 'Down on the Corner,' 'Centerfield,' and tons more! Although in his 70s, John shows no signs of slowing down, creating new music and continuing to tour the world, so be sure to tune in, subscribe, an...
Side A Glad All Over Side B I Know You
Dave Clark Five - Glad All Over
One of the best songs in the world from Crystal Palace
1964.....#6 U.S. Billboard Hot 100, #5 U.S. Cash Box Top 100, #1 UK Singles Chart, #2 Canada, #3 Australia, #1 New Zealand A Hotpot Stereo Remix / Original video edited and AI remastered with HQ stereo sound. "Glad All Over" is a song written by Dave Clark and Mike Smith and recorded by The Dave Clark Five. Billboard said of the song that "here's a rocking, romping group vocal effort much akin to the Liverpool sound and the Beatles' school," stating that the song has a "solid beat and echo quality." Cash Box described it as "a happy-go-lucky pounder...that sports that 'Mersey sound with the Liverpool beat.'" In January 1964, it became the British group's first big hit, reaching No.1 on the UK Singles Chart and promptly kicked off the DC5 vs Beatles rivalry, removing the massively successfu...
Mike sang the lead as well as played keyboards for many Dave Clark Five hit records. Here he performs a song he wrote that launched the DC5, 'Glad All Over'. Mike Smith's Rock Engine backs him in a live show at the Cannery Hotel & Casino, Las Vegas in August of 2003.
Music from Australia and New Zealand in the year 1975: Hush performing the hit single 'Glad All Over' on the ABC-TV program Countdown. Note: Countdown was a long-running popular weekly Australian music television show broadcast by the Australian Broadcasting Corporation from 8 November 1974 until 19 July 1987.[2] It was created by Executive Producer Michael Shrimpton, producer/director Robbie Weekes and record producer and music journalist Ian "Molly" Meldrum. Countdown was produced at the studios of the ABC in the Melbourne suburb of Ripponlea. Wikipedia Artist Origin: Artist Location: Track: Release Date: Chart Position: Composer: Produced by: Label: Featured on: Footage Information: Artist(s) link: Copyright: This video is not owned by this channel, and is only featured on t...
Provided to YouTube by Universal Music Group Glad All Over (Live At The BBC For "Pop Go The Beatles" / 20th August, 1963) · The Beatles Live At The BBC ℗ 2013 BBC, under exclusive licence to Calderstone Productions Limited (a division of Universal Music Group) Released on: 1994-11-30 Associated Performer, Vocals, Guitar: John Lennon Associated Performer, Vocals, Bass Guitar: Paul McCartney Associated Performer, Vocals, Guitar: George Harrison Associated Performer, Drums: Ringo Starr Producer: Terry Henebery Composer Lyricist: Sid Tepper Composer Lyricist: Roy Bennett Composer Lyricist: A Schroeder Auto-generated by YouTube.
The Dave Clark Five – Bits And Pieces Label: Capitol Records – T 6068, Capitol Records – T-6068 Series: The "6000" Series Format: Vinyl, LP, Album, Mono Country: Canada Released: May 11, 1964 A1 Glad All Over Written-By – Clark*, Smith* A2 All Of The Time Written-By – Clark*, Smith* A3 Stay Written-By – Williams* A4 Chaquita Written-By – Clark*, Smith* A5 Do You Love Me Written-By – Gordy Jr.* B1 Bits And Pieces Written-By – Clark*, Smith* B2 I Know You Written-By – Clark*, Davidson* B3 No Time To Lose Written-By – Clark*, Ryan* B4 Doo Dah Written-By – Clark*, Ryan* B5 Time Written-By – Clark*, Davidson* B6 She's All Mine Written-By – Clark* Enjoy My Other Channel The3C's https://www.youtube.com/channel/UCTSU-QZH62w4cf6oCGTND-Q LostJukeboxVolume https://www.youtube.com/channe...
HiQ Hybrid = Live Video Performance PLUS Studio Quality Sound. For other Music Videos - do a YOUTUBE SEARCH for - JARichardsFilm HiQ FULL PLAYLIST or SEARCH for - JARichardsFilm HiQ + (artist name) "Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use." I DO NOT OWN ANY OF THIS MATERIAL NO COPYRIGHT infringement is intended. The owners of this material are as follows and ALL RIGHTS BELONG TO THEM. * Music: "Glad All Over" - The Dave Clark Five * Labels: Columbia, Epic *Writer(s): Dave C...
Provided to YouTube by BMG Rights Management (UK) Limited Glad All Over (2019 - Remaster) · The Dave Clark Five Glad All Over ℗ 2019 Dave Clark (London) Limited under exclusive license to BMG Rights Management (UK) Limited Released on: 1964-07-06 Producer, Drums: Dave Clark Organ, Piano, Vocals: Mike Smith Guitar: Lenny Davidson Bass Guitar, Harmonica, Guitar: Rick Huxley Saxophone: Denny Payton Composer: Dave Clark Composer: Mike Smith Auto-generated by YouTube.
"Glad All Over" was performed here by Joan Jett, John Mellencamp, John Fogerty, Billy Joel and others at Rock And Roll Hall of Fame induction ceremony at Waldorf-Astoria Hotel in New York on March 10th, 2008. Written by Dave Clark and Mike Smith, the song was originally recorded by a British group Dave Clark Five and released as a single in the UK in 1963 reaching #1 on the UK charts. ---- Welcome to the official YouTube page of legendary musician John Fogerty of Creedence Clearwater Revival. Some songs you might recognize from John's historical career are 'Proud Mary,' 'Fortunate Son,' 'Down on the Corner,' 'Centerfield,' and tons more! Although in his 70s, John shows no signs of slowing down, creating new music and continuing to tour the world, so be sure to tune in, subscribe, an...
My stereo remix of the classic 1964 debut album by The Dave Clark Five Glad All Over 00:00 All Of The Time 02:44 Stay 05:00 Chaquita 07:09 Do You Love Me 09:23 Bits And Pieces 11:45 I Know You 13:44 No Time To Lose 15:44 Doo Dah 17:47 Time 20:10 She's All Mine 22:27
Dave Clark Five - Glad All Over
1964.....#6 U.S. Billboard Hot 100, #5 U.S. Cash Box Top 100, #1 UK Singles Chart, #2 Canada, #3 Australia, #1 New Zealand A Hotpot Stereo Remix / Original video edited and AI remastered with HQ stereo sound. "Glad All Over" is a song written by Dave Clark and Mike Smith and recorded by The Dave Clark Five. Billboard said of the song that "here's a rocking, romping group vocal effort much akin to the Liverpool sound and the Beatles' school," stating that the song has a "solid beat and echo quality." Cash Box described it as "a happy-go-lucky pounder...that sports that 'Mersey sound with the Liverpool beat.'" In January 1964, it became the British group's first big hit, reaching No.1 on the UK Singles Chart and promptly kicked off the DC5 vs Beatles rivalry, removing the massively successfu...
Check out the Dave Clark Five playing a concert in London to a crowd of screaming teenagers as they perform their hits 'Bits 'n Pieces' & 'Glad All Over' in 1964. For Archive Licensing Enquiries Visit: https://goo.gl/W4hZBv Explore Our Online Channel For FULL Documentaries, Fascinating Interviews & Classic Movies: https://goo.gl/7dVe8r #BritishPathé #History #London #Music #Concert Subscribe to the British Pathé YT Channel: https://goo.gl/hV1nkf (FILM ID:1749.18) Full title reads: "The Dave Clark Five - Technicolor". London. GV Ext. Teenagers waiting outside the Royal, Tottenham for the doors to open. CU Girl music fans. Pan down showing one of the girls wearing long dress new type fashion. VS of members of pop band - The Dave Clark Five getting ready for concert in dressing ro...
RIP MIKE SMITH, DENIS PAYTON, & RICK HUXLEY The Dave Clark Five, also known as the DC5, were an English rock and roll band formed in 1958 in Tottenham, London. Drummer Dave Clark served as the group's leader, producer and co-songwriter. In January 1964, they had their first UK top-ten single, "Glad All Over", which knocked the Beatles' "I Want to Hold Your Hand" off the top of the UK Singles Chart. It peaked at No. 6 in the United States in April 1964. Although this was their only UK No. 1, they topped the US chart in December 1965, with their cover of Bobby Day's "Over and Over". Their other UK top-ten hits include "Bits and Pieces", "Can't You See That She's Mine", "Catch Us If You Can", "Everybody Knows", "The Red Balloon", "Good Old Rock 'n' Roll", and a version of Chet Powers' "Get To...
Side A Glad All Over Side B I Know You
Brian Robert Setzer (born April 10, 1959) is an American guitarist, singer and songwriter. He first found widespread success in the early 1980s with the 1950s-style rockabilly revival group Stray Cats, and revitalized his career in the late 1990s with his Swing revival band, The Brian Setzer Orchestra.
Setzer was born in Massapequa, New York. Beginning in January 1979, he fronted the rockabilly band The Tomcats before transforming them into the later successful Stray Cats.
After performing locally from New York to Philadelphia under various band names with no real success, singer and lead guitarist Setzer, drummer Slim Jim Phantom (born James McDonnell) and bassist Lee Rocker (born Leon Drucker) decided in June 1980 to go to London, England where they believed people would better appreciate their sound and style.
To obtain the money for their plane tickets, Setzer, Rocker and Phantom went to Sam Ash Music on 48th Street to sell their instruments and gear to the store, for enough money for three one-way plane tickets. Upon their arrival, they decided to call themselves "Stray Cats", a name suggested by Rocker because of their status as 'strays'. After performing for only a few months they drew the attention of the British record producer Dave Edmunds, and released a series of successful singles in the UK, which countered the already-entrenched punk scene in London.
Pick you up on a saturday night hopin' that later I can hold you tight
Spendin' my money like it's out of style
I love my truck it brings a smile from you baby
You don't like it I'll say goodnight
I don't need no cry baby bye bye
Took you out on another date I begged you baby please don't be late
Supposed to be ready 'bout an hour ago
Me downstairs just pacin' the floor
You're late, I'll wait
You don't like it I'll say goodnight
I don't need no cry baby bye bye
The moon is rising, we could be driving
Girl we're just wasting time
With all your crying your just denying
Any love that comes to you
Bless my soul what's wrong with you
Crying all the time like babies do
The game you're playing is just not my bag
Why must you be such a drag
No fun I'm done
You don't like it I'll say goodnight
I don't need no cry baby bye bye
The moon is rising, we could be driving
Girl we're just wasting time
With all your crying your just denying
Any love that comes to you
Bless my soul what's wrong with you
Crying all the time like babies do
The game you're playing is just not my bag
Why must you be such a drag
No fun I'm done
You don't like it I'll say goodnight
I don't need no cry baby bye bye
baby bye bye