- published: 17 Jan 2013
- views: 21143
'+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; })); }); -->
Hylo Brown (April 20, 1922 – January 17, 2003) was a bluegrass and country music singer, guitarist and bass player.
Frank "Hylo" Brown, Jr. was born in River, Johnson County, Kentucky and began his career as a performer on radio station WCMI in Ashland, Kentucky in 1939. Soon, he moved to WLOG in Logan, West Virginia and their "Saturday Jamboree". Six months later, he moved with his family to Springfield, Ohio. He began composing songs and performing on local radio stations in Ohio. During an appearance at WPFB in Middletown, Ohio he received his nickname "Hylo" because Smoky Ward, who was on the show, couldn't remember his name and started calling him "Hi-Lo". That nickname was a humorous indication of Brown's presumed vocal range. In 1950, he recorded with Bradley Kincaid at WWSO studio in Springfield. Four years later, Brown wrote a song, Lost To A Stranger, that was sent to Ken Nelson, the A & R man of Capitol Records. The song was meant to be recorded by Kitty Wells but instead, Nelson offered Brown a recording contract if he recorded it himself. On November 7, 1954, he cut his first recordings for Capitol Records. Lost To A Stranger became his first hit. In early 1955, he formed the "Buckskin Boys" performing on the WWVA Jamboree in Wheeling, West Virginia. In 1957, he joined Flatt & Scruggs on their "Martha White Mills" shows, and he was regularly featured in solo performances as well as with the Foggy Mountain Boys. He renamed the "Buckskin Boys" calling them "The Timberliners". The Timberliners consisted of Brown on guitar, Red Rector on mandolin, Jim Smoak on banjo, Clarence "Tater" Tate on fiddle and Joe "Flap Jack" Phillips on bass. After his Capitol contract had expired, Brown signed with Starday Records in 1961. He retired in 1991 and moved to Mechanicsburg, Ohio. Hylo Brown died on January 17, 2003. He is interred in Rose Hill Burial Park, Springfield, Clark County, Ohio.
Cripple Creek may refer to:
Cripple Creek is a river in the United States of Virginia.
Cripple Creek is a 1952 United States Technicolor Western film based on a story by Frank Gruber.It is 78 minutes long and was released on July 1, 1952. Directed by Ray Nazarro and Written by Richard Schayer. Starring George Montgomery, Jerome Courtland, and Richard Egan
It's 1893 and gold is being smuggled out of the country. Instead of stealing gold bars, the outlaws are stealing high grade ore, having it smelted, and then having it plated to look like lead. The Government sends agents Bret (George Montgomery) and Larry (Jerome Courtland) who arrive in Cripple Creek posing as Texas gunfighters. While their partner, Strap (Richard Egan) works on the inside as an informant, Bret finds the smelting operation and Larry learns of the payoff. The crooked town Marshal is suspicious of the two men. The reply of his inquiry to Texas exposes them, putting their lives in danger.
A cripple is a person or animal with a physical disability, particularly one who is unable to walk because of an injury or illness. The word was recorded as early as 950 AD, and derives from the Proto-Germanic krupilaz. The German and Dutch words Krüppel and kreupel are cognates.
By the 1970s, the word generally came to be regarded as pejorative when used for people with disabilities.Cripple is also a transitive verb, meaning "cause a disability or inability".
In the same way that the term "queer" and the Nazi pink triangle has been reappropriated by the gay rights movement, members of the disability rights movement have reclaimed words such as "cripple" and "gimp" to refer to themselves. The cripple tribunal in Dortmund on 13 December 1981 was one of the main protest actions of the autonomous German disability movement (in confrontation with the established disability assistance) against human rights abuses in nursing homes and psychiatric hospitals, as well as against deficiencies of local public transport. Analogous to the Russell Tribunal by Amnesty International, the cripple tribunal has denounced human rights violations of disabled people.
A cripple is a person or animal with a physical disability. Now pejorative when referring to a person.
Cripple may also refer to:
Software
Mass media
See also
Hylo Brown sings The Needle which my dad wrote. Please visit & "Like our Facebook page : Save Country Music. www.facebook.com/SaveCountryMusic
recorded in May 1962, featuring Frank 'Hylo' Brown on the "Flatt & Scruggs Grand Ole Opry Show'.
Written by Terry Fell. From the 1963 album "Sing Me a Bluegrass Song".
Artist: #HyloBrown Label: #GrassoundRecords GRS 103 Year: #1976 Genre: #Bluegrass #Gospel Restored from the original album Please consider supporting my work: PayPal: paypal.me/HankfanHankfan CashApp: $rgr1973
Flatt & Scruggs appeared on various country music variety TV shows, but they received their own 30-minute syndicated television show through WSM in 1955. The Lester Flatt and Earl Scruggs Grand Ole Opry Show featured guests such as Maybelle Carter and many famous singers of the era, and this new form of broadcast media widely increased their fame and influence. The episodes captured a dynamic that couldn’t be translated over airwaves alone. While Flatt called the shots and directed much of the banter onstage, Scruggs leaned on his technical ability more than flare. The show ran until 1969, when the two disbanded.
From 1963 London/Starday LP HA-B 8094 "Bluegrass Goes To College". Originally released as Starday SLP 204.
Hylo Brown sings a bluegrass classic and his best known song
Flatt & Scruggs appeared on various country music variety TV shows, but they received their own 30-minute syndicated television show through WSM in 1955. The Lester Flatt and Earl Scruggs Grand Ole Opry Show featured guests such as Maybelle Carter and many famous singers of the era, and this new form of broadcast media widely increased their fame and influence. The episodes captured a dynamic that couldn’t be translated over airwaves alone. While Flatt called the shots and directed much of the banter onstage, Scruggs leaned on his technical ability more than flare. The show ran until 1969, when the two disbanded.
Twisted Tales From The Vinyl Wastelands Vol. 3 "Beatin' On The Bars" (2006)
The Band "Up On Cripple Creek" on The Ed Sullivan Show, November 2, 1969. 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=B9YrYoY0N4I&list=PLQWND5qZhbj3tfQKiK-5FzjLSTUz5WRTf Watch classic Rock and Roll performances from The Ed Sullivan Show: https://youtube.com/watch?v=fL3HO0gf0Co&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....
UP ON CRIPPLE CREEK The Band The Band (1970) When I get off of this mountain, you know where I want to go? Straight down the Mississippi river, to the Gulf of Mexico To Lake Charles, Louisiana, little Bessie, girl that I once knew She told me just to come on by, if there's anything she could do Up on Cripple Creek she sends me If I spring a leak she mends me I don't have to speak, she defends me A drunkard's dream if I ever did see one Good luck had just stung me, to the race track I did go She bet on one horse to win and I bet on another to show The odds were in my favor, I had 'em five to one When that nag to win came around the track, sure enough she had won Up on Cripple Creek she sends me If I spring a leak she mends me I don't have to speak, she defends me A...
The Last Waltz - Up on Cripple Creek: The Band open up their Thanksgiving concert with the staple, "Up on Cripple Creek", with Levon Helm on lead vocals. BUY THE MOVIE: https://www.amazon.com/dp/B01D25ILI2 Watch the best The Last Waltz scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqomoybQElcPEd1AAyGSas1E FILM DESCRIPTION: Seventeen years after joining forces as the backing band for rockabilly cult hero Ronnie Hawkins, Canadian roots rockers The Band call it quits with a lavish farewell show at San Francisco's Winterland Ballroom on Nov. 25, 1976. Filmed by Martin Scorsese, this documentary features standout performances by rock legends such as Bob Dylan, Van Morrison, Eric Clapton, Joni Mitchell and Muddy Waters, as well as interviews tracing the group's history and di...
Provided to YouTube by Universal Music Group Up On Cripple Creek (Remastered 2000) · The Band Greatest Hits ℗ A Capitol Records Release; ℗ 1976 Capitol Records, LLC Released on: 2000-01-01 Producer: The Band Associated Performer, Bass Guitar, Vocals: Rick Danko Associated Performer, Drums, Vocals: Levon Helm Associated Performer, Keyboards: Garth Hudson Associated Performer, Piano: Richard Manuel Associated Performer, Guitar, Vocals: Robbie Robertson Composer Lyricist: Robbie Robertson Auto-generated by YouTube.
Provided to YouTube by Columbia/Legacy Cripple Creek · Flatt & Scruggs Foggy Mountain Banjo ℗ Originally released 1961. All rights reserved by Sony Music Entertainment Released on: 1961-06-01 Fiddle: Paul Warren Composer, Lyricist: Traditional Dobro: Burkett H. Graves Arranger: E. Scruggs Guitar: Curley Lambert Drums: Murrey M. Harman, Jr. Bass: Jake Tullock Producer: Don Law Auto-generated by YouTube.
Let me put it straight out there. I loved Earl Scruggs as a musician and as a man. I also felt the same way about Dr. Watson. I also felt the same way about rules son who is just 16 years old in this documentary, Randy Scruggs. I set up the microphone, sat myself down in his seat with my handheld 16mm camera, and they just played. Having fun. On Doc Watson's front lawn at his home in the Appalachian mountains of Western North Carolina. Watch another clip from the same recording session - https://youtu.be/te_OoPaEFK0 . My classic 90 minute music documentary records Earl Scruggs and Bill Monroe and Earl and his son Randy and Doc Watson and his son Merle, in informal scenes playing & singing together. If you love Doc Watson and Bill Monroe and old time Bluegrass Music, you will love watch...
In 1965, I did 6 episodes of a public TV series called "What's New." I presented folk songs from all over the world, and many instruments, to the best of my ability at the time. We shot these episodes at Brooklyn College and Joan Sheppard was the director. LYRICS: I got a gal and she loves me She’s as sweet as sweet can be She’s got eyes of baby blue Makes my gun shoot straight and true. Goin’ up Cripple Creek goin’ in a run Goin’ up Cripple Creek to have a little fun. Goin’ up Cripple Creek goin’ on a whirl Goin’ up Cripple Creek to find my girl. Cripple Creek’s wide and Cripple Creek’s deep I’ll make Cripple Creek before I sleep Roll my breeches to my knees Wade ol’ Cripple Creek as I please Goin’ up Cripple Creek goin’ in a run Goin’ up Cripple Creek to have a l...
Provided to YouTube by Reprise Cripple Creek Ferry · Neil Young After the Gold Rush ℗ 2009 Reprise Records Flugelhorn: Bill Peterson Bass Guitar: Billy Talbot Guitar: Danny Whitten Background Vocals: Danny Whitten Producer: David Briggs Bass Guitar: Greg Reeves Piano: Jack Nitzsche Producer: Kendall Pacios Guitar, Harmonica, Piano, Producer, Vibes: Neil Young Lead Vocals: Neil Young Guitar, Piano: Nils Lofgren Background Vocals: Nils Lofgren Drums: Ralph Molina Background Vocals: Ralph Molina Background Vocals: Stephen Stills Unknown: Tim Mulligan Writer: Neil Young Auto-generated by YouTube.
Originally aired August 27 ◂ The Denver Channel, 7News, brings you the latest trusted news and information for Denver, Colorado, Mile High and the Rocky Mountains. Our mission is to provide useful, interesting news and updates on breaking news to people in the Denver metro area, all across our beautiful state of Colorado and all over the world. For more download the 7News mobile app: iPhone: http://bit.ly/iOS-kmgh Android: http://bit.ly/kmgh-android
Winterland Ballroom, San Francisco, CA 1976-11-25 The Last Waltz (2002) ¡IMPORTANT! If anyone thinks they have footage (audience or professional) or an audience recording that no one else has (or that I haven't published) and wants to make it public, they can contact me. ¡IMPORTANT! I never liked that they shortened the songs so that the movie didn't last that long, or at least they could have given them as bonus material for the 40th anniversary
Hylo Brown (April 20, 1922 – January 17, 2003) was a bluegrass and country music singer, guitarist and bass player.
Frank "Hylo" Brown, Jr. was born in River, Johnson County, Kentucky and began his career as a performer on radio station WCMI in Ashland, Kentucky in 1939. Soon, he moved to WLOG in Logan, West Virginia and their "Saturday Jamboree". Six months later, he moved with his family to Springfield, Ohio. He began composing songs and performing on local radio stations in Ohio. During an appearance at WPFB in Middletown, Ohio he received his nickname "Hylo" because Smoky Ward, who was on the show, couldn't remember his name and started calling him "Hi-Lo". That nickname was a humorous indication of Brown's presumed vocal range. In 1950, he recorded with Bradley Kincaid at WWSO studio in Springfield. Four years later, Brown wrote a song, Lost To A Stranger, that was sent to Ken Nelson, the A & R man of Capitol Records. The song was meant to be recorded by Kitty Wells but instead, Nelson offered Brown a recording contract if he recorded it himself. On November 7, 1954, he cut his first recordings for Capitol Records. Lost To A Stranger became his first hit. In early 1955, he formed the "Buckskin Boys" performing on the WWVA Jamboree in Wheeling, West Virginia. In 1957, he joined Flatt & Scruggs on their "Martha White Mills" shows, and he was regularly featured in solo performances as well as with the Foggy Mountain Boys. He renamed the "Buckskin Boys" calling them "The Timberliners". The Timberliners consisted of Brown on guitar, Red Rector on mandolin, Jim Smoak on banjo, Clarence "Tater" Tate on fiddle and Joe "Flap Jack" Phillips on bass. After his Capitol contract had expired, Brown signed with Starday Records in 1961. He retired in 1991 and moved to Mechanicsburg, Ohio. Hylo Brown died on January 17, 2003. He is interred in Rose Hill Burial Park, Springfield, Clark County, Ohio.
A cripple on his deathbed and the daydream he did ride,
All past the streams of fire on a pedal path did glide,
He left his wheelchair spinning deeper in the mud.
in it set its memories, its body and its blood.
An angel came to greet him by his side she flew,
whispered as a part of him what he already knew,
his head was spinning freely and it was plain to see,
this burden was himself, he bore, the sight his eyes can
see.
His death, it died quite easily, right there was gone for
good,
but couldn't see his loved one, like he thought he should
he thought "if they were gone", said he, "then this
cannot be true"
the search to find what wasn't there, is what brought him