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

Rick James

Rick James (born James Ambrose Johnson, Jr.; February 1, 1948  August 6, 2004) was an American musician and composer.

Influenced by singers such as Marvin Gaye and Smokey Robinson, James started singing in doo-wop and R&B groups as a teenager in his hometown of Buffalo, New York. After entering the U.S. Navy to avoid being drafted, he deserted to Toronto, where he formed the rock and R&B band, The Mynah Birds, whose lineup once included Bruce Palmer, Neil Young, and Nick St. Nicholas. James' tenure with the group was interrupted after he was discovered recording with the group in Motown in 1966. Surrendering to military authorities, he served a one-year prison term. Upon release, James moved to California to resume his duties with the Mynah Birds, although the group eventually split. James began a series of rock bands in California and worked with Motown under the assumed name "Ricky Matthews" as a songwriter.

In 1977, he signed with the Gordy Records imprint of Motown as a recording artist, releasing his debut, Come Get It!, in April 1978. The album sold over two million copies and launched his career into the mainstream as a funk and soul artist. His most popular album, 1981's Street Songs, launched him into superstardom thanks to the hit singles, "Give It to Me Baby" and "Super Freak", the latter song becoming his signature song for the rest of his life, and the basis of MC Hammer's biggest hit, "U Can't Touch This"; James eventually sued for back royalties. After being credited as writer of the song, James became the 1990 recipient of a Best R&B Song Grammy for composing the song. Due to this success, James was often called the "king of punk funk", for his mix of funk, soul and underground-inspired rock music. In addition to his own success, James emerged as a successful songwriter and producer for other artists, such as Teena Marie, The Mary Jane Girls, The Temptations, Eddie Murphy and Smokey Robinson.

Point of No Return (Keyshia Cole album)


Point of No Return is the sixth studio album by Grammy-nominated R&B singer Keyshia Cole; it was released on October 7, 2014, by Interscope Records and served as Cole's final album with the label. The album features production from various music producers including Tim Kelley of Tim & Bob, Mike Will Made It, DJ Mustard, WillieDonut, Amadeus, Stargate and features guest appearances by 2 Chainz, Juicy J, Gavyn Rhone, Wale, August Alsina, Faith Evans and Future. The album has had unsuccessful sales, selling less than 45,000 copies and being Cole's lowest selling album to date. Point of No Return received mixed reviews.

Background

In August 2013, it was reported that songwriter Elijah Blake started working with Cole on her sixth studio album. During the composition of the album, Cole collaborated with artists Juicy J, Future, Wale, Mike Will Made It, Birdman, and R. Kelly. The album marks Cole's last release with Interscope Records. The album's release was set to coincide with the premiere of her reality show Keyshia Cole: All In on BET. Instead, the show premiered in February 2015.

Rick James (disambiguation)

