- published: 06 Feb 2012
- views: 668067
'+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; })); }); -->
Emmylou Harris (born April 2, 1947) is an American singer and songwriter. She has released many popular albums and singles over the course of her career, and – as of 2015 – she had won 13 Grammys as well as numerous other awards.
Her work and recordings include work as a solo artist, a bandleader, an interpreter of other composers' works, a singer-songwriter, and a backing vocalist and duet partner. She has worked with numerous leading artists, including Gram Parsons, Bob Dylan, John Denver, Linda Ronstadt, Dolly Parton, Roy Orbison, the Band, Patty Griffin, Mark Knopfler, Delbert McClinton, Guy Clark, Willie Nelson, Bright Eyes, Rodney Crowell, John Prine, Neil Young, Cyndi Lauper, Steve Earle, and Ryan Adams.
Harris is from a career military family. Her father, Walter Harris, was a military officer, and her mother, Eugenia, was a wartime military wife. Her father, a member of the Marine Corps, was reported missing in action in Korea in 1952 and spent ten months as a prisoner of war. Born in Birmingham, Alabama, Harris spent her childhood in North Carolina and Woodbridge, Virginia, where she graduated from Gar-Field Senior High School as class valedictorian. She won a drama scholarship to the UNCG School of Music, Theatre and Dance at the University of North Carolina at Greensboro, where she began to study music seriously, learning to play the songs of Pete Seeger, Bob Dylan and Joan Baez on guitar. She dropped out of college to pursue her musical aspirations, and moved to New York City, working as a waitress to support herself while performing folk songs in Greenwich Village coffeehouses during the folkie boom. She married fellow songwriter Tom Slocum in 1969 and recorded her first album, Gliding Bird. Harris and Slocum soon divorced, and Harris and her newborn daughter Hallie moved in with her parents in the Maryland suburbs near Washington, D.C.
Blue Kentucky Girl may refer to:
Blue Kentucky Girl is an album by country music artist Emmylou Harris, released in 1979. The album features delving more traditional country than the country-rock sound of Harris' previous releases. Songs include work by Willie Nelson and Gram Parsons. Rodney Crowell's "Even Cowgirls Get the Blues" featured harmonies by Dolly Parton and Linda Ronstadt, and came out of the women's ill-fated 1978 recording sessions, where they first attempted to record a "trio" album (nearly a full decade before they actually succeeded in doing so).
The album won the 1980 Grammy for Best Female Country Vocal Performance. "Beneath Still Waters" became Harris' fourth #1 hit, covers of The Drifters' 1960 hit "Save The Last Dance For Me" and the title track (originally recorded by Loretta Lynn) were top ten hits on the US country charts.
In 2006, the album ranked #20 on CMT's 40 Greatest Albums in Country Music.
Blue Kentucky Girl is a 1965 studio album by American country singer-songwriter, Loretta Lynn.
The album was released on Decca Records in 1965 and was Lynn's third studio album of the year and her fourth solo album up to that point. The album's title track was the song's only single and peaked in the Top 10 on the Billboard Country Chart in 1965. The album released 12 studio tracks. Four of these tracks were written or co-written by Lynn herself or with another songwriter. Lynn's own compositions at the time were not released as singles yet until Lynn was given more control on what she could record on her albums. The album included cover versions of previous Country hits, Connie Smith's "Then and Only Then" and Johnny Cash's "I Still Miss Someone". The album peaked at #14 on the Billboard Top Country Albums chart in 1965.
Kentucky (i/kənˈtʌki/, kən-TU-kee), officially the Commonwealth of Kentucky, is a state located in the east south-central region of the United States. Kentucky is one of four U.S. states constituted as a commonwealth (the others being Virginia, Pennsylvania, and Massachusetts). Originally a part of Virginia, in 1792 Kentucky became the 15th state to join the Union. Kentucky is the 37th most extensive and the 26th most populous of the 50 United States.
Kentucky is known as the "Bluegrass State", a nickname based on the bluegrass found in many of its pastures due to the fertile soil. One of the major regions in Kentucky is the Bluegrass Region in central Kentucky which houses two of its major cities, Louisville and Lexington. It is a land with diverse environments and abundant resources, including the world's longest cave system, Mammoth Cave National Park, the greatest length of navigable waterways and streams in the contiguous United States, and the two largest man-made lakes east of the Mississippi River.
Kentucky (foaled 1861, died 1875), was a successful American Thoroughbred racehorse who won 21 of his 23 starts, including 20 consecutive wins.
He was by Lexington, who sired three colts in 1861 (out of Glencoe mares) and would each become one of the best race horses in America – Norfolk, Asteroid and Kentucky. Norfolk and Asteroid went undefeated throughout their racing careers, and one of the few horses who ever defeated Kentucky was Norfolk. Kentucky's dam was Magnolia, by the imported British champion Glencoe; Glencoe stood at John Harper's Nantura Stock Farm in Kentucky. His sire line traced back to Herod.
A rangy bay with a narrow white stripe and white off-fore pastern, Kentucky was owned by John Hunter, one of the founders of the Saratoga Race Course and co-owner (and the first chairman) of The Jockey Club.
Probably trained by A.J. Minor (the facts are unclear), Kentucky won his only two-year-old start. At age three, racing for John Hunter, William R. Travers and George Osgood, he lost his second start in the inaugural Jersey Derby – coming in fourth to Norfolk. After that he won 20 consecutive races, including the first Travers Stakes in 1864 and the first two runnings of the Saratoga Cup at a distance of 2¼ miles. He also won the first Inaugural Stakes in four mile heats at the newly opened Jerome Park Racetrack. For three seasons (1864, 1865 and 1866), when races were two, three and four miles long, he was the undisputed champion of East Coast racing.
Kentucky is a 1938 Technicolor film with Loretta Young, Richard Greene, and Walter Brennan. It was directed by David Butler. It is a Romeo and Juliet story of lovers Jack and Sally, set amidst Kentucky horseracing, in which a family feud goes back to the Civil War and is kept alive by Sally's Uncle Peter.
During the Civil War, Thad Goodwin (Charles Waldron) of Elmtree Farm, a local horse breeder resists Capt. John Dillon (Douglass Dumbrille) and a company of Union soldiers confiscating his prize horses. He is killed by Dillon and his youngest son Peter (Bobs Watson) cries at the soldiers riding away with the horses.
75 years later, in 1938, Peter (Walter Brennan) now a crotchety old man, still resides on Elmtree Farm and raises horses with his niece Sally (Loretta Young). Dillon's grandson Jack (Richard Greene) and Sally meet, her not knowing that he was a Dillon. Peter Goodwin dies when his speculation on cotton drops. The Goodwins are forced to auction off nearly all their horses and Jack offers his services to Sally, as a trainer of their last prize horse, "Bessie's Boy", who falls ill.
"Blue Kentucky Girl", performed by Emmylou Harris & The Hot Band, from the 1979 Warner Bros album of the same name, is a cover of the 1965 Loretta Lynn hit written by Johnny Mullins. The album is available on CD on Warner Bros. There is no better interpreter of this type of music than Emmylou Harris. This sound recording is administered by WMG. I do not own the right to the song, audio, or images contained in this video. No copyright infringement is intended. This purpose of this upload is for viewer enjoyment and education not for monetary gain.
Kentucky Educational Television's "The Lonesome Pine Specials"; recorded at the Kentucky Center for the Arts; producer Richard Van Kleeck; director Clark Santee; copyright 1992, KET Sam Bush - mandolin, fiddle John Randal Stewart - guitar Al Perkins - dobro, banjo, guitar Mark Winchester - bass Larry Atamanuik - drums
LIVE
Download "Blue Kentucky Girl" in the style of Emmylou Harris in MP4 or MP3+G formats available here: https://karaoke.stingray.com/search/song?searchText=Blue%20Kentucky%20Girl&karaokeId=KAR:G:2493 Sing, record and share this karaoke song online: http://www.thekaraokechannel.com/online/#sid=6598 For more karaoke songs with lyrics, SUBSCRIBE: http://www.youtube.com/user/TheKARAOKEChannel?sub_confirmation=1 Website: http://www.thekaraokechannel.com/ Karaoke Download Store: http://karaoke.stingray.com Facebook: https://www.facebook.com/TheKARAOKEChannel Twitter: https://twitter.com/karaokelounge Get The KARAOKE Channel Mobile App, and take this karaoke song to go! http://www.thekaraokechannel.com/mobile/
Provided to YouTube by CDBaby Blue Kentucky Girl · Aine Crehan Any Man of Mine - EP ℗ 2015 Aine Crehan Released on: 2015-07-27 Auto-generated by YouTube.
Download "Blue Kentucky Girl" in the style of Emmylou Harris in MP4 or MP3+G formats available here: https://karaoke.stingray.com/search/song?searchText=Blue%20Kentucky%20Girl&karaokeId=KAR:G:2493 Sing, record and share this karaoke song online: http://www.thekaraokechannel.com/online/#sid=6598 For more karaoke songs with lyrics, SUBSCRIBE: http://www.youtube.com/user/TheKARAOKEChannel?sub_confirmation=1 Website: http://www.thekaraokechannel.com/ Karaoke Download Store: http://karaoke.stingray.com Facebook: https://www.facebook.com/TheKARAOKEChannel Twitter: https://twitter.com/karaokelounge Get The KARAOKE Channel Mobile App, and take this karaoke song to go! http://www.thekaraokechannel.com/mobile/
Emmylou Harris (born April 2, 1947) is an American singer and songwriter. She has released many popular albums and singles over the course of her career, and – as of 2015 – she had won 13 Grammys as well as numerous other awards.
Her work and recordings include work as a solo artist, a bandleader, an interpreter of other composers' works, a singer-songwriter, and a backing vocalist and duet partner. She has worked with numerous leading artists, including Gram Parsons, Bob Dylan, John Denver, Linda Ronstadt, Dolly Parton, Roy Orbison, the Band, Patty Griffin, Mark Knopfler, Delbert McClinton, Guy Clark, Willie Nelson, Bright Eyes, Rodney Crowell, John Prine, Neil Young, Cyndi Lauper, Steve Earle, and Ryan Adams.
Harris is from a career military family. Her father, Walter Harris, was a military officer, and her mother, Eugenia, was a wartime military wife. Her father, a member of the Marine Corps, was reported missing in action in Korea in 1952 and spent ten months as a prisoner of war. Born in Birmingham, Alabama, Harris spent her childhood in North Carolina and Woodbridge, Virginia, where she graduated from Gar-Field Senior High School as class valedictorian. She won a drama scholarship to the UNCG School of Music, Theatre and Dance at the University of North Carolina at Greensboro, where she began to study music seriously, learning to play the songs of Pete Seeger, Bob Dylan and Joan Baez on guitar. She dropped out of college to pursue her musical aspirations, and moved to New York City, working as a waitress to support herself while performing folk songs in Greenwich Village coffeehouses during the folkie boom. She married fellow songwriter Tom Slocum in 1969 and recorded her first album, Gliding Bird. Harris and Slocum soon divorced, and Harris and her newborn daughter Hallie moved in with her parents in the Maryland suburbs near Washington, D.C.
(Johnny Mullins)
You left me for the bright lights of the town
A country boy set out to see the world
Remember when those neon lights shine down
That big old moon shines on your Kentucky girl
I swear I love you by the moon above you
How bright is it shining in your world
Some morning when you wake up all alone
Just come on home to your blue Kentucky girl
Don't wait to bring great riches home to me
I need no diamond rings or fancy pearls
Just bring yourself, you're all I'll ever need
That's good enough for this blue Kentucky girl
I swear I love you by the moon above you
How bright is it shining in your world
Some morning when you wake up all alone
Just come on home to your blue Kentucky girl