- published: 18 Dec 2009
- views: 337153
'+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; })); }); -->
Roy Hogsed (born December 24, 1919 in Flippin, Arkansas; died March 1978) was an American country music and rockabilly singer. He is best known for his song "Cocaine Blues", which he took to number 15 on the country music charts in 1948. Although he was active in the music business for only seven years, "Cocaine Blues" has been widely covered.
Boogie-woogie is a musical genre that became popular during the late 1920s, but developed in African American communities in the 1870s. It was eventually extended from piano, to piano duo and trio, guitar, big band, country and western music, and gospel. While the blues traditionally expresses a variety of emotions, boogie-woogie is mainly associated with dancing. The lyrics of one of the earliest hits, "Pinetop's Boogie Woogie", consist entirely of instructions to dancers:
It is characterized by a regular left-hand bass figure, which is transposed following the chord changes.
Boogie-woogie is not strictly a solo piano style; it can accompany singers and be featured in orchestras and small combos. It is sometimes called "eight to the bar", as much of it is written in common time (4/4) time using eighth notes (quavers) (see time signature). The chord progressions are typically based on I - IV - V - I (with many formal variations of it, such as I/i - IV/iv - v/I, as well as chords that lead into these ones).
Boogie-woogie is a form of swing dance and a form of blues piano playing.
The name boogie-woogie is used mostly in Europe; the closest thing in the US is probably East Coast Swing. What today is called boogie-woogie would during the 1950s have been called rock'n'roll. The term boogie woogie is confusing; the dance can be danced to the music style called boogie-woogie but is most often danced to rock music of various kinds. The name was taken since the name rock'n'roll used in competition dance was already taken by a highly acrobatic dance form. Boogie woogie as a competition dance is a led dance, not choreographed, and can contain acrobatic elements, but not like in acrobatic rock'n'roll. The limitation of aerials are various in European countries, but by the strong Lindy Hop influence, they cannot be completely removed from the dance. Mainly the couples have to maintain some contact during the acrobatics, this rule helps to avoid moves like double/triple saltos and the like.
Boogie-woogie is a piano-based music style.
Boogie-woogie may also refer to:
Great Hillbilly/Western Swing Version of This Famous Song Also Recorded By Johnny Cash In 1960.
50s Hillbilly Version of American Patriotic Songs & Anti-Communist Song - Capitol Records - 1201 (1950) The war song, "Don’t Bite the Hand That’s Feeding You," was aimed at convincing immigrants of the importance of staying loyal to the United States during World War I. The song was composed by Jimmie Morgan and the lyrics were written by Thomas Hoier. The piece was published in New York in 1915 by Leo Feist. Roy Clifton Hogsed (December 24, 1919, in Flippin, Arkansas - March 1978) relocated to San Diego at the beginning of his career, it was an American Country music singer. He is best known for his song "Cocaine Blues", which he took to number 15 on the Country Music charts in 1948. He was responsible for one of the most original sounds in post-war country music, often throwing in e...
Roy Hogsed (1919-1978) forged one of the most original sounds in postwar country music, a tight and exciting small group sound that often anticipated the energy and drive of rockabilly and rock 'n' roll. He is best remembered for his hit version of the notorious "Cocaine Blues" and most identified with the accordion and guitar lead and slapped-bass rhythm of his original Rainbow Riders Trio. Ironically, however, some of his best work, like "Snake Dance Boogie," "Let Your Pendulum Swing" and "Ain't A Bump In The Road" occurred in a looser, slightly larger band context. A good-time feel and infectious joy characterized his performances from start to finish. The Arkansas-born, San Diego-based Hogsed's recording career was relatively brief, spanning 1947-54, and his greater impact may have bee...
50s Hillbilly Bopper - Unissued Capitol Recording (1952) Producer Ken Nelson. Recorded November17, 1952 at Capitol Recording Studio, 5515 Melrose Avenue, Hollywood, California with Roy Hogsed (vocal, guitar, leader) Jasper Donald Hogsed (lead guitar, steel guitar, fiddle) Addison "Phil" Ransom (bass) Myron Sautier (piano) Roy Harte (drums) Roy Clifton Hogsed (December 24, 1919, in Flippin, Arkansas - March 1978) relocated to San Diego at the beginning of his career, it was an American Country music singer. He is best known for his song "Cocaine Blues", which he took to number 15 on the Country Music charts in 1948. He was responsible for one of the most original sounds in post-war Country Music, often throwing in elements of the not-yet articulated styles of Rockabilly and Rock & Roll...
dollarcountry.org
Its Swingin' Monday on Ranch Radio and here is Roy Hogsed's 1951 recording of Put Some Sugar In Your Shoes. Artist Biography by Stacia Proefrock Born in Arkansas, Roy Hogsed (b. 1919, d. 1978) relocated to San Diego at the beginning of his career. He was responsible for one of the most original sounds in post-war country music, often throwing in elements of the not-yet articulated styles of rockabilly and rock & roll. His Rainbow Riders Trio combined accordion, guitar and slapped-bass rhythm to help produce hits like his version of "Cocaine Blues." Several other hits were made by him with a larger band format, including "Snake Dance Boogie," "Let Your Pendulum Swing," and "Aint a Bump in the Road." His career lasted from 1947, when he made his first singles for Coast Records to 1954, whe...
Ladyva turns up in London to meet Dr K for a second epic boogie woogie piano jam! Check out Ladyva's info/tour dates here: https://www.ladyva.com/
Ladyva happened to be passing the station piano on her way back to Switzerland…Ladyva's Website: https://www.ladyva.com/ Dr K and Ladyva PART 2: https://www.youtube.com/watch?v=_ZlFOZMPbdY
These two are both good but the male dancer is outstanding .. . . he never moves his shoulders compared to what his feet and knees are doing. This pianist is from Switzerland. He plays some of the best Boogie Woogie anywhere. He is so BIG over there, they hold a week-long Boogie Woogie contest every year and all the best players in the world are invited. In this video he is joined by the 2 amazing dancers... The male dancer even has a forties haircut. Turn up the volume, watch and give it a listen! If you experience any trouble tapping your foot to the beat, you had better hurry and schedule an appointment with your physician. FOR THOSE WHO DON'T REMEMBER, HERE IS HOW THE BOOGIE WOOGIE WAS DONE! Most people 60 and younger do not know about the BOOGIE WOOGIE and may have never...
Even though this channel is mostly focusing on shorts videos, we would like to share a few remarkable longer videos with you as well 😁 Here is the video of us dancing at the Boogie Woogie European Championship a few years ago to the tune "A New Love" by Ruth Brown 🎶 Make sure to check out and subscribe to our main YouTube Channel: https://www.youtube.com/c/SondreOlsenByeTanyaGeorgiievska/featured #sondreandtanya #dance #boogiewoogie #competition #couple
Johan Blohm from The Refreshments. Refreshments on Spotify: http://open.spotify.com/artist/31oqOoeYTFXYaENhMINVl8 ------------------------------------------------------------------------------------------------ Refreshments on iTunes http://itunes.apple.com/se/artist/the-refreshments/id429682776?l=en
Boogie Woogie Greats - The Best of Boogie Woogie, more than 2 hours of music with the greatest! https://youtu.be/pNs9Ga_TP40 boogie woogie,blues,rock and roll,hit,delta,pop records,soul,gospel,rhythm n' blues,chill out,lounge,music bar,cocktail bar,piano bar,vintage,music to relax,Chicago,honky tonk,Albert Ammons,Meade Lux Lewis,Jimmy Yancey,Greatful Dead,Louis Jordan,Puppini sisters,Jerry Lee Lewis,Benny Goodman,Tommy Dorsey,John Lee Hooker,Muddy Waters,Howlin Wolf,Bill Haley,Jazz,Blues,Jazz music,Blues music,jazz classics,hits,blues classics,jazz n blues
Piosenkę znajdziesz na playliście #BoogieWoogie - Piosenki na imprezę ➡️ https://bit.ly/MiniDiscoMIX Zasubskrybuj kanał MagicKids i bądź na bieżąco z naszymi playlistami 🔔 ➡️ https://bit.ly/MagicKidsSub Sprawdź najnowsze teledyski MagicKids: Jelonki „Chu Chu Ua” ▶️ https://youtu.be/RxLIYzl3Rd4 Panda i Banda "Idzie Lama" ▶️ https://youtu.be/9HH8qElxScg Jelonki - ZOO "Cuda-Wianki" ▶️ https://bit.ly/ZOOCudaWiankiYT Jelonki – „Czekolada” ▶️ https://bit.ly/CzekoladaChocolate Sprawdź pozostałe playlisty MagicKids Hity z sieci dla dzieci ➡️ https://bit.ly/MagicKidsHityzSieci Jelonki ➡️ https://bit.ly/JelonkiMagicKids Centrum Uśmiechu ➡️ https://bit.ly/CentrumUsmiechu Wesoła Lokomotywa ➡️ https://bit.ly/ZgadywankiRyymowankiYT Zajrzyj do sklepu MagicKids ➡️ https://bit.ly/Sklep...
Fantastic performance by Jörg Hegemann! Philharmonie Essen 2014. #PIANO #BOOGIEWOOGIE #MUSIC
Top 5 Boogie Woogie Piano Performances, check them out! ►The easiest way to learn songs on piano: http://tinyurl.com/graffity-flowkey Submit your video to the new top 5: [email protected]
President Donald Trump visited the UK, so the station piano had to have an armed guard. Time for some boogie woogie....
The best three Boogie-Woogie Couples of the world in 2013 in the fast round Final. It was a great competition in Stuttgart - Germany with excellent dancing couples. 1. Susanna Barkhald Sandberg - Thorbjorn Solvoll Urskog / Norway 2. Isabella Gregorio - Pontus Persson / Sweden 3. Agnieszka Cherubinska - Grzegorz Cherubinski / Poland
Boogie Woogie Competition at the Rock That Swing 2016 in Munich Germany. RockThatSwing.com
These two are both good but the male dancer is outstanding .. . . he never moves his shoulders compared to what his feet and knees are doing. This pianist is from Switzerland. He plays some of the best Boogie Woogie anywhere. He is so BIG over there, they hold a week-long Boogie Woogie contest every year and all the best players in the world are invited. In this video he is joined by the 2 amazing dancers... The male dancer even has a forties haircut. Turn up the volume, watch and give it a listen! If you experience any trouble tapping your foot to the beat, you had better hurry and schedule an appointment with your physician. FOR THOSE WHO DON'T REMEMBER, HERE IS HOW THE BOOGIE WOOGIE WAS DONE! Most people 60 and younger do not know about the BOOGIE WOOGIE and may have never...
25 years of SAGARIKA MUSIC ! CELEBRATE WITH US ❤️ #dotheboogiewoogie #nurseryrhyme
Learn Swing Dancing Online with Sondre & Tanya here: https://sondreandtanya.thinkific.com/ Sondre Olsen-Bye & Tanya Georgiievska winning the Boogie Woogie Main Class World Championship by the World Rock'n'Roll Confederation (WRRC) in Marseille, France. Sondre & Tanya - Facebook Page https://www.facebook.com/sondreandtanya/ Sondre & Tanya - Instagram Account https://www.instagram.com/sondretanya/ Sondre & Tanya - Website: https://sondreandtanya.com/ Original Video: https://www.youtube.com/watch?v=tnaTgNqfR98 #sondreandtanya #boogiewoogie #champions
WRRC 2019 World Cup Boogie woogie Final, slow round, in Genova (Italy) 1st: OLSEN BYE Sondre - GEORGIIEVSKA Tatiana 2nd: PÄIVINEN Juho - MUNNE Mari 3rd: LLAMAS Florent - VERON Roxane _ Tutuboogie is an online community where Boogie Woogie dancers and musicians meet and talk about their passion. Find Tutuboogie online at Instagram: https://www.instagram.com/tutuboogie/ Facebook: https://www.facebook.com/tutuboogie/ Spotify: https://open.spotify.com/user/tutuboogie Website: http://www.tutuboogie.com/ Collaborations/business: [email protected] _ Tutuboogie is powered by Max Salvato https://www.maxsalvato.com/ Want to support? I don't love coffee but I'm a fan of hot teas! https://paypal.me/massimilianosalvato
Rock That Swing Festival 2019: Killer Boogie at Deutsches Theater (2 March 2019). http://www.rockthatswing.com Filming and video editing: Kersten Hüttner & Jan-Christoph Elle -------------- Proudly sponsored by: VeconaVintage http://www.vecona-vintage.com -------------- Rock That Swing Festival on Facebook: http://www.facebook.com/RockThatSwing... http://www.facebook.com/groups/152412... -------------- Swing dancing in Munich: www.vintage-club.de Lindy Hop, Boogie Woogie, Charleston, Shag und Balboa tanzen in München: http://www.vintage-club.de
Roy Hogsed (born December 24, 1919 in Flippin, Arkansas; died March 1978) was an American country music and rockabilly singer. He is best known for his song "Cocaine Blues", which he took to number 15 on the country music charts in 1948. Although he was active in the music business for only seven years, "Cocaine Blues" has been widely covered.
Boogie fever, got to boogie down
Boogie fever, I think it's going around
I took my baby to the drive-in show
She turned the speaker down
and then she turned on the radio
I watched a silent movie, diggin funky sound
(chorus)
She's got the Boogie Fever
She likes to boogie down
Boogie Fever
I think it's going around
I took my baby too the pizza parlor
to get a bite to eat
I put some money in the jukebox for her
You know she ate her pizza dancing to the beat
(chorus)
(All night long, we did the bump, bump, bump)
Yes we did, yes we did, yes we did, yeah.
(She kept it going strong) doin the bump, bump, bump
I called the doctor on the telephone
Said Doctor, Doctor, please
I got this feeling
rocking and a'reeling
tell me, what can it be, is it some new disease?
They call it Boogie fever
You got to boogie down
Boogie fever, I think it's going around
(All night long, we did the bump, bump, bump)
Yes we did, yes we did, yes we did
(We kept it going strong) doin the bump, bump, bump
Everybody's got the Boogie fever
You got to boogie down
Boogie fever, I think it's going around
I got the Boogie Fever
You got the Boogie Fever
Everybody's got the Boogie Fever