'+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; })); }); -->

The Winstons

The Winstons were an American 1960s funk and soul music group, based in Washington, D.C., United States. They are known for their 1969 recording of an EP featuring a song entitled "Color Him Father" on the A-side, and "Amen, Brother" on the B-side. Half-way into "Amen, Brother", there is a drum solo (performed by G.C. Coleman) which would cause The Winston's EP to become one of the most widely-sampled records in the history of electronic music. Sampled audio clips of the drum solo became known as the Amen Break, which has been used in thousands of tracks in a large number of musical genres, including drum and bass, hip hop,jungle, big beat, industrial and electronica.

The "Color Him Father" record sold over one million copies, and received a gold record awarded by the Recording Industry Association of America on 24 July 1969. It also won a Grammy Award for the Best Rhythm and Blues Song (1969).

Members

The Winstons line-up included:

  • Richard Lewis Spencer (tenor saxophone, lead vocals)
  • Podcasts:

    • The Winstons - Amen Brother

      The most famous loop af all times! "Amen Break," a six-second drum sample( starts at 1:26 ) from the b-side of this chart-topping single from 1969. This sample was used extensively in early hiphop and sample-based music, and became the basis for drum-and-bass and jungle music -- a six-second clip that spawned several entire subcultures. If you want to dive deeper into the evolving role of breakbeats in electronic music, watch this video: https://youtu.be/eJf9Jptq7VY Watch this video about the Amen Break: http://www.youtube.com/watch?v=5SaFTm2bcac The Winstons - Amen, Brother ( http://en.wikipedia.org/wiki/The_Winstons ) Wikipedia Source: "The Winstons were a 1960s funk and soul music group, based in Washington, D.C.. They are known for their 1969 recording of an EP featuring a song en...

      published: 05 May 2009
    • The Winstons - Color Him Father 1969

      published: 16 Jun 2013
    • The 'Amen Break' from 'Amen, Brother' by The Winstons

      This is the famous Amen Break from the song 'Amen, Brother' by The Winstons. It has been recreated and reused in countless times since it's creation by many famous acts. It is also famous for matching the golden ratio exactly. If you would like to learn more about this, please see the link below for the article. AMEN BREAK & GOLDEN RATIO ARTICLE: http://www.constructingtheuniverse.com/Amen%20Break%20and%20GR.html

      published: 07 Apr 2014
    • The Winstons Performing "Color Him Father"

      The Winstons Performing The National Anthem Of Fathers Day"Color Him Father"

      published: 05 Dec 2009
    • Color Him Father

      Provided to YouTube by The Orchard Enterprises Color Him Father · The Winstons Color Him Father ℗ 1969 Originally Released © Metromedia Records WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws Released on: 1969-12-15 Auto-generated by YouTube.

      published: 21 Apr 2017
    • The Winstons - Amen, Brother (the most sampled drum groove ever)

      The Winstons were a funk and soul band that became notorious thanks to the B side of their 1969 single "Color Him Father / Amen, Brother". "Amen, Brother" features the 7-second solo drum performance that went to become the most sampled drum groove ever, known as the "Amen Break". Played by G.C. Coleman (1944 - 2006), who sadly never received any royalties from the widespread usage of his recording. Original 1969 pressing on Metromedia Records. Although both labels of the single state "stereo", only "Color Him Father" is actually stereo. "Amen, Brother" is a mono recording. Numark TTXUSB turntable - Nagaoka MP-500 phono cartridge - ART DJPRE II phono stage preamp - Vinyl record vinilo 45 RPM

      published: 09 Nov 2018
    • The Winstons - Never Never Never (Official Video)

      The Winstons - Never Never Never (Official Video) - Follow The Winstons: Spotify: https://open.spotify.com/intl-it/artist/79bZnIkljhIWtdEu5fL0eK Instagram: https://www.instagram.com/the_winstons_vision/ Facebook: https://www.facebook.com/thewinstons1/ YouTube: https://www.youtube.com/channel/UC8rrWBnNn_2hiD_tNq4lRjw - Directed and edited | Roberto Delvoi Original story | Nina Dellera Cinematographer | Nicola Righetti Camera | Stefano Marietti Camera assistant | Nicolò Gabbana Produced by | Ipnose Studio Co-production | Brand Gnu Titles | Pazzi Design Studio Special Thanks to | Angie and Olly Martinetti, Antonio Ferretti, Carlo Giardina, Bruce Labbruzzo, Baobab Music, Cris Scarola, Ashlley Walliss, Arrigo Costumi, Il CapPellerito Hats - Never Never Never © 2024 - Recorded in Milano at "S...

      published: 04 Jun 2024
    • The Winstons/The Stranglers _ Golden Brown (A_SIDE)

      The Winstons a 45'' new release from AMS records, available on 24th august 2016    A twin music documentaries. "Just two days in London, before Leaving…" A_SIDE: Golden Brown (The Strangles)     B_SIDE: Black Shopping Bag (The Winstons)    video editing Enro Winston video shots Michele Formica   press  Fleisch Agency_Nora/Alberto/Clara/Francesco nora@fleisch-agency.com gigs Cristian Scarola_Scarrymonster booking@scarrymonster.com label Matthias Scheller's AMS records   organization & happiness Cristopher Bacco sound manager Francesco "Cecco" Bruni Studio 2, Padua, IT   recording live on tape by Luke Oldfield at Tilehouse, London, UK (may 29-30th 2016) overdubs by  Alessandro "Asso" Stefana at  Town Hall Hotel, London, UK   doubling and editing Carlo Zollo at Terribile Studio, M...

      published: 09 Aug 2016
    • The Winstons - 01 - Golden Brown

      There are no words to describe the hyper-productivity of what we might call, with no half measures, THE band of 2016: The Winstons, with this 7-inch, reach a total of three releases in just nine months, following the self-titled debut and last spring “Live in Rome”. Considering each bandmember’s commitments – you know who they are: Enrico Gabrielli, Roberto Dell’Era and Lino Gitto – divided among their main bands and some extra collaborations, the result is even more surprising. This 45rpm includes two songs. Side A contains a ‘winston-ish’ version of the popular “Golden Brown” by The Stranglers, while as a B-side we find a brand-new song which brings us back to a magical 5-year period between 1967 and 1972, across psychedelia and progressive rock, two subjects that the trio dominates with...

      published: 02 Sep 2016
    The Winstons - Amen Brother
    2:33

    The Winstons - Amen Brother

    • Order:
    • Duration: 2:33
    • Uploaded Date: 05 May 2009
    • views: 5537447
    The most famous loop af all times! "Amen Break," a six-second drum sample( starts at 1:26 ) from the b-side of this chart-topping single from 1969. This sample was used extensively in early hiphop and sample-based music, and became the basis for drum-and-bass and jungle music -- a six-second clip that spawned several entire subcultures. If you want to dive deeper into the evolving role of breakbeats in electronic music, watch this video: https://youtu.be/eJf9Jptq7VY Watch this video about the Amen Break: http://www.youtube.com/watch?v=5SaFTm2bcac The Winstons - Amen, Brother ( http://en.wikipedia.org/wiki/The_Winstons ) Wikipedia Source: "The Winstons were a 1960s funk and soul music group, based in Washington, D.C.. They are known for their 1969 recording of an EP featuring a song entitled "Color Him Father" on the A-side, and a song entitled "Amen, Brother" on the B-side. Half-way into "Amen, Brother", there is a drum solo (performed by G.C. Coleman) which would cause The Winston's EP to become one of the most widely-sampled records in the history of electronic music. Sampled audio clips of the drum solo became known as the Amen Break, which has been used in thousands of tracks in a large number of musical genres, including drum and bass, hip hop, jungle, big beat, industrial and electronica. The "Color Him Father" record sold over one million copies, and received a gold record awarded by the Recording Industry Association of America on 24 July 1969." Label : (Metromedia Records, BMI) Biography by Ron Wynn & Bruce Eder : A Washington, D.C.-based soul act led by Richard Spencer, the Winstons signed to Curtom in early 1968 and lasted there for one single, the rousing "Need a Replacement." They had a sound that was somewhat similar to the Impressions, but were unfortunate enough to have signed with Curtom before the label had national distribution, and the single never got the play it should have. A year after leaving Curtom, they hit for the Metromedia label with a huge single called "Color Him Father," which became a Top Ten R&B and pop hit, just missing number one on the R&B list, and also earned a Grammy for Best R&B Song. It was both a great tribute number and outstanding lead vocal from Richard Spencer, along with Ray Maritano, Quincy Mattison, Phil Tolotta, Sonny Peckrol, and G.C. Coleman. Mattison and Coleman were veterans of Otis Redding's band. The Winstons eventually toured as the backup band for the Impressions, but never again made any noise on the charts. The Winstons line-up included: Gregory C. Coleman (vocals, drums) Ray Maritano (vocals, alto saxophone) Quincy Mattison (vocals, lead guitar) Sonny Pekerol (vocals, bass guitar) Richard Lewis Spencer (lead vocals, tenor saxophone) Phil Tolotta (second lead, organ) DISCLAIMER: I don't own the music/videos and i don't take any credit of any track/videos i uploaded on this channel. All materials uploaded are only for promotion and not monetized. If any producer or label has an issue with any of the uploads please get in contact with me and I will delete it immediately. Email: Upliftingwaves@gmail.com
    https://wn.com/The_Winstons_Amen_Brother
    The Winstons - Color Him Father 1969
    3:15

    The Winstons - Color Him Father 1969

    • Order:
    • Duration: 3:15
    • Uploaded Date: 16 Jun 2013
    • views: 1537870
    https://wn.com/The_Winstons_Color_Him_Father_1969
    The 'Amen Break' from 'Amen, Brother' by The Winstons
    0:08

    The 'Amen Break' from 'Amen, Brother' by The Winstons

    • Order:
    • Duration: 0:08
    • Uploaded Date: 07 Apr 2014
    • views: 670481
    This is the famous Amen Break from the song 'Amen, Brother' by The Winstons. It has been recreated and reused in countless times since it's creation by many famous acts. It is also famous for matching the golden ratio exactly. If you would like to learn more about this, please see the link below for the article. AMEN BREAK & GOLDEN RATIO ARTICLE: http://www.constructingtheuniverse.com/Amen%20Break%20and%20GR.html
    https://wn.com/The_'Amen_Break'_From_'Amen,_Brother'_By_The_Winstons
    The Winstons Performing "Color Him Father"
    3:05

    The Winstons Performing "Color Him Father"

    • Order:
    • Duration: 3:05
    • Uploaded Date: 05 Dec 2009
    • views: 363769
    The Winstons Performing The National Anthem Of Fathers Day"Color Him Father"
    https://wn.com/The_Winstons_Performing_Color_Him_Father
    Color Him Father
    3:11

    Color Him Father

    • Order:
    • Duration: 3:11
    • Uploaded Date: 21 Apr 2017
    • views: 414446
    Provided to YouTube by The Orchard Enterprises Color Him Father · The Winstons Color Him Father ℗ 1969 Originally Released © Metromedia Records WARNING: All Rights Reserved. Unauthorized duplication is a violation of applicable laws Released on: 1969-12-15 Auto-generated by YouTube.
    https://wn.com/Color_Him_Father
    The Winstons - Amen, Brother (the most sampled drum groove ever)
    2:52

    The Winstons - Amen, Brother (the most sampled drum groove ever)

    • Order:
    • Duration: 2:52
    • Uploaded Date: 09 Nov 2018
    • views: 1417
    The Winstons were a funk and soul band that became notorious thanks to the B side of their 1969 single "Color Him Father / Amen, Brother". "Amen, Brother" features the 7-second solo drum performance that went to become the most sampled drum groove ever, known as the "Amen Break". Played by G.C. Coleman (1944 - 2006), who sadly never received any royalties from the widespread usage of his recording. Original 1969 pressing on Metromedia Records. Although both labels of the single state "stereo", only "Color Him Father" is actually stereo. "Amen, Brother" is a mono recording. Numark TTXUSB turntable - Nagaoka MP-500 phono cartridge - ART DJPRE II phono stage preamp - Vinyl record vinilo 45 RPM
    https://wn.com/The_Winstons_Amen,_Brother_(The_Most_Sampled_Drum_Groove_Ever)
    The Winstons - Never Never Never (Official Video)
    4:17

    The Winstons - Never Never Never (Official Video)

    • Order:
    • Duration: 4:17
    • Uploaded Date: 04 Jun 2024
    • views: 1526
    The Winstons - Never Never Never (Official Video) - Follow The Winstons: Spotify: https://open.spotify.com/intl-it/artist/79bZnIkljhIWtdEu5fL0eK Instagram: https://www.instagram.com/the_winstons_vision/ Facebook: https://www.facebook.com/thewinstons1/ YouTube: https://www.youtube.com/channel/UC8rrWBnNn_2hiD_tNq4lRjw - Directed and edited | Roberto Delvoi Original story | Nina Dellera Cinematographer | Nicola Righetti Camera | Stefano Marietti Camera assistant | Nicolò Gabbana Produced by | Ipnose Studio Co-production | Brand Gnu Titles | Pazzi Design Studio Special Thanks to | Angie and Olly Martinetti, Antonio Ferretti, Carlo Giardina, Bruce Labbruzzo, Baobab Music, Cris Scarola, Ashlley Walliss, Arrigo Costumi, Il CapPellerito Hats - Never Never Never © 2024 - Recorded in Milano at "STUDIO BACH" by Carlo Giardina
    https://wn.com/The_Winstons_Never_Never_Never_(Official_Video)
    The Winstons/The Stranglers _ Golden Brown (A_SIDE)
    3:23

    The Winstons/The Stranglers _ Golden Brown (A_SIDE)

    • Order:
    • Duration: 3:23
    • Uploaded Date: 09 Aug 2016
    • views: 35989
    The Winstons a 45'' new release from AMS records, available on 24th august 2016    A twin music documentaries. "Just two days in London, before Leaving…" A_SIDE: Golden Brown (The Strangles)     B_SIDE: Black Shopping Bag (The Winstons)    video editing Enro Winston video shots Michele Formica   press  Fleisch Agency_Nora/Alberto/Clara/Francesco nora@fleisch-agency.com gigs Cristian Scarola_Scarrymonster booking@scarrymonster.com label Matthias Scheller's AMS records   organization & happiness Cristopher Bacco sound manager Francesco "Cecco" Bruni Studio 2, Padua, IT   recording live on tape by Luke Oldfield at Tilehouse, London, UK (may 29-30th 2016) overdubs by  Alessandro "Asso" Stefana at  Town Hall Hotel, London, UK   doubling and editing Carlo Zollo at Terribile Studio, Milan, IT   mixing  Rob Winston, Linnon Winston, Michele "Gas" Castagna at Bluescore Studio, Milan, IT thewinstonsmusic@gmail.com https://www.facebook.com/thewinstons1/   Tour dates AGOSTO Merc 24 @ Masseria Ospitale – Lecce Gio 25 @ Eremo Club – Molfetta Dom 28 @ Dalla Cira – Produzioni – Pesaro SETTEMBRE Merc 7 @ Live Rock Festival Acquaviva – Siena Giov 8 @ Lido Mad Hops – Marone (BS) Ven 9 @ Cap10100 – Torino Merc 14 @ Magnolia, Milano Giov 15 @ Cubo, Parma Ven 16 @ LIO BAR – Brescia Ven 23 @ Locomotive Club – Bologna Sab 24 @ Children Of The Beach – Spotorno Rock Festival – Spotorno (Savona) OTTOBRE Sab 1 @ PSYCH FEST – MONK Roma "Navigando il battello Winstons sulle pericolose acque dell'improvvisazione e dell'anarchia, i fratelli Linnon e Rob approdano nella vecchia Londonium senza strumenti di bordo e carte di navigazione musicale per raggiungere Enro Winstons che si trova nel mezzo delle reharsals con altri ufficiali di alto bordo dell'amica Polly. Nello spazio di tre giorni tra una performance lastricata e blitz pirateschi notturni riescono a raggiungere il cottage del tubolare Luke Oldfield che in qualche oretta li aiuta a registrare su nastro nautico 2 brani. L'indomani li si sentiva cantare " Everytime ➡ just ⬅like the last, on her ship tied to the mast." mentre si sorreggevano e si salutavano ognuno per riprendere il proprio mare. Il disco di plastica è arrivato e sarà distribuito al pubblico ad ogni porto in cui faranno tappa partire dal 24 Agosto."
    https://wn.com/The_Winstons_The_Stranglers_Golden_Brown_(A_Side)
    The Winstons - 01 - Golden Brown
    3:13

    The Winstons - 01 - Golden Brown

    • Order:
    • Duration: 3:13
    • Uploaded Date: 02 Sep 2016
    • views: 4179
    There are no words to describe the hyper-productivity of what we might call, with no half measures, THE band of 2016: The Winstons, with this 7-inch, reach a total of three releases in just nine months, following the self-titled debut and last spring “Live in Rome”. Considering each bandmember’s commitments – you know who they are: Enrico Gabrielli, Roberto Dell’Era and Lino Gitto – divided among their main bands and some extra collaborations, the result is even more surprising. This 45rpm includes two songs. Side A contains a ‘winston-ish’ version of the popular “Golden Brown” by The Stranglers, while as a B-side we find a brand-new song which brings us back to a magical 5-year period between 1967 and 1972, across psychedelia and progressive rock, two subjects that the trio dominates with a stunning spontaneity. Recorded in a single day at Tilehouse Studios in London this release is going to quickly become a rare collector’s item for sure. Unstoppable and unpredictable, The Winstons add an important piece to a rapidly growing discography, as well as a further confirmation of their excellent health status! (Available on http://www.btf.it/) 7” tracklist: Side A: 1.Golden Brown (The Stranglers) Side B: 2.Black Shopping Bag (C) AMS Records http://www.ams-records.it/
    https://wn.com/The_Winstons_01_Golden_Brown
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Winstons - Amen Brother
      2:33
      The Winstons - Amen Brotherremove from playlist
    • The 'Amen Break' from 'Amen, Brother' by The Winstons
      0:08
      The 'Amen Break' from 'Amen, Brother' by The Winstonsremove from playlist
    • The Winstons Performing
      3:05
      The Winstons Performing "Color Him Father"remove from playlist
    • Color Him Father
      3:11
      Color Him Fatherremove from playlist
    • The Winstons - Amen, Brother (the most sampled drum groove ever)
      2:52
      The Winstons - Amen, Brother (the most sampled drum groove ever)remove from playlist
    • The Winstons - Never Never Never (Official Video)
      4:17
      The Winstons - Never Never Never (Official Video)remove from playlist
    • The Winstons/The Stranglers _ Golden Brown (A_SIDE)
      3:23
      The Winstons/The Stranglers _ Golden Brown (A_SIDE)remove from playlist
    • The Winstons - 01 - Golden Brown
      3:13
      The Winstons - 01 - Golden Brownremove from playlist
    PLAYLIST TIME: 0:00 / 25:57

    The Winstons - Amen Brother

    The most famous loop af all times! "Amen Break," a six-second drum sample( starts at 1:26 ) from the b-side of this chart-topping single from 1969. This sample was used extensively in early hiphop and sample-based music, and became the basis for drum-and-bass and jungle music -- a six-second clip that spawned several entire subcultures. If you want to dive deeper into the evolving role of breakbeats in electronic music, watch this video: https://youtu.be/eJf9Jptq7VY Watch this video about the Amen Break: http://www.youtube.com/watch?v=5SaFTm2bcac The Winstons - Amen, Brother ( http://en.wikipedia.org/wiki/The_Winstons ) Wikipedia Source: "The Winstons were a 1960s funk and soul music group, based in Washington, D.C.. They are known for their 1969 recording of an EP featuring a song entitled "Color Him Father" on the A-side, and a song entitled "Amen, Brother" on the B-side. Half-way into "Amen, Brother", there is a drum solo (performed by G.C. Coleman) which would cause The Winston's EP to become one of the most widely-sampled records in the history of electronic music. Sampled audio clips of the drum solo became known as the Amen Break, which has been used in thousands of tracks in a large number of musical genres, including drum and bass, hip hop, jungle, big beat, industrial and electronica. The "Color Him Father" record sold over one million copies, and received a gold record awarded by the Recording Industry Association of America on 24 July 1969." Label : (Metromedia Records, BMI) Biography by Ron Wynn & Bruce Eder : A Washington, D.C.-based soul act led by Richard Spencer, the Winstons signed to Curtom in early 1968 and lasted there for one single, the rousing "Need a Replacement." They had a sound that was somewhat similar to the Impressions, but were unfortunate enough to have signed with Curtom before the label had national distribution, and the single never got the play it should have. A year after leaving Curtom, they hit for the Metromedia label with a huge single called "Color Him Father," which became a Top Ten R&B and pop hit, just missing number one on the R&B list, and also earned a Grammy for Best R&B Song. It was both a great tribute number and outstanding lead vocal from Richard Spencer, along with Ray Maritano, Quincy Mattison, Phil Tolotta, Sonny Peckrol, and G.C. Coleman. Mattison and Coleman were veterans of Otis Redding's band. The Winstons eventually toured as the backup band for the Impressions, but never again made any noise on the charts. The Winstons line-up included: Gregory C. Coleman (vocals, drums) Ray Maritano (vocals, alto saxophone) Quincy Mattison (vocals, lead guitar) Sonny Pekerol (vocals, bass guitar) Richard Lewis Spencer (lead vocals, tenor saxophone) Phil Tolotta (second lead, organ) DISCLAIMER: I don't own the music/videos and i don't take any credit of any track/videos i uploaded on this channel. All materials uploaded are only for promotion and not monetized. If any producer or label has an issue with any of the uploads please get in contact with me and I will delete it immediately. Email: Upliftingwaves@gmail.com
    2:33
    The Winstons - Amen Brother
    The most famous loop af all times! "Amen Break," a six-second drum sample( starts at 1:26 ...
    published: 05 May 2009
    Play in Full Screen
    3:15
    The Winstons - Color Him Father 1969
    published: 16 Jun 2013
    Play in Full Screen
    0:08
    The 'Amen Break' from 'Amen, Brother' by The Winstons
    This is the famous Amen Break from the song 'Amen, Brother' by The Winstons. It has been r...
    published: 07 Apr 2014
    Play in Full Screen
    3:05
    The Winstons Performing "Color Him Father"
    The Winstons Performing The National Anthem Of Fathers Day"Color Him Father"
    published: 05 Dec 2009
    Play in Full Screen
    3:11
    Color Him Father
    Provided to YouTube by The Orchard Enterprises Color Him Father · The Winstons Color Him...
    published: 21 Apr 2017
    Play in Full Screen
    2:52
    The Winstons - Amen, Brother (the most sampled drum groove ever)
    The Winstons were a funk and soul band that became notorious thanks to the B side of their...
    published: 09 Nov 2018
    Play in Full Screen
    4:17
    The Winstons - Never Never Never (Official Video)
    The Winstons - Never Never Never (Official Video) - Follow The Winstons: Spotify: https:...
    published: 04 Jun 2024
    Play in Full Screen
    3:23
    The Winstons/The Stranglers _ Golden Brown (A_SIDE)
    The Winstons a 45'' new release from AMS records, available on 24th august 2016    A twin...
    published: 09 Aug 2016
    Play in Full Screen
    3:13
    The Winstons - 01 - Golden Brown
    There are no words to describe the hyper-productivity of what we might call, with no half ...
    published: 02 Sep 2016
    Play in Full Screen

    The Winstons

    The Winstons were an American 1960s funk and soul music group, based in Washington, D.C., United States. They are known for their 1969 recording of an EP featuring a song entitled "Color Him Father" on the A-side, and "Amen, Brother" on the B-side. Half-way into "Amen, Brother", there is a drum solo (performed by G.C. Coleman) which would cause The Winston's EP to become one of the most widely-sampled records in the history of electronic music. Sampled audio clips of the drum solo became known as the Amen Break, which has been used in thousands of tracks in a large number of musical genres, including drum and bass, hip hop,jungle, big beat, industrial and electronica.

    The "Color Him Father" record sold over one million copies, and received a gold record awarded by the Recording Industry Association of America on 24 July 1969. It also won a Grammy Award for the Best Rhythm and Blues Song (1969).

    Members

    The Winstons line-up included:

  • Richard Lewis Spencer (tenor saxophone, lead vocals)
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×