- published: 18 Dec 2023
- views: 1737419
'+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; })); }); -->
Andrew James "Andy" Summers (born 31 December 1942) is an English musician, born in Poulton-le-Fylde, Lancashire. Best known as the guitarist for the rock band The Police, he has also recorded twelve solo albums, collaborated with many other artists, toured extensively under his own name, published several books, and composed several film scores.
During Summers' childhood, his family moved to Bournemouth in Dorset, England. After several years of piano lessons, he took up the guitar at the age of thirteen. By age sixteen he was playing in local clubs and by nineteen he had moved to London with his friend Zoot Money to form Zoot Money's Big Roll Band.
Summers' professional career began in the mid-1960s in London as the guitarist for the British rhythm and blues band Zoot Money's Big Roll Band, which eventually came under the influence of the spreading psychedelic scene and evolved into the acid rock group Dantalian's Chariot.
After the demise of Dantalion's Chariot, Summers joined The Soft Machine for a period of three months and toured the United States. For a brief time in 1968, he was a member of The Animals, then known as Eric Burdon and the Animals, with whom he recorded one album, Love Is. The album features a recording of Traffic's "Coloured Rain", which includes a guitar solo by Summers. The LP also included a reworked version of Dantalion's Chariot's sole single "Madman Running Through the Fields".
Reincarnation of a Lovebird is an album by jazz bassist and composer Charles Mingus, recorded in November 1960, but not released owing to the closure of Candid Records soon after the recordings were made. In 1988, the British record producer Alan Bates revived the label. This revival triggered the issuing of several previously unreleased recordings, including this session.
This album is not to be confused with two other Mingus releases bearing the same title. A Prestige Records double album release contains recordings from a later period. In the United Kingdom, Mingus's 1957 Atlantic Records album The Clown was retitled Reincarnation of a Lovebird for a 1960s reissue.
Reincarnation of a Love Bird is an album by Paul Motian originally released on the German JMT label in 1994 and featuring performances of bebop jazz standards by Motian with the Electric Bebop Band. The album follows on from the 1992 release Paul Motian and the Electric Bebop Band and was rereleased on the Winter & Winter label in 2005.
The Allmusic review by Rick Anderson awarded the album 4 stars stating "The element of surprise that charged the proceedings on the debut is missing this time, but this is still a very fine album overall".
Andy Summers is a celebrated English guitarist and composer, best known for his work with the iconic rock band The Police. His innovative approach to guitar, characterized by a distinctive use of effects and a unique, textural style, played a pivotal role in shaping the sound of The Police during their rise to fame in the late 1970s and early 1980s. Summers’ skillful integration of rock, reggae, and jazz influences helped create timeless hits like “Every Breath You Take” and “Message in a Bottle.” His contributions to music have been recognized with several awards, including induction into the Rock and Roll Hall of Fame. Andy Summers remains a revered figure in the music world, celebrated for his innovative playing style and enduring influence on contemporary guitar music. My Beato Club ...
In this clip, Andy Summers breaks down the structure of The Police's hit song "Message in a Bottle", and how he came up with the iconic guitar riff. Full Interview Here: https://youtu.be/V67Fq47U4ng?si=UkfTWahdas6dG-Vt Check out My NEW Course The Arpeggio Master Class For Guitar 🎸Get it here: → https://beatoguitar.com/ 📚The Beato Ultimate Bundle — $99 FOR ALL OF Rick's Courses. Get it here: ⇢ https://rickbeato.com 👂— The Beato Ear Training Program - $99.00 value 📘— The Beato Book Interactive - $99.00 value 🎸— Beato Beginner Guitar - $159.00 value 🎸— The Quick Lessons Pro Guitar Course - $79.00 value … all for just $99.00 Get it here: https://rickbeato.com
Guitarist Andy Summers discusses the new documentary 'Can't Stand Losing You: Surviving the Police', the break-up, the reunion, his relationship with Sting, and interest in Lady Gaga.
Jamming with Tal… Tal Wilkenfeld
Breakfast jam...! 🎥 Mo Summers
Guitargate Premium Membership Sale : https://store.guitargate.com/products/premium-membership
Video of Andy Summers playing Footprints from the album The Last Dance of Mr X released in 1997. 'Footprints' is a jazz standard composed by saxophonist Wayne Shorter and recorded for his 1967 album Adam's Apple. @MilesDavis Website: https://andysummers.com/ Facebook: https://www.facebook.com/andysummersofficial Instagram: https://www.instagram.com/andysummers_official/ Twitter: https://twitter.com/home You Tube: https://www.youtube.com/watch?v=o6RD3df_VjA Spotify: https://open.spotify.com/artist/3rHBApuFwaJy65f7vWQJLr
Most well known as the guitarist for the Police, many may not be familiar with Andy's amazing solo material in the world of ambient new age-y fusion music. This album is my absolute favorite solo CD by Andy Summers, his debut on Private Music, with evocative tracks like "Emperor's Last Straw" and "Red Balloon" taking me instantly back to 1988 when I first heard them...definitely my top picks from this one. I always take this album on my mp3 player when I go on my isolated backpacking trips through the Nantahala National Forest, provides nice ambience. Tracklist: 1. Red Balloon 0:00 2. Mysterious Barricades 3:34 3. When That Day Comes 6:45 4. Train Song 8:05 5. Luna 10:48 6. Satyric Dancer 13:16 7. Shining Sea 17:07 8. Emperor's Last Straw 20:34 9. Rain 25:03 10. Tomorrow 28:17 11. In Prai...
5150 (pronounced "fifty-one-fifty") is the seventh studio album by American rock band Van Halen. It was released on March 24, 1986, by Warner Bros. Records and was the first of four albums to be recorded with lead singer Sammy Hagar, who replaced David Lee Roth. The album was named after Eddie Van Halen's home studio, 5150, in turn named after a California law enforcement term for a mentally disturbed person (a reference to Section 5150 of the California Welfare and Institutions Code). The album hit number 1 on the Billboard 200 chart, surpassing the band's previous album, 1984, which had peaked at number 2 behind Michael Jackson's Thriller album, on which Eddie made a guest appearance. The album was remastered by Donn Landee and released on October 6, 2023 as part of The Collection II;...
The Police's guitarist promotes his photography book, _Throb_ and discusses the current state of the band. And a bonus "Mystery Dinner" ad with Steve O'Donnell, Marie O'Donnell, and Larry "Bud" Melman.
Charles Mingus Quintet - Reincarnation of a Lovebird (1957) Personnel: Jimmy Knepper (trombone), Curtis Porter (alto sax), Wade Legge (piano), Charles Mingus (bass), Dannie Richmond (drums) from the album 'THE CLOWN' (Atlantic Records)
Provided to YouTube by BMG Rights Management (UK) Limited Reincarnation of a Lovebird · Mingus Big Band Gunslinging Birds ℗ 1994 Francis Dreyfus Music SARL, a BMG Company Released on: 2006-11-20 Performer: Mingus Big Band Composer: Charles Mingus Auto-generated by YouTube.
@samarajoysings s’est imposée comme l’une des vocalistes les plus remarquables qui aient éclos ces dernières années sur la scène internationale. Après une prestation remarquée à L'Astrada l'an dernier, ce fut l’occasion pour le chapiteau de découvrir la voix bien timbrée de cette formidable chanteuse, fraîche, exacte, expressive, nuancée, pétrie d’un swing mutin jusque sur les tempos les plus rapides. Samara Joy (voix) Luther Allison (piano) Mikey Migliore (contrebasse) Evan Sherman (batterie) 🎬 Jean-Marc Birraux
Provided to YouTube by The Orchard Enterprises Reincarnation Of a Lovebird · Charles Mingus Pithecanthropus Erectus + The Clown ℗ 2009 Essential Jazz Classics Released on: 2010-10-20 Auto-generated by YouTube.
Provided to YouTube by The Orchard Enterprises Reincarnation of a Lovebird · Charles Mingus Reincarnation of a Lovebird ℗ 2005 Intermusic S.A. Released on: 2016-01-27 Auto-generated by YouTube.
Here's the 5th video from my 'Playing With My Friends' project. We are very close to reaching our Gofundme goal to produce three more videos, please consider donating/sharing here to support artists who have lost income due to the pandemic: https://www.gofundme.com/f/matt-davide-playing-with-my-friends-video-project Thank you to the folks that helped put this video together: Avery Cooper-Alto Saxophone Nate Reit-Trombone Jacob Ungerleider-Keyboard Dan Ryan-Drums Christopher Hawthorn-Sound Mixing Brendan Keogh-Video Editing
Provided to YouTube by Universal Music Group Reincarnation Of A Lovebird · Gil Evans · Steve Lacy Paris Blues ℗ 1988 Decca Records France Released on: 2001-01-01 Composer Lyricist: Charles Mingus Auto-generated by YouTube.
Watch Samara Joy perform live at SFJAZZ: https://www.sfjazz.org/athome/on-demand/samara-joy/ About this clip: GRAMMY-winning singer Samara Joy and her band perform the Charles Mingus composition “Reincarnation of a Lovebird” during their performance on May 17, 2024 — part of the 2023-24 Season and broadcast on Fridays Live. Watch the full performance on SFJAZZ At Home: https://www.sfjazz.org/athome/on-demand/samara-joy/ About this concert: Still in her early 20s, Samara Joy is already setting the music world ablaze. Her 2022 Verve Records debut “Linger Awhile” earned her two well-deserved GRAMMY wins, for Best Jazz Vocal Album and Best New Artist — the first time a jazz musician has won the prestigious newcomer’s award since Esperanza Spalding over a decade ago. Hailing from a fam...
Watch the Vanderbilt University Jazz Combo perform Reincarnation of a Lovebird by Charles Mingus at the 2023 Jack Rudin Jazz Competition! To learn more about Jazz at Lincoln Center, visit us at http://www.jazz.org
Andrew James "Andy" Summers (born 31 December 1942) is an English musician, born in Poulton-le-Fylde, Lancashire. Best known as the guitarist for the rock band The Police, he has also recorded twelve solo albums, collaborated with many other artists, toured extensively under his own name, published several books, and composed several film scores.
During Summers' childhood, his family moved to Bournemouth in Dorset, England. After several years of piano lessons, he took up the guitar at the age of thirteen. By age sixteen he was playing in local clubs and by nineteen he had moved to London with his friend Zoot Money to form Zoot Money's Big Roll Band.
Summers' professional career began in the mid-1960s in London as the guitarist for the British rhythm and blues band Zoot Money's Big Roll Band, which eventually came under the influence of the spreading psychedelic scene and evolved into the acid rock group Dantalian's Chariot.
After the demise of Dantalion's Chariot, Summers joined The Soft Machine for a period of three months and toured the United States. For a brief time in 1968, he was a member of The Animals, then known as Eric Burdon and the Animals, with whom he recorded one album, Love Is. The album features a recording of Traffic's "Coloured Rain", which includes a guitar solo by Summers. The LP also included a reworked version of Dantalion's Chariot's sole single "Madman Running Through the Fields".
Creep in through my window
Dance upon the wall
Come in here beside me
Climb into my soul
Take me to the water,
Down into the cool
Everlasting memory
Everlasting pool
Aching in the darkness
Burning in the sun
Calling from the water
This life has just begun
Strength of blood and muscle
Life of wood and bone
Searching for a fire
Searching for a home...
Home...home...home...
Crouching in the darkness
Hiding in the stone
Trembling in the darkness
This man is not alone
Hit me by the memory
Hurt me to the bone
Make my fists with starlight
Carry me back home...
Home...
(HOME.)
(HOME.) Ay...yah
(HOME.) Ay...yah
Ay...yah
Ay...yah
Ay...yah
Ay...yah (Ay-yah, ay-yah, we say "ay-yah", ay-yah)
Ay...yah (Ay-yah, ay-yah, we say "ay-yah", ay-yah)
Ay...yah (Ay-yah, ay-yah, we say "ay-yah", ay-yah)
Ay...yah (Ay-yah, ay-yah, we say "ay-yah", ay-yah)
Hear them say ay-yah... (Ay-yah, ay-yah, we say "ay-yah", ay-yah)
Hear them say ay-yah... (Ay-yah, ay-yah, we say "ay-yah", ay-yah)