- published: 06 Jan 2014
- views: 32054863
'+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 Kinks were an English rock band formed in Muswell Hill, North London, in 1963 by brothers Dave and Ray Davies. They are regarded as one of the most important and influential rock groups of the era. The band emerged in 1964 during the height of British rhythm and blues and Merseybeat, and were briefly part of the British Invasion of the US until their touring ban in 1965. Their third single, the Ray Davies penned "You Really Got Me", became an international hit, topping the charts in the United Kingdom and reaching the Top 10 in the United States. Between the mid-1960s and early 1970s, the group released a string of hit singles; studio albums drew good reviews but sold less than compilations of their singles. They gained a reputation for reflecting English culture and lifestyle, fuelled by Ray Davies' observational writing style. Albums such as Face to Face, Something Else, The Kinks Are the Village Green Preservation Society, Arthur, Lola Versus Powerman and the Moneygoround and Muswell Hillbillies, along with their accompanying singles, are considered among the most influential recordings of the period.
Kinks is the self-titled debut album by English rock band The Kinks, released in 1964. It was released with three tracks omitted as You Really Got Me in the US.
The album was re-released in 1998 in the UK on Castle Records with twelve bonus tracks. This reissue was itself reissued in 2004 on the Sanctuary label. A deluxe edition was released on 28 March 2011.
Allmusic assessed the album as lacking in consistency, commenting that "As R&B cover artists, the Kinks weren't nearly as adept as the Stones and Yardbirds; Ray Davies' original tunes were, "You Really Got Me" aside, perfunctory Mersey Beat-ish pastiches; and [the] tunes that producer Shel Talmy penned for the group... were simply abominable."
All songs by Ray Davies, except where noted.
Come Dancing was a British ballroom dancing competition show that ran on and off on the BBC from 1949 to 1998, becoming one of television's longest-running shows.
The show was created by Eric Morley, the founder of Miss World, and began in 1949 by broadcasting from regional ballroom studios, with professional dancers Syd Perkin and Edna Duffield on hand to offer teaching.
In 1953 the format changed to become a competition, with later series seeing regions of the United Kingdom going head to head for the coveted trophy.
The many presenters over the years included Peter West, McDonald Hobley, Charles Nove, Terry Wogan, Brian Johnston, Angela Rippon, Michael Aspel, Noel Edmonds, David Jacobs, Judith Chalmers, Pete Murray, and Rosemarie Ford. Commentators included Ray Moore and Bruce Hammal.
In 2004, a re-launched celebrity version entitled Strictly Come Dancing, hosted by Bruce Forsyth (2004–13), Tess Daly and Claudia Winkleman (2014–) debuted on BBC One, and became a popular hit on Saturday evenings. The title is a nonsensical pastiche of the titles of both the 1992 Australian film Strictly Ballroom and Come Dancing. The format of the newer show has been successfully exported to other countries under the name Dancing with the Stars.
"Come Dancing" is a 1982 song written by Ray Davies and performed by British rock group the Kinks on their 1983 album State of Confusion. The song was inspired by Ray's memories of his older sister, Rene, who died of a heart attack while dancing at a dance hall. The track, sung from the perspective of an "East End barrow boy," contains lyrics about dates at a local Palais dance hall.
When first released as a single in United Kingdom in November 1982, "Come Dancing" failed to chart. Although Arista Records founder Clive Davis had reservations about releasing the single in the United States due to the English subject matter of dance halls, the track saw an American single release in April 1983. "Come Dancing" reached number six on the Hot 100, becoming the band's highest US charting single in over a decade and tying with "Tired of Waiting for You" as the band's highest charting single ever. This success was achieved largely with the help of a promotional music video directed by Julien Temple that saw frequent airing on MTV. As a result of its American success, the single was re-released in Britain. Unlike its first release, the single became a top 20 British hit, reaching number 12.
"Come Dancing" is an episode of the award-winning British comedy television series The Goodies.
This episode is also known as "Wicked Waltzing".
Written by The Goodies, with songs and music by Bill Oddie.
When the male members of the Penelope Fay Dancing Team are unable to take part in a Ballroom Dancing competition, the Goodies are asked to take their place and partner some girls in the competition. The girls introduce themselves as: "We are Norma. We are a hair artiste." The Goodies then introduce themselves as: "We are Cyril. We are a bank clerk."
There is a problem. None of the Goodies are able to dance. However, Graeme solves the problem by inventing some special dancing suits which dance by themselves by remote control. Everything goes well until Graeme confides to opposition dance mistress, Delia Capone, how the suits work — realising too late what he had done. Delia Capone takes over the remote control for the suits and everything goes haywire for the Goodies, but the Goodies and their partners win the dance trophy — much to the delight of Penelope Fay, and the anger of Delia Capone.
The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow The Journey: https://thekinks.lnk.to/thejourneypt2ID Follow The Kinks: Facebook: https://thekinks.lnk.to/FacebookID X: https://thekinks.lnk.to/TwitterID Instagram: https://thekinks.lnk.to/InstagramID YouTube: https://thekinks.lnk.to/YouTubeID TikTok: https://thekinks.lnk.to/TikTokID Website: https://thekinks.lnk.to/WebsiteID Official Store: https://thekinks.lnk.to/60storeID Originally released on 4th August 1964, the band's 3rd single You Really Got Me went to number 1 on the UK singles chart and later in the year to number 7 in the US charts. The track is taken from the Kinks self-...
The Kinks performing "Sunny Afternoon", released originally in 1966. It reached #1 in UK Singles Chart, #1 in Canada Top Singles, #1 in Norway, #1 in Netherlands, #1 in Ireland, #11 in US Cash Box Top 100, and #14 in US Billboard Hot 100. "Sunny Afternoon" is an iconic track by The Kinks that reflects the English lifestyle. The Kinks were one of the most influential English rock bands of the 1960s, formed in 1964 in Muswell Hill, North London, by brothers Ray Davies and Dave Davies. The band was known for their authentic and sincere songs, which were drenched in English culture and influenced by various genres such as R&B, rock and roll, British music hall, folk, and country. Ray Davies wrote "Sunny Afternoon" while he was dealing with fatherhood and a bad cold. He recorded the song in...
#TheKinks60 #TheKinks #TheJourney The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID Follow The Kinks Facebook: https://thekinks.lnk.to/thejourneypt1FA Twitter: https://thekinks.lnk.to/thejourneypt1TW Instagram: https://thekinks.lnk.to/thejourneypt1IN TikTok: https://thekinks.lnk.to/thejourneypt1TK Website: https://thekinks.lnk.to/thejourneypt1WE Originally released as a single on 3rd June 1966, it stayed at number one on the UK singles chart for two weeks, and peaked at No.14 in the US. The track features on the bands fourth studio album Face To Face, released in October 1966. Face ...
Visit the Official Store And Buy a Vinyl: https://thekinks.lnk.to/60storeID Follow The Kinks: Facebook: https://thekinks.lnk.to/FacebookID X / Twitter: https://thekinks.lnk.to/TwitterID Instagram: https://thekinks.lnk.to/InstagramID YouTube: https://thekinks.lnk.to/YouTubeID TikTok: https://thekinks.lnk.to/TikTokID Website: https://thekinks.lnk.to/WebsiteID Official Store: https://thekinks.lnk.to/60storeID Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID The Kinks were an English rock band formed in London in 1963 by brothers Ray and Dave Davies. They are regarded as one of the most influential rock bands of the 1960s. The Kinks' music drew from a wide range of influences, including American R&B and rock and roll initially...
#TheKinks60 #TheKinks #TheJourney The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID Subscribe to The Kinks: https://kinks.lnk.to/subscribeYD Follow The Kinks Facebook: https://thekinks.lnk.to/thejourneypt1FA Twitter: https://thekinks.lnk.to/thejourneypt1TW Instagram: https://thekinks.lnk.to/thejourneypt1IN TikTok: https://thekinks.lnk.to/thejourneypt1TK Website: https://thekinks.lnk.to/thejourneypt1WE Lyrics: They put a parking lot on a piece of land Where the supermarket used to stand Before that, they put up a bowling alley On the site that used to be the local palais That's wher...
the kinks- you really got me
The Kinks Lola Top of the Pops 1970 UMG
Visit the Official Store And Buy a Vinyl: https://thekinks.lnk.to/60storeID Follow The Kinks: Facebook: https://thekinks.lnk.to/FacebookID X / Twitter: https://thekinks.lnk.to/TwitterID Instagram: https://thekinks.lnk.to/InstagramID YouTube: https://thekinks.lnk.to/YouTubeID TikTok: https://thekinks.lnk.to/TikTokID Website: https://thekinks.lnk.to/WebsiteID Official Store: https://thekinks.lnk.to/60storeID Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID The Kinks were an English rock band formed in London in 1963 by brothers Ray and Dave Davies. They are regarded as one of the most influential rock bands of the 1960s. The Kinks' music drew from a wide range of influences, including American R&B and rock and roll initially...
The Kinks Session Man Face To Face 1966 He never will forget at all The day he played at the Albert Hall A million sessions ago, it seems He is a session man A chord progression A top musician Rock and roll or folk group star A philharmonic orchestra Everything comes the same to him He is a session man A chord progression A top musician He's not paid to think, just play A session man A session man A session man Playing at a different studio every day He reads the dots and plays each line And always finishes on time No overtime nor favors done He is a session man A chord progression A top musician He's not paid to think, just play A session man A session man A session man A session man A session man #kinks #1966 #sessionman
#TheKinks60 #TheKinks #TheJourney The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID Follow The Kinks: Facebook: https://thekinks.lnk.to/FacebookID X / Twitter: https://thekinks.lnk.to/TwitterID Instagram: https://thekinks.lnk.to/InstagramID YouTube: https://thekinks.lnk.to/YouTubeID TikTok: https://thekinks.lnk.to/TikTokID Website: https://thekinks.lnk.to/WebsiteID Official Store: https://thekinks.lnk.to/60storeID Originally released on 23rd October 1964 in the UK and 9th December 1964 in the US. The track was included on the Kinksize Hits EP. Lyrics: I'm not content to be with you i...
#TheKinks60 #TheKinks #TheJourney The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID Subscribe to The Kinks: https://kinks.lnk.to/subscribeYD Follow The Kinks Facebook: https://thekinks.lnk.to/thejourneypt1FA Twitter: https://thekinks.lnk.to/thejourneypt1TW Instagram: https://thekinks.lnk.to/thejourneypt1IN TikTok: https://thekinks.lnk.to/thejourneypt1TK Website: https://thekinks.lnk.to/thejourneypt1WE Lyrics: They put a parking lot on a piece of land Where the supermarket used to stand Before that, they put up a bowling alley On the site that used to be the local palais That's wher...
"Come Dancing" is a tribute to the Davies' older sister Rene. Living in Canada with her reportedly abusive husband, the 31-year-old Rene was visiting her childhood home in Fortis Green in London at the time of Ray Davies' 13th birthday on which she surprised him with a gift of the Spanish guitar he had tried to persuade his parents to buy him. That evening, Rene, who had a weak heart as a result of a childhood bout of rheumatic fever, suffered a fatal heart attack while dancing at the Lyceum ballroom. The music video for "Come Dancing" was shot in November 1982 at Ilford Palais in Essex. Ilford Palais was demolished in 2007 to make room for luxury flats, meeting a similar fate to that of the palais described in the lyrics of "Come Dancing." When first released as a single in United Kingd...
Provided to YouTube by Castle Communications Come Dancing · The Kinks The Ultimate Collection ℗ 1983 Kinks Properties Limited under exclusive license to Sanctuary Records Group Ltd., a BMG Company Released on: 2002-05-27 Performer: The Kinks Vocals, Producer, Piano, Rhythm Guitar, Synthesizer: Ray Davies Bass Guitar: Jim Rodford Drums: Mick Avory Keyboards: Ian Gibbons Vocals, Lead Guitar: Dave Davies Sound Engineer: Damian Korner Sound Engineer: John Rollo Sound Engineer: Bob Ludwig Author, Composer: Raymond Douglas Davies Auto-generated by YouTube.
Provided to YouTube by Epic Come Dancing · Jeff Beck Wired ℗ 1976 Epic Records, a division of Sony Music Entertainment Released on: 1976-10-11 Producer: Producer not documented on available sources Drums, Composer, Lyricist: Narada Michael Walden Assistant Producer: Chris Bond Assistant Engineer: Mark Guercio Drums: Ed Green Mixing Engineer: Geoff Emerick Synthesizer, Mixing Engineer: Jan Hammer Mixing Engineer, Recording Engineer: John Mills Mastering Engineer: Vic Anesini Bass: Wilbur Bascomb Recording Engineer: Pete Henderson Recording Engineer: Dennis McKay Recording Engineer: John Arrias Auto-generated by YouTube.
Stream Strictly LIVE on BBC iPlayer 💃🕺 https://bbc.in/2MyAdzw Subscribe and 🔔 to BBC Strictly ✨ https://bit.ly/2kzjjAT Subscribe and 🔔 to BBC 👉 https://bit.ly/2IXqEIn Celebrities take to the dance floor to perform a dazzling display of ballroom routines. Strictly Come Dancing ✨ Series 22 ✨ BBC #BBCStrictly #BBCStrictlyComeDancing #BBCiPlayer #BBCStrictly2024 #StrictlyComeDancing #Strictly #SCD #dance #dancing
Dazzling routines, sparkling sets and the glitziest of costumes - fifteen new celebrities are ready to take to the Strictly floor! Stream Strictly LIVE on BBC iPlayer 💃🕺 https://bbc.in/2MyAdzw Subscribe and 🔔 to BBC Strictly ✨ https://bit.ly/2kzjjAT Subscribe and 🔔 to BBC 👉 https://bit.ly/2IXqEIn Celebrities take to the dance floor to perform a dazzling display of ballroom routines. Strictly Come Dancing ✨ Series 22 ✨ BBC #BBCStrictly #BBCStrictlyComeDancing #BBCiPlayer #BBCStrictly2024 #StrictlyComeDancing #Strictly #SCD #dance #dancing
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home It's movie week! Our couples take to the floor to perform to songs from everyone's favourite films - with fantastic costumes to boot! #BBC #StrictlyComeDancing #BBCiPlayer Strictly Come Dancing | Streaming Now | BBC iPlayer All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.
Stream Strictly LIVE on BBC iPlayer 💃🕺 https://bbc.in/2MyAdzw Subscribe and 🔔 to BBC Strictly ✨ https://bit.ly/2kzjjAT Subscribe and 🔔 to BBC 👉 https://bit.ly/2IXqEIn Celebrities take to the dance floor to perform a dazzling display of ballroom routines. Strictly Come Dancing ✨ Series 22 ✨ BBC #BBCStrictly #BBCStrictlyComeDancing #BBCiPlayer #BBCStrictly2024 #StrictlyComeDancing #Strictly #SCD #dance #dancing
The Sun’s Felicity Cross and Rod McPhee join Virgin Radio presenter Maddie Hale to discuss Strictly’s Craig Revel Horwood admission that he has ‘toned down’ his brutal judging style over concerns he would be cancelled. 🖥️ Virgin Radio UK’s website: https://virginradio.co.uk 📲 Virgin Radio UK’s X/Twitter: https://x.com/VirginRadioUK 📷 Virgin Radio UK’s Instagram: https://www.instagram.com/virginradiouk 👤 Virgin Radio UK’s Facebook: https://www.facebook.com/VirginRadioUK/ 📱 Virgin Radio UK’s Tik Tok: https://www.tiktok.com/@virginradiouk 📲 Download the Virgin Radio UK app to listen live and catch up with your favourite shows. #virginradiouk #strictly #strictlycomedancing
Stream Strictly LIVE on BBC iPlayer 💃🕺 https://bbc.in/2MyAdzw Subscribe and 🔔 to BBC Strictly ✨ https://bit.ly/2kzjjAT Subscribe and 🔔 to BBC 👉 https://bit.ly/2IXqEIn Celebrities take to the dance floor to perform a dazzling display of ballroom routines. Strictly Come Dancing ✨ Series 22 ✨ BBC #BBCStrictly #BBCStrictlyComeDancing #BBCiPlayer #BBCStrictly2024 #StrictlyComeDancing #Strictly #SCD #dance #dancing
The Kinks were an English rock band formed in Muswell Hill, North London, in 1963 by brothers Dave and Ray Davies. They are regarded as one of the most important and influential rock groups of the era. The band emerged in 1964 during the height of British rhythm and blues and Merseybeat, and were briefly part of the British Invasion of the US until their touring ban in 1965. Their third single, the Ray Davies penned "You Really Got Me", became an international hit, topping the charts in the United Kingdom and reaching the Top 10 in the United States. Between the mid-1960s and early 1970s, the group released a string of hit singles; studio albums drew good reviews but sold less than compilations of their singles. They gained a reputation for reflecting English culture and lifestyle, fuelled by Ray Davies' observational writing style. Albums such as Face to Face, Something Else, The Kinks Are the Village Green Preservation Society, Arthur, Lola Versus Powerman and the Moneygoround and Muswell Hillbillies, along with their accompanying singles, are considered among the most influential recordings of the period.
They put a parking lot on a piece of land
When the supermarket used to stand.
Before that they put up a bowling alley
On the site that used to be the local palais.
That's where the big bands used to come and play.
My sister went there on a Saturday.
Come dancing,
All her boyfriends used to come and call.
Why not come dancing, it's only natural?
Another Saturday, another date.
She would be ready but she's always make them wait.
In the hallway, in anticipation,
He didn't know the night would end up in frustration.
He'd end up blowing all his wages for the week
All for a cuddle and a peck on the cheek.
Come dancing,
That's how they did it when I was just a kid,
And when they said come dancing,
My sister always did.
My sister should have come in at midnight,
And my mum would always sit up and wait.
It always ended up in a big row
When my sister used to get home late.
Out of my window I can see them in the moonlight,
Two silhouettes saying goodnight by the garden gate.
The day they knocked down the palais
My sister stood and cried.
The day they knocked down the palais
Part of my childhood died, just died.
Now I'm grown up and playing in a band,
And there's a car park where the palais used to stand.
My sister's married and she lives on an estate.
Her daughters go out, now it's her turn to wait.
She knows they get away with things she never could,
But if I asked her I wonder if she would,
Come dancing,
Come on sister, have yourself a ball.
Don't be afraid to come dancing,
It's only natural.
Come dancing,
Just like the palais on a Saturday.
And all her friends will come dancing