Rick James may refer to:

  • Rick James (1948-2004), American singer-songwriter
  • Rick James (baseball) (born 1947)), American baseball player
  • Rick James Sketch, comedy sketch
  • "Rick James", a 2013 song by Nelly from M.O.
  • "Rick James", a 2014 song by Keyshia Cole from Point of No Return
  • Rick James (baseball)

    Richard Lee James (born October 11, 1947) is an American former professional baseball player. A 6 ft 2 in (1.88 m), 205 lb (93 kg) right-handed pitcher, James was the Chicago Cubs' first #1 draft pick in the inaugural Major League Baseball Draft of June 1965. Selected after his graduation from Coffee High School, Florence, Alabama, James had a six-season (1965–1970) professional career, but his Major League stay was only three games and 4⅔ innings pitched — a proverbial "cup of coffee" — at the tail end of the 1967 season.

    James was the sixth player selected in the first round of the first MLB Draft, following #1 overall choice Rick Monday (taken by the Kansas City Athletics), #3 overall Joe Coleman (Washington Senators), and just ahead of #7 pick Ray Fosse (Cleveland Indians); Baseball Hall of Fame catcher Johnny Bench was taken in the second round, 36th overall, by the Cincinnati Reds.

    James was called up by the Cubs after a successful 1967 season split between the Double-A and Triple-A levels of minor league baseball. His first two appearances came in relief against the eventual 1967 world champion St. Louis Cardinals and the National League runners-up, the San Francisco Giants. James held them scoreless over 1⅔ innings. But in his third game, this time as a starting pitcher against the Reds on the closing day of the season at Crosley Field, James lasted only three innings and was roughed up for seven earned runs and nine hits, including a home run (by Vada Pinson) and three doubles, and he was charged with the loss in a 10–3 Cincinnati triumph.

    Podcasts:

    Rick James

    ALBUMS

    Born: 1948-02-01

    Died: 2004-08-06

    • Rick James - Super Freak (Official Music Video)

      Rick James' official music video for "Super Freak" from the album 'Street Songs' (1981). REMASTERED IN HD! 1:12 Create a YouTube Short using this sound! Read a celebration of Rick James’s life and career here: https://www.udiscovermusic.com/stories/rick-james-super-freak-life-story?utm_campaign=uDYT&utm_medium=youtube&utm_source=youtube Listen to more from Rick James: https://rickjames.lnk.to/listenYT Facebook: http://www.facebook.com/RickJames Twitter: http://twitter.com/rickjames Instagram: http://instagram.com/rickjames Website: http://www.rickjames.com/ Music video by Rick James performing Super Freak. YouTube view counts pre-VEVO: 3,744,313. (C) 1981 Motown Records, a Division of UMG Recordings, Inc. #RickJames #Superfreak

      published: 25 Dec 2009
    • Rick James - Give It To Me Baby

      REMASTERED IN HD!! Official Music Video for Give It To Me Baby performed by Rick James. For more Rick James news and merchandise: Classic Motown Website: https://lnk.to/ClassicMotownWS Classic Motown Store: https://lnk.to/ClassicMotownST Music video by Rick James performing Give It To Me Baby. (C) 1981 Motown Records, a Division of UMG Recordings, Inc. #RickJames #GiveItToMeBaby #Remastered

      published: 28 Nov 2011
    • Charlie Murphy’s True Hollywood Stories: Rick James - Chappelle’s Show

      Charlie Murphy tells two stories about hanging out with Rick James – which also happen to be stories about beating up Rick James. (Contains strong language.) About Chappelle’s Show: It’s not just a show – it’s a social phenomenon. Dave Chappelle’s singular point of view is unleashed through a combination of stand-up bits and street-smart sketches. Hailed by critics and beloved by fans, Chappelle’s Show brings the funk and the noise – and some of the funniest comedy on television. Subscribe to Comedy Central: https://www.youtube.com/channel/UCUsN5ZwHx2kILm84-jPDeXw?sub_confirmation=1 Watch more Comedy Central: https://www.youtube.com/comedycentral Follow Comedy Central: Twitter: https://twitter.com/ComedyCentral Facebook: https://www.facebook.com/ComedyCentral/ Instagram: https://www...

      published: 25 Nov 2019
    • Rick James Was A Horrible Person..

      My Clothing Brand ▶ https://earldoesntexist.com Discord ▶ https://discord.com/invite/tuv Check out my Patreon to get a special role in my Discord (and get to talk to me) and to watch the videos before they come out on YouTube! ▶ https://www.patreon.com/tuv Stream my music ▶ https://open.spotify.com/artist/31HpFqEapSyjS7ZGUq3Ivz?si=E-oFPyvwTiehFT8Lfc4uiw https://music.apple.com/us/artist/tuv/id1528251583 https://soundcloud.com/tuvver Socials: All socials ▶ https://solo.to/tuv My second channel ▶ https://www.youtube.com/channel/UCrYWP4FOeCIwW3FI1PM2xSw Instagram ▶ https://www.instagram.com/mynameistuv Twitter ▶ https://twitter.com/mynameistuvv Tiktok ▶ https://www.tiktok.com/@whoistuv Snapchat ▶ https://www.snapchat.com/add/mynameistuv Reddit ▶ https://www.reddit.com/r/tuvington My Spoti...

      published: 10 Mar 2023
    • Rick James - Mary Jane

      Rick James - Mary Jane (Video)

      published: 17 Oct 2015
    • Mary Jane

      Provided to YouTube by Universal Music Group Mary Jane · Rick James Come Get It! ℗ 1978 UMG Recordings, Inc. Released on: 1978-04-20 Producer, Associated Performer, Recording Arranger, Studio Personnel, Mixer: Rick James Producer, Studio Personnel, Mixer: Art Stewart Composer Lyricist: Rick James Auto-generated by YouTube.

      published: 24 Jul 2018
    • Rick James at the 2004 BET Awards: "I'm Rick James, B____!"

      Rick James and his infamous rant during his final public appearance, months before his death in August 2004. #rickjames #betawards #awards #controversy #shocking

      published: 10 Apr 2019
    • Cold Blooded

      Provided to YouTube by Universal Music Group Cold Blooded · Rick James 20th Century Masters: The Millennium Collection: Best Of Rick James ℗ 1983 Motown Records, a Division of UMG Recordings, Inc. Released on: 2000-01-01 Producer, Associated Performer, String Arranger, Recording Arranger: Rick James Associated Performer, String Arranger: Reggie Andrews Associated Performer, String Arranger, Recording Arranger: Daniel LeMelle Composer Lyricist: Rick James Auto-generated by YouTube.

      published: 31 Jul 2018
    • 【80年代 ディスコ ノンストップ】 80's Mix Vol.03 (Funk, Soul, & Disco)

      LIST 01 00:00 Teena Marie / Lovergirl (1985) 02 03:15 Rockwell / Tokyo (1985) 03 05:38 Narada Michael Walden / High Above The Clouds (1985) 04 09:28 Shalamar / Dancing In The Sheets (1984) 05 13:33 Dazz Band / Joystick (1983) 06 17:49 Lakeside / Outrageous (1984) 07 20:50 Midnight Star / No Parking (On The Dance Floor) (1983) 08 24:53 Rick James / U Bring The Freak Out (1983) 09 27:47 Mary Jane Girls / Candy Man (1983) 10 30:37 Diana Ross / Swept Away (1984) 11 33:57 Kool & The Gang / Fresh (1985) 12 37:55 Change / Turn On Your Radio (1985) 13 41:11 Collage / In The Mix (1985) 14 44:21 Shannon / Urgent (1985) 15 49:06 Yvonne Gage / Doin' It In A Haunted House (1984) 16 52:37 Jermaine Stewart / We Don't Have To Take Our Clothes Off (1986) 17 56:25 Lisa Lisa...

      published: 03 Oct 2024
    • Charlie Murphy’s True Hollywood Stories: Rick James & Prince - Chappelle’s Show

      Charlie Murphy recalls two strange brushes with celebrity: one with a basketball-playing Prince and another with a face-punching Rick James. (Contains strong language.) About Chappelle’s Show: It’s not just a show – it’s a social phenomenon. Dave Chappelle’s singular point of view is unleashed through a combination of stand-up bits and street-smart sketches. Hailed by critics and beloved by fans, Chappelle’s Show brings the funk and the noise – and some of the funniest comedy on television. Subscribe to Comedy Central: https://www.youtube.com/channel/UCUsN5ZwHx2kILm84-jPDeXw?sub_confirmation=1 Watch more Comedy Central: https://www.youtube.com/comedycentral Follow Comedy Central: Twitter: https://twitter.com/ComedyCentral Facebook: https://www.facebook.com/ComedyCentral/ Instagram: ...

      published: 04 Oct 2018
    developed with YouTube
    Rick James - Super Freak (Official Music Video)
    3:23

    Rick James - Super Freak (Official Music Video)

    • Order:
    • Duration: 3:23
    • Uploaded Date: 25 Dec 2009
    • views: 158663073
    Rick James' official music video for "Super Freak" from the album 'Street Songs' (1981). REMASTERED IN HD! 1:12 Create a YouTube Short using this sound! Read a celebration of Rick James’s life and career here: https://www.udiscovermusic.com/stories/rick-james-super-freak-life-story?utm_campaign=uDYT&utm_medium=youtube&utm_source=youtube Listen to more from Rick James: https://rickjames.lnk.to/listenYT Facebook: http://www.facebook.com/RickJames Twitter: http://twitter.com/rickjames Instagram: http://instagram.com/rickjames Website: http://www.rickjames.com/ Music video by Rick James performing Super Freak. YouTube view counts pre-VEVO: 3,744,313. (C) 1981 Motown Records, a Division of UMG Recordings, Inc. #RickJames #Superfreak
    https://wn.com/Rick_James_Super_Freak_(Official_Music_Video)
    Rick James - Give It To Me Baby
    4:02

    Rick James - Give It To Me Baby

    • Order:
    • Duration: 4:02
    • Uploaded Date: 28 Nov 2011
    • views: 45834313
    REMASTERED IN HD!! Official Music Video for Give It To Me Baby performed by Rick James. For more Rick James news and merchandise: Classic Motown Website: https://lnk.to/ClassicMotownWS Classic Motown Store: https://lnk.to/ClassicMotownST Music video by Rick James performing Give It To Me Baby. (C) 1981 Motown Records, a Division of UMG Recordings, Inc. #RickJames #GiveItToMeBaby #Remastered
    https://wn.com/Rick_James_Give_It_To_Me_Baby
    Charlie Murphy’s True Hollywood Stories: Rick James - Chappelle’s Show
    7:58

    Charlie Murphy’s True Hollywood Stories: Rick James - Chappelle’s Show

    • Order:
    • Duration: 7:58
    • Uploaded Date: 25 Nov 2019
    • views: 13882310
    Charlie Murphy tells two stories about hanging out with Rick James – which also happen to be stories about beating up Rick James. (Contains strong language.) About Chappelle’s Show: It’s not just a show – it’s a social phenomenon. Dave Chappelle’s singular point of view is unleashed through a combination of stand-up bits and street-smart sketches. Hailed by critics and beloved by fans, Chappelle’s Show brings the funk and the noise – and some of the funniest comedy on television. Subscribe to Comedy Central: https://www.youtube.com/channel/UCUsN5ZwHx2kILm84-jPDeXw?sub_confirmation=1 Watch more Comedy Central: https://www.youtube.com/comedycentral Follow Comedy Central: Twitter: https://twitter.com/ComedyCentral Facebook: https://www.facebook.com/ComedyCentral/ Instagram: https://www.instagram.com/comedycentral/ #ChappellesShow #DaveChappelle #RickJames
    https://wn.com/Charlie_Murphy’S_True_Hollywood_Stories_Rick_James_Chappelle’S_Show
    Rick James Was A Horrible Person..
    0:55

    Rick James Was A Horrible Person..

    • Order:
    • Duration: 0:55
    • Uploaded Date: 10 Mar 2023
    • views: 945379
    My Clothing Brand ▶ https://earldoesntexist.com Discord ▶ https://discord.com/invite/tuv Check out my Patreon to get a special role in my Discord (and get to talk to me) and to watch the videos before they come out on YouTube! ▶ https://www.patreon.com/tuv Stream my music ▶ https://open.spotify.com/artist/31HpFqEapSyjS7ZGUq3Ivz?si=E-oFPyvwTiehFT8Lfc4uiw https://music.apple.com/us/artist/tuv/id1528251583 https://soundcloud.com/tuvver Socials: All socials ▶ https://solo.to/tuv My second channel ▶ https://www.youtube.com/channel/UCrYWP4FOeCIwW3FI1PM2xSw Instagram ▶ https://www.instagram.com/mynameistuv Twitter ▶ https://twitter.com/mynameistuvv Tiktok ▶ https://www.tiktok.com/@whoistuv Snapchat ▶ https://www.snapchat.com/add/mynameistuv Reddit ▶ https://www.reddit.com/r/tuvington My Spotify Playlist ▶https://open.spotify.com/playlist/0AmpdsdMrtEgUoRshtEnHB?si=ff6275d6f2bb4db3 Music/Videos/Sources/Outro used ▶ Current sub count: tags: For SPONSOR INQUIRIES ONLY contact my agent: jonah@leadcastle.co For business inquiries/fanart/if you just want to write me: tuvbusiness@gmail.com email beats (preferably hyperpop) to: tuvbeats@gmail.com INCLUDE KEY AND BPM! P.O. Box Information: Bertie Ruiz (tuv) 4320 Marine Ave # 1073 Lawndale, CA 90260 Why are you looking this deep into the description? Comment "tuvington" if you're reading this. Have a nice day.
    https://wn.com/Rick_James_Was_A_Horrible_Person..
    Rick James - Mary Jane
    4:53

    Rick James - Mary Jane

    • Order:
    • Duration: 4:53
    • Uploaded Date: 17 Oct 2015
    • views: 51778083
    Rick James - Mary Jane (Video)
    https://wn.com/Rick_James_Mary_Jane
    Mary Jane
    4:58

    Mary Jane

    • Order:
    • Duration: 4:58
    • Uploaded Date: 24 Jul 2018
    • views: 36553853
    Provided to YouTube by Universal Music Group Mary Jane · Rick James Come Get It! ℗ 1978 UMG Recordings, Inc. Released on: 1978-04-20 Producer, Associated Performer, Recording Arranger, Studio Personnel, Mixer: Rick James Producer, Studio Personnel, Mixer: Art Stewart Composer Lyricist: Rick James Auto-generated by YouTube.
    https://wn.com/Mary_Jane
    Rick James at the 2004 BET Awards: "I'm Rick James, B____!"
    0:59

    Rick James at the 2004 BET Awards: "I'm Rick James, B____!"

    • Order:
    • Duration: 0:59
    • Uploaded Date: 10 Apr 2019
    • views: 2179260
    Rick James and his infamous rant during his final public appearance, months before his death in August 2004. #rickjames #betawards #awards #controversy #shocking
    https://wn.com/Rick_James_At_The_2004_Bet_Awards_I'm_Rick_James,_B
    Cold Blooded
    5:58

    Cold Blooded

    • Order:
    • Duration: 5:58
    • Uploaded Date: 31 Jul 2018
    • views: 391002
    Provided to YouTube by Universal Music Group Cold Blooded · Rick James 20th Century Masters: The Millennium Collection: Best Of Rick James ℗ 1983 Motown Records, a Division of UMG Recordings, Inc. Released on: 2000-01-01 Producer, Associated Performer, String Arranger, Recording Arranger: Rick James Associated Performer, String Arranger: Reggie Andrews Associated Performer, String Arranger, Recording Arranger: Daniel LeMelle Composer Lyricist: Rick James Auto-generated by YouTube.
    https://wn.com/Cold_Blooded
    【80年代 ディスコ ノンストップ】 80's Mix Vol.03 (Funk, Soul, & Disco)
    1:04:28

    【80年代 ディスコ ノンストップ】 80's Mix Vol.03 (Funk, Soul, & Disco)

    • Order:
    • Duration: 1:04:28
    • Uploaded Date: 03 Oct 2024
    • views: 29
    LIST 01 00:00 Teena Marie / Lovergirl (1985) 02 03:15 Rockwell / Tokyo (1985) 03 05:38 Narada Michael Walden / High Above The Clouds (1985) 04 09:28 Shalamar / Dancing In The Sheets (1984) 05 13:33 Dazz Band / Joystick (1983) 06 17:49 Lakeside / Outrageous (1984) 07 20:50 Midnight Star / No Parking (On The Dance Floor) (1983) 08 24:53 Rick James / U Bring The Freak Out (1983) 09 27:47 Mary Jane Girls / Candy Man (1983) 10 30:37 Diana Ross / Swept Away (1984) 11 33:57 Kool & The Gang / Fresh (1985) 12 37:55 Change / Turn On Your Radio (1985) 13 41:11 Collage / In The Mix (1985) 14 44:21 Shannon / Urgent (1985) 15 49:06 Yvonne Gage / Doin' It In A Haunted House (1984) 16 52:37 Jermaine Stewart / We Don't Have To Take Our Clothes Off (1986) 17 56:25 Lisa Lisa & Cult Jam / Can You Feel The Beat (1985) 18 59:48 Jermaine Jackson / Do You Remember Me (1986)
    https://wn.com/【80年代_ディスコ_ノンストップ】_80's_Mix_Vol.03_(Funk,_Soul,_Disco)
    Charlie Murphy’s True Hollywood Stories: Rick James & Prince - Chappelle’s Show
    14:14

    Charlie Murphy’s True Hollywood Stories: Rick James & Prince - Chappelle’s Show

    • Order:
    • Duration: 14:14
    • Uploaded Date: 04 Oct 2018
    • views: 25516205
    Charlie Murphy recalls two strange brushes with celebrity: one with a basketball-playing Prince and another with a face-punching Rick James. (Contains strong language.) About Chappelle’s Show: It’s not just a show – it’s a social phenomenon. Dave Chappelle’s singular point of view is unleashed through a combination of stand-up bits and street-smart sketches. Hailed by critics and beloved by fans, Chappelle’s Show brings the funk and the noise – and some of the funniest comedy on television. Subscribe to Comedy Central: https://www.youtube.com/channel/UCUsN5ZwHx2kILm84-jPDeXw?sub_confirmation=1 Watch more Comedy Central: https://www.youtube.com/comedycentral Follow Comedy Central: Twitter: https://twitter.com/ComedyCentral Facebook: https://www.facebook.com/ComedyCentral/ Instagram: https://www.instagram.com/comedycentral/
    https://wn.com/Charlie_Murphy’S_True_Hollywood_Stories_Rick_James_Prince_Chappelle’S_Show
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Rick James - Super Freak (Official Music Video)

    Rick James' official music video for "Super Freak" from the album 'Street Songs' (1981). REMASTERED IN HD! 1:12 Create a YouTube Short using this sound! Read a celebration of Rick James’s life and career here: https://www.udiscovermusic.com/stories/rick-james-super-freak-life-story?utm_campaign=uDYT&utm_medium=youtube&utm_source=youtube Listen to more from Rick James: https://rickjames.lnk.to/listenYT Facebook: http://www.facebook.com/RickJames Twitter: http://twitter.com/rickjames Instagram: http://instagram.com/rickjames Website: http://www.rickjames.com/ Music video by Rick James performing Super Freak. YouTube view counts pre-VEVO: 3,744,313. (C) 1981 Motown Records, a Division of UMG Recordings, Inc. #RickJames #Superfreak
    3:23
    Rick James - Super Freak (Official Music Video)
    Rick James' official music video for "Super Freak" from the album 'Street Songs' (1981). R...
    published: 25 Dec 2009
    Play in Full Screen
    4:02
    Rick James - Give It To Me Baby
    REMASTERED IN HD!! Official Music Video for Give It To Me Baby performed by Rick James. ...
    published: 28 Nov 2011
    Play in Full Screen
    7:58
    Charlie Murphy’s True Hollywood Stories: Rick James - Chappelle’s Show
    Charlie Murphy tells two stories about hanging out with Rick James – which also happen to ...
    published: 25 Nov 2019
    Play in Full Screen
    0:55
    Rick James Was A Horrible Person..
    My Clothing Brand ▶ https://earldoesntexist.com Discord ▶ https://discord.com/invite/tuv ...
    published: 10 Mar 2023
    Play in Full Screen
    4:53
    Rick James - Mary Jane
    Rick James - Mary Jane (Video)
    published: 17 Oct 2015
    Play in Full Screen
    4:58
    Mary Jane
    Provided to YouTube by Universal Music Group Mary Jane · Rick James Come Get It! ℗ 1978...
    published: 24 Jul 2018
    Play in Full Screen
    0:59
    Rick James at the 2004 BET Awards: "I'm Rick James, B____!"
    Rick James and his infamous rant during his final public appearance, months before his dea...
    published: 10 Apr 2019
    Play in Full Screen
    5:58
    Cold Blooded
    Provided to YouTube by Universal Music Group Cold Blooded · Rick James 20th Century Mast...
    published: 31 Jul 2018
    Play in Full Screen
    1:04:28
    【80年代 ディスコ ノンストップ】 80's Mix Vol.03 (Funk, Soul, & Disco)
    LIST 01 00:00 Teena Marie / Lovergirl (1985) 02 03:15 Rockwell / Tokyo (1985) 03 05:3...
    published: 03 Oct 2024
    Play in Full Screen
    14:14
    Charlie Murphy’s True Hollywood Stories: Rick James & Prince - Chappelle’s Show
    Charlie Murphy recalls two strange brushes with celebrity: one with a basketball-playing P...
    published: 04 Oct 2018
    Play in Full Screen

    Rick James

    Rick James (born James Ambrose Johnson, Jr.; February 1, 1948  August 6, 2004) was an American musician and composer.

    Influenced by singers such as Marvin Gaye and Smokey Robinson, James started singing in doo-wop and R&B groups as a teenager in his hometown of Buffalo, New York. After entering the U.S. Navy to avoid being drafted, he deserted to Toronto, where he formed the rock and R&B band, The Mynah Birds, whose lineup once included Bruce Palmer, Neil Young, and Nick St. Nicholas. James' tenure with the group was interrupted after he was discovered recording with the group in Motown in 1966. Surrendering to military authorities, he served a one-year prison term. Upon release, James moved to California to resume his duties with the Mynah Birds, although the group eventually split. James began a series of rock bands in California and worked with Motown under the assumed name "Ricky Matthews" as a songwriter.

    In 1977, he signed with the Gordy Records imprint of Motown as a recording artist, releasing his debut, Come Get It!, in April 1978. The album sold over two million copies and launched his career into the mainstream as a funk and soul artist. His most popular album, 1981's Street Songs, launched him into superstardom thanks to the hit singles, "Give It to Me Baby" and "Super Freak", the latter song becoming his signature song for the rest of his life, and the basis of MC Hammer's biggest hit, "U Can't Touch This"; James eventually sued for back royalties. After being credited as writer of the song, James became the 1990 recipient of a Best R&B Song Grammy for composing the song. Due to this success, James was often called the "king of punk funk", for his mix of funk, soul and underground-inspired rock music. In addition to his own success, James emerged as a successful songwriter and producer for other artists, such as Teena Marie, The Mary Jane Girls, The Temptations, Eddie Murphy and Smokey Robinson.

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