- published: 29 Jun 2016
- views: 570304
'+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; })); }); -->
Mother's Finest is a pioneering American funk rock band founded in Atlanta, Georgia, by the vocal duo of Joyce "Baby Jean" Kennedy and Glenn "Doc" Murdock in 1970 when the pair met up with guitarist Gary "Moses Mo" Moore and bassist Jerry "Wyzard" Seay. Their music is a blend of funky rhythms, heavy rock guitars and expressive soul/R&B-style vocals.
The group charted with the singles "Fire" (No. 93 Pop Singles), "Baby Love" (No. 79 Black Singles, No. 58 Pop Singles), "Don't Wanna Come Back" (No. 54 Black Singles), "Love Changes" (No. 26 Black Singles), and "Piece of the Rock" in the mid- to late 1970s.
Mother's Finest issued its debut album Mother's Finest in 1972 on RCA; a second album for RCA remained unreleased until it surfaced as bonus tracks on the 2010 Wounded Bird re-issue of Mother's Finest. The group signed a new contract with Epic Records and released its sophomore effort, also titled Mother's Finest, in 1976, stirring up controversy with the ironic "Niggizz Can't Sang Rock 'n' Roll." Riding a wave of success, the band's next three albums, Another Mother Further (1977), Mother Factor (1978) and Mother’s Finest Live (1979), all went gold, helped along by heavy touring opening for the likes of Ted Nugent, Black Sabbath, The Who, Aerosmith and AC/DC.
Mother's Finest is the official debut album by Atlanta funk-rock group Mother's Finest. It was released in 1972 on RCA records but banned by the band. The vinyl album is very hard to find and not released on CD.
"Take Me" is a song written by George Jones and Leon Payne. Jones originally released the song on the Musicor label in 1966 and scored a No. 8 hit. However, the song is best remembered for being the first single release by Jones and his third wife Tammy Wynette in 1971 on Epic Records. That version was also a top ten hit, peaking at No. 9.
Jones wrote "Take Me" with Leon Payne, who is perhaps best known for his hits "I Love You Because", "You've Still Got a Place in My Heart", and for the two songs of his Hank Williams recorded: "Lost Highway" and "They'll Never Take Her Love from Me". Jones would release an LP of Payne songs himself in 1971. The original version of "Take Me", a love song espousing optimism and unwavering devotion, actually sounded very much like a pop song for the time, featuring a prominent, lilting acoustic guitar and one of the most unusually stunning vocal performances Jones ever recorded. During the song, Jones makes more than a half dozen syllables out of the word "loss," in what would become a much imitated (and parodied) singing style. In his autobiography I Lived to Tell It All, Jones recalled, "When I was at Musicor, I might record an entire album in three hours, a practice that violated the musician's union's rules. I'd go through one take...Yet I recorded some of my biggest songs in that casual fashion, including 'Take Me'..."
Take Me is the title of a 2001 British television drama miniseries on ITV, starring Robson Green and Beth Goddard.
Take Me was produced by STV Productions (then known as "SMG TV Productions") and Coastal. It was filmed between October and December 2000 and first broadcast in the UK on 5 August 2001. Alex Pillai was the programmes' director.
Jack and Kay Chambers are thrilled when the residents of Hadleigh Corner welcome them to their new home with open arms. But then the neighbours invite them to share their beds too. When Jack and Kay Chambers leave their city apartment for an exclusive housing estate, they hope to save their ailing marriage. Hadleigh Corner is the rural idyll of their dreams and the newly built house is the perfect symbol of their fresh start.
At first, all is rosy. The villagers are warm and welcoming and the party invitations are flowing. Even their children seem more settled. But as Jack and Kay try to rebuild their relationship, they discover their new neighbours are anything but normal. What starts as a cosy dinner party suddenly turns into a night of adult party games with absolutely no limits. What's more, the perfectly polished and manicured estate hides a terrible deathly secret. As the truth about Hadleigh Corner is revealed, Jack and Kay are torn apart and caught up in a nightmare, which will change their lives forever.
"Take Me" is a song recorded by Frank Sinatra with the Tommy Dorsey Band in 1942.
@MIG Shop: www.mig-music-shop.de MOTHER'S FINEST - Live At Rockpalast By the 1970s, taboos were beginning to fall from society, but many taboos were still firmly in place. In 1977 Mother’s Finest released their now much-sought after album “Mother’s Finest” that included the song “Niggizz Can’t Sing Rock And Roll”. This title shocked and scandalized the church community: An influential and powerful preacher read the band he riot act and so they decided to remove the song from their live act. The song, however, exactly expressed what he group felt: The band founders wanted to create a mixture of black funk and white rock ‘n’ roll, so as to win over black and white audiences. Sitting in Christian Wagner’s car (Christian Wagner was Rockpalast’s director from the very start) we heard the...
Joyce "Baby Jean" Kennedy -- vocals Glenn "Doc" Murdock -- vocals Gary "Moses Mo" Moore -- guitar Barry "B.B. Queen" Borden -- drums Jerry "Wyzard" Seay -- bass Mike Keck -- keyboards
Artist: Mothers Finest Title: Piece Of The Rock Broadcast date: 3-6-1978 TV program: TopPop Video rights: AVRO http://www.avro.tv gives you easy access to unique footage. . TopPop was the first regular dedicated pop music TV show in the Dutch language area. Dutch broadcaster AVRO aired the programme weekly, from 1970 to 1988. Presenter Ad Visser hosted the show for its first fifteen years. World famous music artists performed on TopPop: ABBA, 10CC, Bee Gees, The Jacksons, David Bowie, Earth & Fire, Boney M, Smokie, KC & The Sunshine Band, Chick, Donna Summer, Rod Stewart, and many many more. Watch our great music videos ❯ https://goo.gl/1mU5Ns More TopPop? Subscribe here ❯ https://goo.gl/GggHDi More info on Wikipedia ❯ http://goo.gl/RO1s74 Great images ❯ https://goo.gl/HuIwTy PL...
Provided to YouTube by Epic Love Changes · Mother's Finest Mother Factor ℗ 1978 Epic Records, a division of Sony Music Entertainment Released on: 1989-10-24 Piano, Arranger, Composer, Lyricist, Mixing Engineer, Producer: Skip Scarborough Background Vocal, Percussion, Vocal: Joyce Baby Engineer, Mixing Engineer: Don Cody Background Vocal, Percussion, Vocal: Jean Kennedy Assistant Engineer: Rodney Mills Background Vocal, Vocal: Glenn Murdock Background Vocal, Bass, Guitar, Percussion: Moses Mo Keyboards, Percussion: Mike Drums, Percussion: BB Queen Auto-generated by YouTube.
Artist: Mothers Finest Title: Mickey's Monkey Broadcast date: 1-6-1978 TV program: TopPop Video rights: AVRO http://www.avro.tv gives you easy access to unique footage. . TopPop was the first regular dedicated pop music TV show in the Dutch language area. Dutch broadcaster AVRO aired the programme weekly, from 1970 to 1988. Presenter Ad Visser hosted the show for its first fifteen years. World famous music artists performed on TopPop: ABBA, 10CC, Bee Gees, The Jacksons, David Bowie, Earth & Fire, Boney M, Smokie, KC & The Sunshine Band, Chick, Donna Summer, Rod Stewart, and many many more. Watch our great music videos ❯ https://goo.gl/1mU5Ns More TopPop? Subscribe here ❯ https://goo.gl/GggHDi More info on Wikipedia ❯ http://goo.gl/RO1s74 Great images ❯ https://goo.gl/HuIwTy PLEA...
Mother's Finest-"Piece of the Rock" Mother's Finest is: Joyce "Baby Jean" Kennedy -- lead & backing vocal Glenn Murdock -- lead & backing vocal Gary "Moses Mo" Moore -- guitars Mike Keck -- keyboards Jerry "Wyzard" Seay -- bass Barry "B.B. Queen" Borden -- drums
I see that its the wrong album cover. My apologies, and meant no dis to Mother's Finest. I can't change the photo without deleting the video. So, Pay for their music where you can, and enjoy the vibe. Peace I own no copy right nor claims to this music but..... I'm accepting donations with my cashapp: cash.app/$asebuttah
Mother's Finest is an American rock band founded in Atlanta, Georgia, by the vocal duo of Joyce "Baby Jean" Kennedy and Glenn "Doc" Murdock in 1970 when the pair met up with guitarist Gary "Moses Mo" Moore and bassist Jerry "Wyzard" Seay. Their music is a blend of funky rhythms, heavy rock guitars and expressive soul/R&B-style vocals. The group charted with the singles "Fire" (No. 93 Pop Singles), "Baby Love" (No. 79 Black Singles, No. 58 Pop Singles), "Don't Wanna Come Back" (No. 54 Black Singles), "Love Changes" (No. 26 Black Singles), and "Piece of the Rock" in the mid- to late 1970s. Mother's Finest issued its debut album Mother's Finest in 1972 on RCA; a second album for RCA remained unreleased until it surfaced as bonus tracks on the 2010 Wounded Bird re-issue of Mother's Finest. T...
Provided to YouTube by Epic Baby Love · Mother's Finest Another Mother Further ℗ 1977 Epic Records, a division of Sony Music Entertainment Released on: 1989-06-13 Composer, Lyricist: Glenn Murdock Composer, Lyricist: Joyce Kennedy Composer, Lyricist: Michael Keck Composer, Lyricist: Jerry Seay Composer, Lyricist: Gary Moore Composer, Lyricist: Barry Borden Auto-generated by YouTube.
I cannot say enough to adequately express how special this group is or how much they mean to me personally. I have an emotional attachment to this song, because it was the first one I heard by Mother's Finest and it made me an instant fan. Any person that is building a music collection would do well to buy several of this groups C.D.s, Albums (and/or) mp3s.
@MIG Shop: www.mig-music-shop.de MOTHER'S FINEST - Live At Rockpalast By the 1970s, taboos were beginning to fall from society, but many taboos were still firmly in place. In 1977 Mother’s Finest released their now much-sought after album “Mother’s Finest” that included the song “Niggizz Can’t Sing Rock And Roll”. This title shocked and scandalized the church community: An influential and powerful preacher read the band he riot act and so they decided to remove the song from their live act. The song, however, exactly expressed what he group felt: The band founders wanted to create a mixture of black funk and white rock ‘n’ roll, so as to win over black and white audiences. Sitting in Christian Wagner’s car (Christian Wagner was Rockpalast’s director from the very start) we heard the...
Provided to YouTube by Epic Baby Love · Mother's Finest Another Mother Further ℗ 1977 Epic Records, a division of Sony Music Entertainment Released on: 1989-06-13 Composer, Lyricist: Glenn Murdock Composer, Lyricist: Joyce Kennedy Composer, Lyricist: Michael Keck Composer, Lyricist: Jerry Seay Composer, Lyricist: Gary Moore Composer, Lyricist: Barry Borden Auto-generated by YouTube.
Joyce "Baby Jean" Kennedy -- vocals Glenn "Doc" Murdock -- vocals Gary "Moses Mo" Moore -- guitar Barry "B.B. Queen" Borden -- drums Jerry "Wyzard" Seay -- bass Mike Keck -- keyboards
Mother's Finest - "Live" 1979 full album 1. Somebody to love - 0:01 2. Fire - 5:54 3. Mickey's Monkey - 10:05 4. Give you all the Love - 16:08 5. Baby Love - 22:39 6. Magic Carpet Ride - 26:53 7. Love changes - 32:03 8. Watch my Stylin' - 37:26 9. Don't wanna come back - 42:11 10. Can't fight the Feeling - 45:39 My REEL-TO-REEL Collection (VDL-VLA). Old School Music.
Provided to YouTube by Epic I Can't Believe · Mother's Finest Mother Factor ℗ 1978 Sony Music Entertainment Inc. Released on: 1989-10-24 Composer, Lyricist: Jimmy Kennedy Piano, Mixing Engineer, Producer: Skip Scarborough Background Vocal, Percussion, Vocal: Joyce Baby Engineer, Mixing Engineer: Don Cody Background Vocal, Percussion, Vocal: Jean Kennedy Assistant Engineer: Rodney Mills Background Vocal, Vocal: Glenn Murdock Background Vocal, Bass, Guitar, Percussion: Moses Mo Keyboards, Percussion: Mike Drums, Percussion: BB Queen Auto-generated by YouTube.
Mother's Finest is an American rock band founded in Atlanta, Georgia, by the vocal duo of Joyce "Baby Jean" Kennedy and Glenn "Doc" Murdock in 1970 when the pair met up with guitarist Gary "Moses Mo" Moore and bassist Jerry "Wyzard" Seay. Their music is a blend of funky rhythms, heavy rock guitars and expressive soul/R&B-style vocals. The group charted with the singles "Fire" (No. 93 Pop Singles), "Baby Love" (No. 79 Black Singles, No. 58 Pop Singles), "Don't Wanna Come Back" (No. 54 Black Singles), "Love Changes" (No. 26 Black Singles), and "Piece of the Rock" in the mid- to late 1970s. Mother's Finest issued its debut album Mother's Finest in 1972 on RCA; a second album for RCA remained unreleased until it surfaced as bonus tracks on the 2010 Wounded Bird re-issue of Mother's Finest. T...
Provided to YouTube by Epic Micky's Monkey · Mother's Finest Another Mother Further ℗ 1977 Sony Music Entertainment Inc. Released on: 1989-06-13 Composer, Lyricist: Eddie Holland Percussion, Producer: Tom Werman Composer, Lyricist: Lamont Dozier Vocal: Joyce "Baby Jean" Kennedy Background Vocal, Vocal: Glenn Baily Murdock III Producer: Mother's Finest for Tisra-Til Productions Engineer: Barry Burnett Background Vocal: Joyce "Baby Jean" Kennedy Mixing Engineer: Tony Reale Recording Engineer: Milan Bogden Background Vocal, Bass: Jerry "Wizzard" Seay Guitar: Moses Mo Percussion: Joe Lala Drums: BB Queen Borden Keyboards: Mike Keck Auto-generated by YouTube.
Artist: Mothers Finest Title: Piece Of The Rock Broadcast date: 3-6-1978 TV program: TopPop Video rights: AVRO http://www.avro.tv gives you easy access to unique footage. . TopPop was the first regular dedicated pop music TV show in the Dutch language area. Dutch broadcaster AVRO aired the programme weekly, from 1970 to 1988. Presenter Ad Visser hosted the show for its first fifteen years. World famous music artists performed on TopPop: ABBA, 10CC, Bee Gees, The Jacksons, David Bowie, Earth & Fire, Boney M, Smokie, KC & The Sunshine Band, Chick, Donna Summer, Rod Stewart, and many many more. Watch our great music videos ❯ https://goo.gl/1mU5Ns More TopPop? Subscribe here ❯ https://goo.gl/GggHDi More info on Wikipedia ❯ http://goo.gl/RO1s74 Great images ❯ https://goo.gl/HuIwTy PL...
1. 00:00 – Mickey’s Monkey 2. 04:49 – Baby Love 3. 09:16 – Thank You For The Love 4. 14:22 – Piece Of The Rock
This is beautiful. It's from the wonderful "A Poem is a Naked Person," a documentary about Leon Russell. I highly recommend you rent or purchase it.
George Jones & Tammy Wynette -- Take Me requested by Muzikgirl67 subscribe to her channel, listen to her great playlist's https://www.youtube.com/user/Muzikgirl67
Provided to YouTube by The Orchard Enterprises Take Me · George Jones George Jones Sings Country Hits (Digitally Remastered) ℗ 2010 Essential Media Group LLC Released on: 2010-01-19 Screenplay Author: G. Jones Screenplay Author: L. Payne Auto-generated by YouTube.
"Take Me" is a song written by George Jones and Leon Payne. Jones originally released the song on the Musicor label in 1966 and scored a No. 8 hit. However, the song is best remembered for being the first single release by Jones and his third wife Tammy Wynette in 1971 on Epic Records. That version was also a top ten hit, peaking at No. 9.Jones wrote "Take Me" with Leon Payne. George Jones And Friends 50th Anniversary Tribute Concert 2007 Label: New West Records Release Date DVD: 2007 Shelby Lynne (born Shelby Lynn Moorer, October 22, 1968) is an American singer and songwriter and the older sister of Allison Moorer. The success of her pop rock album I Am Shelby Lynne (1999) led to her winning the Grammy Award for Best New Artist (despite being her sixth studi...
Provided to YouTube by Epic Take Me · George Jones · Tammy Wynette We Go Together ℗ Originally released 1971. All rights reserved by Sony Music Entertainment Released on: 1971-10-17 Associated Performer: George Jones & Tammy Wynette Producer: Billy Sherrill Composer, Lyricist: Leon Payne Auto-generated by YouTube.
Provided to YouTube by Epic Take Me · George Jones · Tammy Wynette Greatest Hits ℗ Originally released 1971. All rights reserved by Sony Music Entertainment Released on: 1977-11-07 Associated Performer: George Jones & Tammy Wynette Producer: Billy Sherrill Composer, Lyricist: L. Payne Composer, Lyricist: G. Jones Auto-generated by YouTube.
Mother's Finest is a pioneering American funk rock band founded in Atlanta, Georgia, by the vocal duo of Joyce "Baby Jean" Kennedy and Glenn "Doc" Murdock in 1970 when the pair met up with guitarist Gary "Moses Mo" Moore and bassist Jerry "Wyzard" Seay. Their music is a blend of funky rhythms, heavy rock guitars and expressive soul/R&B-style vocals.
The group charted with the singles "Fire" (No. 93 Pop Singles), "Baby Love" (No. 79 Black Singles, No. 58 Pop Singles), "Don't Wanna Come Back" (No. 54 Black Singles), "Love Changes" (No. 26 Black Singles), and "Piece of the Rock" in the mid- to late 1970s.
Mother's Finest issued its debut album Mother's Finest in 1972 on RCA; a second album for RCA remained unreleased until it surfaced as bonus tracks on the 2010 Wounded Bird re-issue of Mother's Finest. The group signed a new contract with Epic Records and released its sophomore effort, also titled Mother's Finest, in 1976, stirring up controversy with the ironic "Niggizz Can't Sang Rock 'n' Roll." Riding a wave of success, the band's next three albums, Another Mother Further (1977), Mother Factor (1978) and Mother’s Finest Live (1979), all went gold, helped along by heavy touring opening for the likes of Ted Nugent, Black Sabbath, The Who, Aerosmith and AC/DC.
[MF Doom]
As the life cycle goes on ... goes on
And you learn to hold on (hold on)
To things like the mic ... the mic
And you learn to appreciate who is the nicest on said device
But who is [the finest]?
[Tommy Gunn]
Time at shashuma, too much drama, blind behind the rumor
Time and time and time, my mind, I'm trying to find a tumor
Time at shashuma, no time for humor
As soon as one of ya' men's dead in Hempstead, you trying to find Pumas
Sooner the better, even knitted a sweater already
Keep your leather, we coming through the brutal weather
We ready to do whatever, yo' Doom you with it?
(You know it like a poet, my brother)
(Hey, Gunn you wit it?) Whatever... [the finest!]
[MF Doom]
I know about going paid to broke, to next day well-off
To bust a shell off, to "Dick-riders! Get the hell off!"
Made a call to a client, he must've had his cell off
A show-off, he has the same bite but fell off
I tell off the bat, from science to pure facts
Which niggaz is wack 'til they last two tracks
Matter fact, y'all could wait for the rep to tell
The tall-tale, how he escape from out the depths of hell
[Tommy Gunn]
When die, he gon' die like a soldier die:
Holding a swollen eye, drinking Olde Gold
Smoking a stog, watching po-po patrol the beach
Blowing my high, rolling by, when Gunn die
He gon' try to preach the streets then go to the sky
[MF Doom]
Yup! That hold water, like drizzle in a paper cup
This one etched in stone, the chisel with the paper up
I need a cut: a taper-up, edge-up
Niggaz can't measure up, I'm here to get the treasure up
[Megalon]
Stands up and hold 'em high, do or die
He got heat, no surprise, stop the beat, close your eyes
Got the weed, rolling lah
Not sweet, so no demise, all the guys drops seeds so multiply
Within the prophecies hold the lie
[MF Doom]
He bled my mother and my father, but can't bleed me
OD, ghetto misery, he bled my brother, my sister, but can't bleed me
A OG, ghetto misery, bled my mother, my father, but can't bleed ...
Me ... sci-fly, whole style stuck up
Used to talk to myself, I told him, "Shut the fuck up!"
Buckle up, 'cause it's about to be rough
He said, "Keep talking that shit, you 'bout to be snuffed"
Then we squashed it, I let em know: "Watch it --
We only met a time to join these rhymers in the mosh pit"
Gosh, it feels great just to increase the chance
For a pussy nigga face to hit the dance floor
[Megalon]
I pull ya' top up, got clout, crack rock, what?
Now it's all good business, and so this bitch is locked up
On the dance floor: you got knocked out, your bitch got knocked up
Baby-face, and hey can you brand you, brand new machete
Damn, I just shook your hand and can't stand you already
Can't stand you, understand you deadly
But my hammer's like a band, my man, it's Brand New and Heavy
Yo' Doom, you ready?
(Yeah! Yo' Gunn, you with it?) Whatever..
[MF Doom]
Come on stay, I wrote this rhyme on my born-day
Remind me of the same style I flipped on "Hey!"
Yikes! Who can fuck with the likes
Of one such who scores touchdown and spikes mic's
Metal grill, with many styles, better still
Feel like number 26 on a roulette wheel
And deal, and run rings around rhymers
And run rings like number runners whose old-timers
[Megalon]
Shorty in the all black, she think she all that
I called her, she said, "Don't call back!"
She called me, now what you call that?
Let's go back, I sold crack
Hold gats, smoke that, drink that, tote that
Fuck! Where that hoe at? Where that dough at?
[MF Doom]
Suffering succotash! This hooker broke into his last buck of cash
He love her, motherfuck her ass
Metal feet dented your car fender
My agenda up in the basement party tipping the bartender
Is unbeknownst to you -- who could get body blown?
MF like Mike Fran Corleone
And got it sown, maricon, like to know what you staring at?
An invisible cat, who pull off a disappearing act
Raised by a pack a wild wolves, it's like Sweetback
Front? I'ma be back! (Like brothers in the street act)
(Surrounded by a bunch a bad bitches like Sweetback)
(Fuck with me I'll be back)