- published: 15 Nov 2018
- views: 6313524
'+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; })); }); -->
Judy Collins #3 is an album by American folk singer Judy Collins released in 1963. It spent 10 weeks on Billboard's Top 150 album charts in 1964, peaking at #126 on May 16.
Jim (later Roger) McGuinn worked as an arranger and played guitar and banjo on the album. He would later bring with him the acoustic arrangements of the Pete Seeger songs "Turn! Turn! Turn! (To Everything There Is a Season)" and "The Bells of Rhymney" (as well as the notion of covering Dylan-material in an unusual fashion) when he went on to co-found the folk rock group The Byrds, where they would get a full electrified rock'n'roll-band treatment.
Judith Marjorie Collins (born May 1, 1939) is an American singer and songwriter known for her eclectic tastes in the material she records (which has included folk, show tunes, pop, rock and roll and standards) and for her social activism.
Collins' debut album A Maid of Constant Sorrow was released in 1961, but it was her cover of Joni Mitchell's "Both Sides, Now", the lead single from her 1967 album Wildflowers, that gave Collins international prominence. The single hit the Top 10 on the Billboard Pop Singles chart and won Collins her first Grammy Award for Best Folk Performance. She enjoyed further success with her covers of "Someday Soon", "Chelsea Morning", "Amazing Grace", and "Cook with Honey".
Collins experienced the biggest success of her career with her cover of Stephen Sondheim's "Send in the Clowns" from her best-selling 1975 album Judith. The single charted on the Billboard Pop Singles chart in 1975 and then again in 1977, spending 27 nonconsecutive weeks on the chart and earning Collins a Grammy Award nomination for Best Pop Vocal Performance, Female, as well as a Grammy Award for Sondheim for Song of the Year.
"Turn! Turn! Turn! (To Everything There Is a Season)" — often abbreviated to "Turn! Turn! Turn!" — is a song written by Pete Seeger in the late 1950s. The lyrics, except for the title which is repeated throughout the song, and the final verse of the song, are adapted word-for-word from Chapter 3 of the Book of Ecclesiastes, set to music and recorded in 1962. The song was originally released as "To Everything There Is a Season" on The Limeliters' album Folk Matinee and then some months later on Seeger's own The Bitter and the Sweet.
The song became an international hit in late 1965 when it was covered by the American folk rock band The Byrds, bowing at #80 on October 23, 1965, before reaching #1 on the Billboard Hot 100 chart on December 4, 1965, #3 in Canada (Nov. 29, 1965), and also peaking at #26 on the UK Singles Chart. In the U.S., the song holds distinction as the #1 hit with the oldest lyrics (Book of Ecclesiastes), theoretically authored by King Solomon.
"Turn, Turn, Turn" is the seventeenth episode of the first season of the American television series Agents of S.H.I.E.L.D., based on the Marvel Comics organization S.H.I.E.L.D. (Strategic Homeland Intervention, Enforcement and Logistics Division), revolving around the character of Phil Coulson and his team of S.H.I.E.L.D. agents as they discover the infiltration of their organization by Hydra. It is set in the Marvel Cinematic Universe (MCU), sharing continuity with the films of the franchise. The episode was written by Jed Whedon and Maurissa Tancharoen, and directed by Vincent Misiano.
Clark Gregg reprises his role as Coulson from the film series, and is joined by series regulars Ming-Na Wen, Brett Dalton, Chloe Bennet, Iain De Caestecker, and Elizabeth Henstridge. The episode ties-into the film Captain America: The Winter Soldier, taking place concurrently with it and being affected by its events, including the revelation that main character Grant Ward (Dalton) is a member of Hydra alongside recurring character John Garrett (Bill Paxton).
The ninth season of CSI: Crime Scene Investigation premiered on CBS on October 9, 2008 and ended May 14, 2009. The series stars William Petersen, Marg Helgenberger and Laurence Fishburne.
As the team grieve for their fallen colleague ("For Warrick"), Grissom makes a life changing decision ("One to Go"), during the ninth season of CSI. Also this season, Sara investigates the death of a woman attacked nine years ago ("The Happy Place"), new CSI Riley Adams joins the team ("Art Imitates Life"), and she and Nick witness a store robbery on Halloween ("Let it Bleed"), Grissom attends the trial of the Miniature Killer ("Woulda, Shoulda, Coulda"), and an infamous serial murderer brings Dr. Raymond Langston face-to-face with the CSI team ("19 Down"). As Catherine adjusts to life as the team's leader, she investigates the bizarre, the brutal, and the unlikely, including an S&M related murder ("Leave out all the Rest"), an arson-homicide ("The Grave Shift"), the murder of an FBI agent ("Disarmed and Dangerous"), death-by-toothpaste ("Deep Fried and Minty Fresh"), and a Mexican wrestling related death ("Mascara"). Nick, meanwhile, investigates the happenings of a seedy motel over the course of a year ("Turn, Turn, Turn"), and Hodges and Wendy attend a sci-fi convention ("A Space Oddity").
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.
You're listening to the official audio for Judy Collins - 'Both Sides Now' - recently featured in the Toy Story 4 trailer. Written by Joni Mitchell, 'Both Sides Now' was first recorded by Judy Collins' for her 1967 album 'Wildflowers' and went on to become a Top 10 hit. Subscribe to the Rhino Channel! https://Rhino.lnk.to/YouTubeSubID Check Out Our Favorite Playlists: Classic Rock https://Rhino.lnk.to/YTClassicRockID 80s Hits https://Rhino.lnk.to/YT80sHitsID 80s Hard Rock https://Rhino.lnk.to/YT80sHardRockID 80s Alternative https://Rhino.lnk.to/YT80sAlternativeID 90s Hits https://Rhino.lnk.to/YT90sHitsID Stay connected with RHINO on... Facebook https://www.facebook.com/RHINO/ Instagram https://www.instagram.com/rhino_records Twitter https://twitter.com/Rhino_Records https://www.rhino.c...
Peete Seeger & Judy Collins sings "Turn, Turn, Turn!" Words-adapted from the bible, book of Ecclesiastes & Music by Peete Seeger. Follow Judy Collins: Website: http://www.judycollins.com/ Facebook: https://www.facebook.com/Judy-Collins-229031937147719/ Twitter: https://twitter.com/TheJudyCollins Instagram: http://instagram.com/judycollinsofficial Spotify: https://open.spotify.com/artist/5yzE49FicYiSxN61oaxkNn?si=lVVVJVYEROGXc9WpnWhtLQ Apple Music: https://music.apple.com/no/artist/judy-collins/193870 Amazon: https://www.amazon.com/Judy-Collins/e/B000APWERM
Judy Collins performs with the Boys Choir of Harlem in this nationally televised 1993 Memorial Day concert at the Capitol building in Washington D.C. The introduction is by the late American actor, E. G. Marshall. This is a new copy of the original recording with better color and formatting, 48 kHZ stereo sound, and my channel's new "Judy Collins YouTube Channel" ID badge. The comments below are carried over from the previous version, which had over 480,000 viewings.
Judy Collins on the Turtle Doves stage at Shrewsbury Folk Festival 2022. Next festival: August 25-28 2023 | Day & weekend tickets on sale now: https://shrewsburyfolkfestival.co.uk/
One of Nina's favorite songs.
Album: Judith - 1975 - www.judycollins.com
BBC In Person
I never realized how funny Judy Collins is. If she hadn't devoted over 60 years of her life to music, she could have been a stand-up comedian. From what she shared with the nearly sold-out crowd at the Rio Theatre for the Performing on Sept. 10, 2024, she probably gets it from her father. Charles "Chuck" Collins was a blind musician who hosted a radio show, and loved to tell Mae West jokes. He gave his oldest daughter piano lessons very young, and she proved to be a prodigy of classical music. Born on May 1, 1939 in Seattle, Judy Collins discovered the new folk movement on a trip to New York City in the 1960s. At that point she traded her piano for a guitar and started performing other young songwriters' songs and traditional folk tunes. With her ethereal soprano voice, Collins helped lau...
Judy Collins visits the Smothers Brothers to sing her hit version of Ian Tyson's beloved rodeo song. Providing back-up in Judy's band are Michael Sahl on piano, Susan Evans on drums and Gene Taylor on stand-up bass. Judy says she learned the song from Stephen Stills during the summer of 1968 when he was playing electric guitar for her Who Knows Where The Time Goes LP recording sessions out in L.A. This new, HD quality clip may take a few moments to download, but it is well worth the wait. Then you can watch it right through with no stops. And then watch it again!
Judy Collins #3 is an album by American folk singer Judy Collins released in 1963. It spent 10 weeks on Billboard's Top 150 album charts in 1964, peaking at #126 on May 16.
Jim (later Roger) McGuinn worked as an arranger and played guitar and banjo on the album. He would later bring with him the acoustic arrangements of the Pete Seeger songs "Turn! Turn! Turn! (To Everything There Is a Season)" and "The Bells of Rhymney" (as well as the notion of covering Dylan-material in an unusual fashion) when he went on to co-found the folk rock group The Byrds, where they would get a full electrified rock'n'roll-band treatment.