- published: 03 May 2011
- views: 113442
'+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 "Logo" is not recognized
The Carpenters were an American vocal and instrumental duo consisting of siblings Karen and Richard Carpenter. Producing a distinctively soft musical style, they became among the best-selling music artists of all time. During their 14-year career, the Carpenters recorded 11 albums, 31 singles, five television specials, and a short-lived television series. Their career ended in 1983 by Karen's death from heart failure brought on by complications of anorexia. Extensive news coverage surrounding the circumstances of her death increased public awareness of eating disorders.
The duo's brand of melodic pop produced a record-breaking run of hit recordings on the American Top 40 and Adult Contemporary charts, and they became leading sellers in the soft rock, easy listening and adult contemporary genres. The Carpenters had three No. 1 singles and five No. 2 singles on the Billboard Hot 100 and fifteen No. 1 hits on the Adult Contemporary chart. In addition, they had twelve top 10 singles. To date, the Carpenters' album and single sales total more than 100 million units.
Now & Then is the fifth album from the Carpenters, released on May 16, 1973. In Cash Box Year-End Charts of 1973, Now & Then appeared at number 20 and the title for the album was suggested by Karen and Richard's mother, Agnes Carpenter.
As an outgrowth of the Rick Nelson Garden Party incident, an oldies revival occurred in pop music around 1973, so Side "B" of the album featured an oldies medley. The medley starts with the Carpenters' original song "Yesterday Once More". Tony Peluso, the Carpenters' guitarist who made his debut on their 1972 album A Song For You, is heard as a radio DJ throughout the medley, which includes such songs as "The End of the World", "Dead Man's Curve", "Johnny Angel", and "One Fine Day". Peluso would also be heard as a DJ was on the Carpenters' "Calling Occupants of Interplanetary Craft" recording in 1977.
The Now & Then album also featured Mark Rudolph, a cousin of the Carpenters, on the "Guess the Golden Goodies Group Contest", as the listener who calls in. This is also one of only two albums where Karen did most or all of the drumming - the other being Offering (later rereleased as Ticket to Ride) - although on this album, she plays all of the drum tracks with the exception of Jambalaya (On the Bayou), which had Los Angeles session drummer Hal Blaine on the drums.
Now and Then may refer to:
Now & Then is the fifth studio album (sixth overall) by Australian Idol 2006 winner Damien Leith. It was released by Sony Music Australia in Australia on 20 April 2012. It was the last album of Leith's released by Sony until 2015's released of Songs From Ireland. The album spawned two singles and a tour.
Following a successful 2011 where Leith's Roy: A Tribute To Roy Orbison album climbed to #2 on the ARIA album charts, had a national sell out tour, was a finalist on ‘Dancing With The Stars’ and hosted his own TV program, Leith released his sixth album in six years, called Now & Then.
The “now” in Now & Then represents a selection of Damien’s self-penned songs. The collection includes a version of fan-favourite “Beautiful”, which is already being heard around the world as the theme song for the new global campaign by perfume giant Estée Lauder. And "then" in Now & Then sees Damien pick up where the Roy project left off, further celebrating and honouring the music of Roy Orbison, this time alongside the Traveling Wilburys.
"Now and Then" (also known as "I Don't Want to Lose You" or "Miss You") is the name given to an unreleased composition by John Lennon. It was first recorded in demo form in 1978 and was considered in 1995 as a third possible reunion single by Lennon's former band, The Beatles, for their 1995 autobiographical project The Beatles Anthology.
Lennon wrote "Now and Then" in the late 1970s, around the same time as "Free as a Bird" and "Real Love". He recorded the unfinished piece of music in a demo form at his home at the Dakota Building, New York City, around 1979. The lyrics are typical of the apologetic love songs that Lennon wrote in the later half of his career. Despite reports, for the most part the verses are nearly complete, though there are still a few lines that Lennon did not flesh out on the demo tape performance.
In January 1994, Paul McCartney was given two tape cassettes by Lennon's widow Yoko Ono that included home recordings of songs Lennon never completed or released commercially. The songs on the tape included the eventually completed and released "Free as a Bird" and "Real Love", in addition to two other songs was a tape with the words "for Paul" scrawled hastily in John's handwriting, which included "Grow Old With Me" and "Now and Then". In March 1995, the three surviving Beatles began work on "Now and Then" by recording a rough backing track that was to be used as an overdub. However, after only two days of recording, all work on the song ceased and plans for a third reunion single were scrapped permanently.
From the fabulous album "Now and Then" an entire side devoted to the oldies and done as though on a Radio Station, classic stuff from the Carpenters.
Track List:1-3 1. Carpenters - Sing (0:00) 2. Carpenters - This Masquerade (3:19) 3. Carpenters - Heather (8:11) Part 1. https://www.youtube.com/watch?v=poFn71GrtZ4 Part 2. https://www.youtube.com/watch?v=xRFzTD06TYM Part 3. https://www.youtube.com/watch?v=ZH4F-AACjt8 Part 4. https://www.youtube.com/watch?v=7ghaZc1B7EU&t=25s Now & Then is the fifth studio album by the American music duo the Carpenters, released on May 1, 1973. It reached No. 2 on the Billboard Top LPs & Tape chart on July 21, 1973, and ranked No. 20 on the Cash Box year-end pop albums chart. The title, suggested by Karen and Richard's mother Agnes, was taken from a leftover song that did not appear on the album. As an outgrowth of the Rick Nelson "Garden Party" incident, an oldies revival occurred in pop music by 1973...
SPECIAL REQUEST Here is a medley of 8 songs from Richard & Karen Carpenters' A&M album, Now And Then, released on May 16, 1973. Richard describes how this came about. "Karen and I introduced an oldies medley into our concert show starting in the summer of 1972, and it met with such an enthusiastic response, I decided to feature a version of it on side two of what would become "Now And Then". (Guitarist) Tony Peluso guests as a "D.J." and the medley was constructed as a Top 40 radio program." Personnel on the album are Richard and Karen Carpenter -- Vocals, Richard Carpenter -- Keyboards, Joe Osborn -- Bass, Karen Carpenter -- Drums, Bob Messenger - Flute & Tenor Sax, Doug Strawn - Baritone Saxophone, Tom Scott -- Recorder, Tony Peluso - Lead Guitar, Gary Sims- Guitar, Buddy Emmons & Ja...
Provided to YouTube by Universal Music Group This Masquerade · Carpenters Now & Then ℗ 1973 A&M Records Released on: 1973-05-01 Producer, Associated Performer, Recording Arranger: Richard Carpenter Studio Personnel, Mixer, Asst. Recording Engineer: Roger Young Producer: Karen Carpenter Studio Personnel, Engineer: Ray Gerhardt Composer Lyricist: Leon Russell Auto-generated by YouTube.
Taken from two sources and edited together this mix includes "Fun, Fun, Fun" and "The End of the World" (without Tony Peluso's DJ link) "Da Doo Ron Ron" is the extended version from the 8-Track tape, again without Tony Peluso's DJ talking over the end of it. "Da Doo Ron Ron" was never released as a "clean" track without the DJ intro, so I had to mix that back on so I could include it here.
In June 1981, Karen and Richard released their 10th studio album, "Made In America," and made a world tour to promote it with appearances in Brazil and Germany. In November of that year, she and Richard returned home to California. Karen and her husband Tom Burris formally separated that same month. Shortly after Christmas, Karen moved to New York to begin treatment for her anorexia. She sought treatment with psychotherapist Steven Levenkron who was noted for his research into anorexia nervosa and self injury. In April 1982, she took a two-week vacation from her treatment and returned home to California. She and Richard returned to the studio and recorded several songs, including this song, "Now." At the time of this recording, Karen was heavily anorexic. Richard says she had lost ev...
Track List: 4-7 4. Carpenters - Jambalaya (On The Bayou) (0:00) 5. Carpenters - I Can't Make Music (3:42) 6. Carpenters - Yesterday Once More (7:02) Medley: 7. Carpenters - Fun, Fun, Fun (10:58) Part 1. https://www.youtube.com/watch?v=poFn71GrtZ4 Part 2. https://www.youtube.com/watch?v=xRFzTD06TYM Part 3. https://www.youtube.com/watch?v=ZH4F-AACjt8 Part 4. https://www.youtube.com/watch?v=7ghaZc1B7EU&t=25s Now & Then is the fifth studio album by the American music duo the Carpenters, released on May 1, 1973. It reached No. 2 on the Billboard Top LPs & Tape chart on July 21, 1973, and ranked No. 20 on the Cash Box year-end pop albums chart. The title, suggested by Karen and Richard's mother Agnes, was taken from a leftover song that did not appear on the album. As an outgrowth of the Ri...
Provided to YouTube by Universal Music Group Sing · Carpenters Gold - Greatest Hits ℗ 1973 A&M Records Released on: 2000-01-01 Producer, Associated Performer, Recording Arranger: Richard Carpenter Producer: Karen Carpenter Studio Personnel, Engineer: Ray Gerhardt Studio Personnel, Asst. Recording Engineer: Roger Young Composer Lyricist: Joe Raposo Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Yesterday Once More · Carpenters The Singles 1969 - 1973 ℗ 1973 A&M Records Released on: 1973-11-09 Producer, Associated Performer, Recording Arranger, Background Vocalist, Piano, Wurlitzer Electric Piano, Hammond Organ: Richard Carpenter Producer, Associated Performer, Vocals, Background Vocalist, Drums: Karen Carpenter Associated Performer, Bass Guitar: Joe Osborn Associated Performer, Guitar: Tony Peluso Associated Performer, English Horn: Earle Dumler Composer Lyricist: John Bettis Composer Lyricist: Richard Carpenter Auto-generated by YouTube.
This is an excerpt from the "The Carpenters' Very First Television Special" (1976). Karen and Richard perform a medley of their hits. I overlaid the audio with a clean track. The medley was released on the final Carpenters album "As Time Goes By" in 2001.
HIDDEN ERROR: Usage of "Logo" is not recognized
The Carpenters were an American vocal and instrumental duo consisting of siblings Karen and Richard Carpenter. Producing a distinctively soft musical style, they became among the best-selling music artists of all time. During their 14-year career, the Carpenters recorded 11 albums, 31 singles, five television specials, and a short-lived television series. Their career ended in 1983 by Karen's death from heart failure brought on by complications of anorexia. Extensive news coverage surrounding the circumstances of her death increased public awareness of eating disorders.
The duo's brand of melodic pop produced a record-breaking run of hit recordings on the American Top 40 and Adult Contemporary charts, and they became leading sellers in the soft rock, easy listening and adult contemporary genres. The Carpenters had three No. 1 singles and five No. 2 singles on the Billboard Hot 100 and fifteen No. 1 hits on the Adult Contemporary chart. In addition, they had twelve top 10 singles. To date, the Carpenters' album and single sales total more than 100 million units.