- published: 29 Nov 2008
- views: 8996669
'+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; })); }); -->
HIDDEN ERROR: Usage of "death_age" is not recognized
Arlo Davy Guthrie (born July 10, 1947) is an American folk singer-songwriter. Like his father, Woody Guthrie, Arlo is known for singing songs of protest against social injustice. Guthrie's best-known work was his debut piece "Alice's Restaurant Massacree", a satirical talking blues song about 18 minutes in length that has since become a Thanksgiving anthem, and his lone top-40 hit was a cover of Steve Goodman's "City of New Orleans." His song "Massachusetts" was named the official folk song of the state in which he has lived most of his adult life. Guthrie has also made several acting appearances over the course of his life, and he has also fathered four children who have likewise gone on to careers as musicians.
Arlo Guthrie was born in Brooklyn, New York, the son of folk singer and composer Woody Guthrie and his wife Marjorie Mazia Guthrie. His sister is record producer Nora Guthrie. His mother was a one-time professional dancer with the Martha Graham Company and founder of the Committee to Combat Huntington's disease, the disease that took Woody's life in 1967. His father was from a Protestant family and his mother was Jewish. His maternal grandmother was renowned Yiddish poet Aliza Greenblatt.
Arlo Guthrie is a 1974 album by folk singer Arlo Guthrie.
All tracks composed by Arlo Guthrie; except where indicated
"This Land Is Your Land" is one of the United States' most famous folk songs. Its lyrics were written by American folk singer Woody Guthrie in 1940 based on an existing melody, in critical response to Irving Berlin's "God Bless America", which Guthrie considered unrealistic and complacent. Tired of hearing Kate Smith sing it on the radio, he wrote a response originally called "God Blessed America". Guthrie varied the lyrics over time, sometimes including more overtly political verses in line with his sympathetic views of communism than appear in recordings or publications.
Guthrie wrote the song in 1940 and recorded it in 1944. The song was not published until 1945, when it was included in a mimeographed booklet of ten songs with typed lyrics and hand drawings. The booklet was sold for twenty-five cents, and was copyrighted in 1951.
The first known professionally printed publication was in 1956 by Ludlow Music (now a unit of The Richmond Organization), which administered the publishing rights to Guthrie's song. Ludlow later issued versions with piano and guitar accompaniments.
HIDDEN ERROR: Usage of "alma-mater" is not recognized
Peter "Pete" Seeger (May 3, 1919 – January 27, 2014) was an American folk singer and activist. A fixture on nationwide radio in the 1940s, he also had a string of hit records during the early 1950s as a member of the Weavers, most notably their recording of Lead Belly's "Goodnight, Irene", which topped the charts for 13 weeks in 1950. Members of the Weavers were blacklisted during the McCarthy Era. In the 1960s, he re-emerged on the public scene as a prominent singer of protest music in support of international disarmament, civil rights, counterculture and environmental causes.
A prolific songwriter, his best-known songs include "Where Have All the Flowers Gone?" (with Joe Hickerson), "If I Had a Hammer (The Hammer Song)" (with Lee Hays of the Weavers), and "Turn! Turn! Turn!" (lyrics adapted from Ecclesiastes), which have been recorded by many artists both in and outside the folk revival movement and are sung throughout the world. "Flowers" was a hit recording for the Kingston Trio (1962); Marlene Dietrich, who recorded it in English, German and French (1962); and Johnny Rivers (1965). "If I Had a Hammer" was a hit for Peter, Paul & Mary (1962) and Trini Lopez (1963), while the Byrds had a number one hit with "Turn! Turn! Turn!" in 1965.
the great Woody Guthrie
Inspired by Glenn Beck's inexplicable ranting against the government owning land and preserving it and stirring up fears about the indoctrinization of Woody Guthrie music. Scenes from the National Parks are displayed and words from Presidents and Park leaders as David Summerford harmonizes with himself and plays This Land is Your Land on a variety of stringed instruments.
Jennifer Lopez - "This Land Is Your Land" & "America, The Beautiful" - Inauguration 2021 Performance Official Website: https://jenniferlopez.com Facebook: https://www.facebook.com/jenniferlopez/ Instagram: https://www.instagram.com/jlo/ TikTok: https://www.tiktok.com/@jlo Twitter: https://twitter.com/jlo Text Me: +1 (305) 690-0379 #Inauguration2021 #JenniferLopez #AmericaTheBeautiful
Written by Woody Guthrie as patriotic homage to the land of his birth, and her highest ideals. Sung by Elizabeth Mitchell.
Live at the Memorial Coliseum in Los Angeles, CA on September 30, 1985 (penultimate show of the "Born In The U.S.A." tour).
Song of America: This Land is Your Land is ideally the perfect Song of America as it is devoted to describing America through the eyes of Woody Guthrie. Many times in history, a country sees the foundation of a controversial idea, an idea that spreads and leads the way for others to emerge. The idea in this song is communism. Socialism was a widespread movement across the world, and although it was very hesitantly viewed by most Americans, Guthrie saw it as a step upward from the troubles of maintaining an economy as the U.S. has done. And with his Marxist ideas, Woody was truly able to depict the problems experienced by everyday 40's Americans while also speaking on what the country had originally promised its people. Woody Guthrie was born into and lived his entire life as part of...
Available on iTunes: http://bit.ly/Su9m1c and at the Daptone store: http://bit.ly/1J4I1fL www.sharonjonesandthedapkings.com
Terry Blackwood, Sue Dodge, Ernie Haase, The Talley Trio - Official Video for “This Land Is Your Land (Live)", available now! Buy the full length DVD/CD ‘Let Freedom Ring' http://smarturl.it/Let.Freedom.Ring Available at iTunes: http://smarturl.it/Let.Freedom.Ring.iT Sign-Up for the Gaither Newsletter and receive $5 off your next online purchase: http://smarturl.it/GaitherNewsletter Subscribe to Gaither Music YouTube Channel: http://smarturl.it/GaitherMusicTV_Subsc Subscribe to GaitherVEVO Channel: http://smarturl.it/GaitherVEVOSubscribe Subscribe to Gaither TV: http://smarturl.it/GaitherTV_Subscribe Follow Gaither Music for updates on your favorite artists. Facebook: http://smarturl.it/FB_GaitherMusic Twitter: http://smarturl.it/TW_GaitherMusic Instagram: http://smarturl.it/IG_Gaither...
Today, May 3 2009, is Pete Seeger's 90th birthday. I can't make the big concert at Madison Square Garden to celebrate it, so this is my small tribute to him, an amazing man with an amazing wife, and an amazing life. This was performed at the "We Are One" Presidential Inaugural Concert, January 19, 2009. The song was written by Woodie Guthrie in 1940, first recorded by him in 1944 at Folkway Records, but not released until 1951. RIP Pete Seeger May 3, 1919 -- January 27, 2014, Toshi Seeger July 1, 1922 -- July 9, 2013 Discussion, pro and anti Seeger, this song, government, whatever, etc is allowed. However, exceedingly vulgar or hateful comments, and obvious trolling with no reasonable intellectual value, will be deleted. This video meets FAIR USE provisions of Copyright Act of 1976, Tit...
HIDDEN ERROR: Usage of "death_age" is not recognized
Arlo Davy Guthrie (born July 10, 1947) is an American folk singer-songwriter. Like his father, Woody Guthrie, Arlo is known for singing songs of protest against social injustice. Guthrie's best-known work was his debut piece "Alice's Restaurant Massacree", a satirical talking blues song about 18 minutes in length that has since become a Thanksgiving anthem, and his lone top-40 hit was a cover of Steve Goodman's "City of New Orleans." His song "Massachusetts" was named the official folk song of the state in which he has lived most of his adult life. Guthrie has also made several acting appearances over the course of his life, and he has also fathered four children who have likewise gone on to careers as musicians.
Arlo Guthrie was born in Brooklyn, New York, the son of folk singer and composer Woody Guthrie and his wife Marjorie Mazia Guthrie. His sister is record producer Nora Guthrie. His mother was a one-time professional dancer with the Martha Graham Company and founder of the Committee to Combat Huntington's disease, the disease that took Woody's life in 1967. His father was from a Protestant family and his mother was Jewish. His maternal grandmother was renowned Yiddish poet Aliza Greenblatt.
Chorus:
Seventy miles of wind and spray,
Seventy miles of water,
Seventy miles of open bay--
It's a garbage dump.
What's that stinky creek out there,
Down behind the slum's back stair
Sludgy puddle, sad and gray?
Why man, that's San Francisco Bay.
(CHORUS)
Big Solano and the Montecelle'
Ferry boats, I know them well,
Creek and groan in their muddy graves
Remembering San Francisco Bay
(CHORUS)
Joe Ortega and the Spanish crew
Sailed across the ocean blue
Came into the mighty Bay
Stood on the decks and cried, "Ole"
(CHORUS)
Fill it here, fill it here.
Docks and tidelands disappear,
Shaky houses on the quaky ground
The builder, he's Las Vegas bound
(CHORUS)
Dump the garbage in the Bay
City fathers say, "Okay,
When cries of anguish fill the air,
We'll be off on the Riviere."