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

James Brown

James Joseph Brown (May 3, 1933 – December 25, 2006) was an American singer, songwriter, record producer, dancer and bandleader. The founding father of funk music and a major figure of 20th century popular music and dance, he is often referred to as the "Godfather of Soul". In a career that spanned six decades, Brown influenced the development of several music genres.

Brown began his career as a gospel singer in Toccoa, Georgia. Joining an R&B vocal group called the Avons that later evolved to become the Flames, Brown served as the group's lead singer. First coming to national public attention in the late 1950s as a member of the singing group the Famous Flames with the hit ballads "Please, Please, Please" and "Try Me", Brown built a reputation as a tireless live performer with the Famous Flames and his backing band, sometimes known as the James Brown Band or the James Brown Orchestra. Brown's success peaked in the 1960s with the live album Live at the Apollo and hit singles such as "Papa's Got a Brand New Bag", "I Got You (I Feel Good)" and "It's a Man's Man's Man's World". During the late 1960s, Brown moved from a continuum of blues and gospel-based forms and styles to a profoundly "Africanized" approach to music-making that influenced the development of funk music. By the early 1970s, Brown had fully established the funk sound after the formation of the J.B.s with records such as "Get Up (I Feel Like Being a) Sex Machine" and "The Payback". Brown also became notable for songs of social commentary, including the 1968 hit "Say It Loud - I'm Black and I'm Proud". Brown continued to perform and record until his death in 2006 from congestive heart failure.

James A. Brown

James Allen "Babe" Brown (July 31, 1900 June 23, 1965) was an American football coach and athletic director. He was the head coach in basketball and football at the University of Idaho in Moscow, and later a three-sport coach and athletic director at the College of Idaho in Caldwell. He also coached multiple sports at four high schools in Idaho: Lewiston, Burley, Moscow, and Nampa.

Early years

Born in the farming community of Star in southwestern Idaho, Brown graduated from Boise High School in 1919 and was a multi-sport athlete at the University of Idaho in Moscow, where he lettered in football, wrestling, and baseball. He was a hard-hitting fullback on the football team under head coaches Thomas Kelley and R.L. "Matty" Mathews. His senior season was Idaho's first as a member of the Pacific Coast Conference. He was also a member of Kappa Sigma fraternity.

Coaching career

Following his playing days, Brown was an assistant at Idaho under Mathews, then became a high school coach in 1925 at Lewiston High School, and won the state title in basketball in 1926. After several years with the Bengals, he left coaching for two years to work in private business in southern Idaho, then returned to coaching in 1932 at Burley High School for three seasons. He returned to north Idaho to coach at Moscow High School in 1935, taking over the Bears' program from Gale Mix.

James Brown (Louisiana)

James Brown (September 11, 1766  April 7, 1835) was a lawyer beginning in Kentucky, U.S. Senator from Louisiana, and Minister to France (1823-1829).

His brother John Brown was a US Senator from Kentucky and active in its gaining statehood. Well-connected among the southern elite, they were also cousins of John Breckinridge, James Breckinridge and Francis Preston. James Brown was brother-in-law to Henry Clay and Nathaniel G. S. Hart, the uncle of James Brown Clay, Henry Clay, Jr., John Morrison Clay, the great uncle of B. Gratz Brown, and the cousin-in-law of Thomas Hart Benton.

Early life and education

Born near Staunton, Virginia, Brown attended Washington College (later Washington and Lee University) in Lexington, Virginia, and William and Mary College, Williamsburg, Virginia. He read law, was admitted to the bar, and commenced practice in Frankfort, Kentucky.

Brown commanded a company of sharpshooters in an expedition against the Indians in 1789. His wife was Ann "Nancy" Hart, and her sister of Lucretia married Henry Clay, who became an important statesman from Kentucky.

Blood brother (disambiguation)

A blood brother is a male who swears loyalty to another male.

Blood Brother, Blood Brothers or The Blood Brothers may also refer to:

Film

  • Blood Brothers (1973 film), a Hong Kong film directed by Chang Cheh
  • Bloodbrothers (1978 film), a film starring Richard Gere, based on a novel by Richard Price (see below)
  • Blood Brothers (1993 film), a made-for-television film featuring Richard Yearwood
  • Blood Brothers (1996 film), a documentary about a Bruce Springsteen and The E Street Band reunion
  • Blood Brothers (2004 film) (Jiang Hu), a Hong Kong gang film
  • Bloodbrothers (2005 film), a Swedish film starring Sofia Helin
  • Blood Brothers (2007 action film), a Chinese film directed by Alexi Tan
  • Blood Brothers (2007 drama film), a 2007 AIDS-awareness film produced by the Bill Gates foundation
  • Blood Brothers (2011 film), an Australian TV film featuring Cariba Heine
  • Blood Brother (2013 film), a 2013 Sundance Film Festival award-winning documentary
  • The Blood Brothers, the working title of the 2007 Chinese film The Warlords
  • James Brown (footballer, born 1939)

    James Birrell 'Jim' Brown (born 7 June 1939) was a Scottish footballer who played for a number of football clubs including Dumbarton and Darlington.

    References


    James Brown (author)

    James Brown (born 1957, Santa Clara, California) is an American novelist who has also written short fiction and nonfiction.

    His acclaimed memoir, The Los Angeles Diaries (HarperCollins, 2003) is an intimate portrait of his dysfunctional family, covering his childhood, Hollywood script meetings, his splintered marriage and life with his older brother, the actor Barry Brown (1951–78), and his sister, the actress Marilyn Brown (1953–98), who both committed suicide. The Los Angeles Diaries was named a Best Book of the Year by Publishers Weekly, The San Francisco Chronicle and The Independent of London.

    Novels and memoir

    Living in San Jose, Brown studied creative writing at San Francisco State University and then attended the University of California, Irvine where he received an MFA degree in creative writing. His first short story was published when he was 16. His first novel, Going Fast (1977), published in a limited edition by Border Mountain Press, was reviewed by Merritt Clifton in Samisdat:

    James Brown (footballer, born 1907)

    James "Jimmy" Brown (1907 – unknown) was a Scottish footballer who played at right half-back. Born in Leith, Edinburgh, he spent most of his football career playing in England, for Burnley, Manchester United and Bradford Park Avenue.

    Career

    Born in Leith, Brown was orphaned at the age of 7, along with his five brothers. He entered the coal-mining industry while still at school, but after becoming a becoming a Scottish schoolboy international, he decided to pursue a career in football. After playing for Belhavenock, Maryhill and Wishaw Juniors in the Scottish Junior League, he joined Scottish Second Division club East Fife for the 1926–27 season. After a successful season in which his team reached the final of the Scottish Cup, he earned a move to England, where he was signed by First Division side Burnley.

    Burnley narrowly avoided relegation to the Second Division in Brown's first two seasons with the club, but they were unable to do so again in 1929–30. Two years later, Brown was named as the club's captain. However, in June 1935, he was signed by Manchester United for a fee of £1,000. In his eight years with Burnley, Brown scored five goals in 228 league appearances. He made his debut for Manchester United in a 3–1 defeat away to Plymouth Argyle on 31 August 1935. He was the club's starting right-half and captain for most of the season, missing just two matches as Manchester United finished top of the Second Division to earn promotion to the top flight.

    Podcasts:

    James Brown

    ALBUMS

    James Brown

    ALBUMS

    James Brown

    ALBUMS

    James Brown

    James Brown

    ALBUMS

    James Brown

    ALBUMS

    Born: 1933-05-03

    Died: 2006-12-25

    James Brown

    ALBUMS

    James Brown

    ALBUMS

    James Brown

    ALBUMS

    James Brown

    ALBUMS

    James Brown

    James Brown

    ALBUMS

    Jim Brown

    ALBUMS

    James Brown

    ALBUMS

    • James Brown - I Got You (I Feel Good) (Live 8 2005)

      James Brown performing at Live 8's "Final Push" in Edinburgh's Murrayfield Stadium on the 6th July, 2005. Organised by Sir Bob Geldof and The Band Aid Trust to raise money to fight poverty around the world, the event was viewed by around 2 billion people. Subscribe to the channel to stay up to date with all new releases. Subscribe to the channel here: https://www.youtube.com/channel/UCckKR1kDbRKXJArtGYh6drQ?sub_confirmation=1

      published: 18 Oct 2018
    • James Brown - It's A Man's Man's Man's World - Live - 11 July 1981 • World of Jazz

      "It's a Man's Man's Man's World" is a song by James Brown and Betty Jean Newsome. Brown recorded it on February 16, 1966 in a New York City studio and released it as a single later that year. It reached No. 1 on the Billboard R&B chart and No. 8 on the Billboard Hot 100. Its title is a word play on the 1963 comedy film It's a Mad, Mad, Mad, Mad World. This is the exiting live version of this song as performed by James Brown and the JBs at the second performance at the North Sea Jazz Festival on 11 July 1981, held in the Congress center in The Hague. This second concert is extraordinary and sees a James Brown that really gives everything to get the audience to their feet. The first concert that we published on 5 October 2017 which was recorded by AVRO Television earlier that 11th July 198...

      published: 14 Sep 2019
    • Michael Jackson and Prince on stage with James Brown (1983)

      Nel video, datato 1983, James Brown chiama sul palco Prince e Michael Jackson, dove quest'ultimo si lancerà in una fantastica interpretazione del brano "It's a Man's Man's Man's World". WEBSITE: https://www.michaeljackson.it/ FACEBOOK: https://www.facebook.com/mjfansquare GRUPPO FB: https://www.facebook.com/groups/mjfansquare FORUM: https://www.michaeljackson.it/forum INSTAGRAM: https://www.instagram.com/mjfansquare/ TWITTER: https://twitter.com/MJFanSquare SPOTIFY: https://open.spotify.com/user/g5zc2f9ij8e4so2aciphnpw65 StefanoMJS: https://youtube.com/c/StefanoMJSMusic

      published: 21 Apr 2021
    • james brown sexy machine

      published: 23 Aug 2020
    • James Brown - Papa's Got A Brand New Bag - I Feel Good

      published: 15 May 2013
    • James Brown - It's A Man's Man's Man's World

      via http://www.genero.tv Music video by James Brown performing It's A Man's Man's Man's World. (C) 2012 Universal Records, a Division of UMG Recordings, Inc.

      published: 20 Aug 2012
    • Eddie Murphy Does JAMES BROWN, ELVIS & STEVIE WONDER

      22 Year Old Eddie Murphy Does Impressions of Three Legends (in 1983)

      published: 12 Oct 2019
    • People Get Up And Drive Your Funky Soul (Remix)

      Provided to YouTube by Universal Music Group People Get Up And Drive Your Funky Soul (Remix) · James Brown · Fred Wesley · The J.B.'s Motherlode ℗ 1988 UMG Recordings, Inc. Released on: 2003-01-01 Producer, Associated Performer, Vocals: James Brown Associated Performer, Trombone: Fred Wesley Composer Lyricist: James Brown Auto-generated by YouTube.

      published: 13 Dec 2018
    • Old-school Bootsy Collins Style Funk Beat (James Brown Cover - Soul Power)

      published: 01 Sep 2024
    • Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Official Live Performance Video)

      Luciano Pavarotti - The Official Motion Picture Soundtrack Order now: https://lnk.to/PavFilmOSTID In Decca's 90th anniversary year, the historic label releases the official soundtrack to the film, continuing Pavarotti's musical legacy and celebrating his extraordinary life. See the greatest like you've never seen him before, and listen to the performances that thrilled audiences all around the world. Luciano Pavarotti - The Greatest Hits Order now: https://lnk.to/PavGreatestID Decca are also releasing an incredible greatest hits album, comprising an impressive 71 tracks and over four hours of music, featuring great opera arias, favourite songs and sacred arias, and iconic duets with some of the biggest names in music, including five previously unreleased tracks. A definitive collection f...

      published: 26 Apr 2019
    developed with YouTube
    James Brown - I Got You (I Feel Good) (Live 8 2005)
    4:19

    James Brown - I Got You (I Feel Good) (Live 8 2005)

    • Order:
    • Duration: 4:19
    • Uploaded Date: 18 Oct 2018
    • views: 67804108
    James Brown performing at Live 8's "Final Push" in Edinburgh's Murrayfield Stadium on the 6th July, 2005. Organised by Sir Bob Geldof and The Band Aid Trust to raise money to fight poverty around the world, the event was viewed by around 2 billion people. Subscribe to the channel to stay up to date with all new releases. Subscribe to the channel here: https://www.youtube.com/channel/UCckKR1kDbRKXJArtGYh6drQ?sub_confirmation=1
    https://wn.com/James_Brown_I_Got_You_(I_Feel_Good)_(Live_8_2005)
    James Brown - It's A Man's Man's Man's World - Live - 11 July 1981 • World of Jazz
    5:02

    James Brown - It's A Man's Man's Man's World - Live - 11 July 1981 • World of Jazz

    • Order:
    • Duration: 5:02
    • Uploaded Date: 14 Sep 2019
    • views: 35216337
    "It's a Man's Man's Man's World" is a song by James Brown and Betty Jean Newsome. Brown recorded it on February 16, 1966 in a New York City studio and released it as a single later that year. It reached No. 1 on the Billboard R&B chart and No. 8 on the Billboard Hot 100. Its title is a word play on the 1963 comedy film It's a Mad, Mad, Mad, Mad World. This is the exiting live version of this song as performed by James Brown and the JBs at the second performance at the North Sea Jazz Festival on 11 July 1981, held in the Congress center in The Hague. This second concert is extraordinary and sees a James Brown that really gives everything to get the audience to their feet. The first concert that we published on 5 October 2017 which was recorded by AVRO Television earlier that 11th July 1981 saw a lame audience that did not know how to react. In this fantastic video we see what James Brown could do with any audience. Also this concert has a different tracklisting including a sensational 'It's A Man's World' in which he pays tribute to great artists who died such as Otis Redding, Sam Cooke, Janis Joplin, Jimi Hendrix and especially to John Lennon, who died some 6 months earlier. The concert's encore is a raving rendition of 'Sex Machine'. Enjoy! The repertoire featured is: 00:03:30 "Hot Pants Road' by Charles Bobbit, James Brown, St. Clair Pinckney ; 00:09:02 "We are the funky men" - James Brown; 00:19:43 "Also sprach Zarathustra - Richard Straus s" + "Somewhere over the rainbow" – E.Y. Harburg,H. Arlen + 'Star Wars Main Theme' - John Williams; 00:27:14 "Hit man" - (?); 00:30:49 "Too funky in here" - B. Shapiro, G. Jackson, R. Miller, W. Shaw; 00:35:19 "Doing It to Death (Gonna Have a Funky Good Time)" - James Brown; 00:38:04 "Try me" - James Brown; 00:42:23 "Get on the good food" - James Brown; Fred Wesley; Joe Mims; 00:46:01 "I'm just a prisoner" - Eddie Harris; George Jackson 00:49:51 "Cold sweat" - Brown/Ellis; 00:52:31 "Papa's got a brand new bag" - James Brown; 00:53:34 "I feel good" - James Brown; 00:56:35 "It's a man's world" -James Brown; 01:10:37 "Jam" - James Brown; 01:14:18 "Sex machine" - James Brown; Bobby Byrd; Ronald R. Lenhoff. Watch the other James Brown concert on this very channel! Watch more World of Jazz videos ► https://goo.gl/Z28cxv Join us. Subscribe now! ► https://goo.gl/n2FHaL Thanks for all your support, rating the video and leaving a comment is always appreciated! Please: respect each other in the comments. This is the official YouTube channel of World of Jazz.
    https://wn.com/James_Brown_It's_A_Man's_Man's_Man's_World_Live_11_July_1981_•_World_Of_Jazz
    Michael Jackson and Prince on stage with James Brown (1983)
    5:11

    Michael Jackson and Prince on stage with James Brown (1983)

    • Order:
    • Duration: 5:11
    • Uploaded Date: 21 Apr 2021
    • views: 2919728
    Nel video, datato 1983, James Brown chiama sul palco Prince e Michael Jackson, dove quest'ultimo si lancerà in una fantastica interpretazione del brano "It's a Man's Man's Man's World". WEBSITE: https://www.michaeljackson.it/ FACEBOOK: https://www.facebook.com/mjfansquare GRUPPO FB: https://www.facebook.com/groups/mjfansquare FORUM: https://www.michaeljackson.it/forum INSTAGRAM: https://www.instagram.com/mjfansquare/ TWITTER: https://twitter.com/MJFanSquare SPOTIFY: https://open.spotify.com/user/g5zc2f9ij8e4so2aciphnpw65 StefanoMJS: https://youtube.com/c/StefanoMJSMusic
    https://wn.com/Michael_Jackson_And_Prince_On_Stage_With_James_Brown_(1983)
    james brown sexy machine
    5:29

    james brown sexy machine

    • Order:
    • Duration: 5:29
    • Uploaded Date: 23 Aug 2020
    • views: 5777046
    https://wn.com/James_Brown_Sexy_Machine
    James Brown - Papa's Got A Brand New Bag - I Feel Good
    2:46

    James Brown - Papa's Got A Brand New Bag - I Feel Good

    • Order:
    • Duration: 2:46
    • Uploaded Date: 15 May 2013
    • views: 7258378
    https://wn.com/James_Brown_Papa's_Got_A_Brand_New_Bag_I_Feel_Good
    James Brown - It's A Man's Man's Man's World
    2:46

    James Brown - It's A Man's Man's Man's World

    • Order:
    • Duration: 2:46
    • Uploaded Date: 20 Aug 2012
    • views: 117023362
    via http://www.genero.tv Music video by James Brown performing It's A Man's Man's Man's World. (C) 2012 Universal Records, a Division of UMG Recordings, Inc.
    https://wn.com/James_Brown_It's_A_Man's_Man's_Man's_World
    Eddie Murphy Does JAMES BROWN, ELVIS & STEVIE WONDER
    5:37

    Eddie Murphy Does JAMES BROWN, ELVIS & STEVIE WONDER

    • Order:
    • Duration: 5:37
    • Uploaded Date: 12 Oct 2019
    • views: 1913605
    22 Year Old Eddie Murphy Does Impressions of Three Legends (in 1983)
    https://wn.com/Eddie_Murphy_Does_James_Brown,_Elvis_Stevie_Wonder
    People Get Up And Drive Your Funky Soul (Remix)
    9:05

    People Get Up And Drive Your Funky Soul (Remix)

    • Order:
    • Duration: 9:05
    • Uploaded Date: 13 Dec 2018
    • views: 43050400
    Provided to YouTube by Universal Music Group People Get Up And Drive Your Funky Soul (Remix) · James Brown · Fred Wesley · The J.B.'s Motherlode ℗ 1988 UMG Recordings, Inc. Released on: 2003-01-01 Producer, Associated Performer, Vocals: James Brown Associated Performer, Trombone: Fred Wesley Composer Lyricist: James Brown Auto-generated by YouTube.
    https://wn.com/People_Get_Up_And_Drive_Your_Funky_Soul_(Remix)
    Old-school Bootsy Collins Style Funk Beat (James Brown Cover - Soul Power)
    0:57

    Old-school Bootsy Collins Style Funk Beat (James Brown Cover - Soul Power)

    • Order:
    • Duration: 0:57
    • Uploaded Date: 01 Sep 2024
    • views: 469
    https://wn.com/Old_School_Bootsy_Collins_Style_Funk_Beat_(James_Brown_Cover_Soul_Power)
    Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Official Live Performance Video)
    4:59

    Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Official Live Performance Video)

    • Order:
    • Duration: 4:59
    • Uploaded Date: 26 Apr 2019
    • views: 113809122
    Luciano Pavarotti - The Official Motion Picture Soundtrack Order now: https://lnk.to/PavFilmOSTID In Decca's 90th anniversary year, the historic label releases the official soundtrack to the film, continuing Pavarotti's musical legacy and celebrating his extraordinary life. See the greatest like you've never seen him before, and listen to the performances that thrilled audiences all around the world. Luciano Pavarotti - The Greatest Hits Order now: https://lnk.to/PavGreatestID Decca are also releasing an incredible greatest hits album, comprising an impressive 71 tracks and over four hours of music, featuring great opera arias, favourite songs and sacred arias, and iconic duets with some of the biggest names in music, including five previously unreleased tracks. A definitive collection for the true Pavarotti superfan. http://pavarottiofficial.com https://www.facebook.com/pavarottiofficial/ Music video by Luciano Pavarotti, James Brown performing It's A Man's World (Stereo). © 2002 Pavarotti International s.r.l. http://vevo.ly/JvXn0X
    https://wn.com/Luciano_Pavarotti,_James_Brown_It's_A_Man's_Man's_Man's_World_(Official_Live_Performance_Video)
    • James Brown - It's A Man's Man's Man's World

      via http://www.genero.tv Music video by James Brown performing It's A Man's Man's Man's World. (C) 2012 Universal Records, a Division of UMG Recordings, Inc.

      published: 20 Aug 2012
    • Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Official Live Performance Video)

      Luciano Pavarotti - The Official Motion Picture Soundtrack Order now: https://lnk.to/PavFilmOSTID In Decca's 90th anniversary year, the historic label releases the official soundtrack to the film, continuing Pavarotti's musical legacy and celebrating his extraordinary life. See the greatest like you've never seen him before, and listen to the performances that thrilled audiences all around the world. Luciano Pavarotti - The Greatest Hits Order now: https://lnk.to/PavGreatestID Decca are also releasing an incredible greatest hits album, comprising an impressive 71 tracks and over four hours of music, featuring great opera arias, favourite songs and sacred arias, and iconic duets with some of the biggest names in music, including five previously unreleased tracks. A definitive collection f...

      published: 26 Apr 2019
    • Louisa Johnson smashes James Brown classic | Semi-Final | The X Factor 2015

      Visit the official site: http://itv.com/xfactor James Brown might have sung about it being A Man's Man's Man's World, but Louisa just proved it's her night after impressing the Judges with this cover! Facebook: http://on.fb.me/1QVQkBB Twitter: http://bit.ly/LouisaTwitter Instagram: http://bit.ly/LouisaInsta SUBSCRIBE: http://bit.ly/TXFSub Facebook: http://bit.ly/TXFFB Twitter: http://bit.ly/TXFTwi Download The X Factor mobile app: http://bit.ly/TXFapp Watch full episodes on ITV Hub (UK ONLY): http://www.itv.com/hub/the-x-factor

      published: 05 Dec 2015
    • James Brown - The Boss

      James Brown - The Boss From Album - Black Caeser

      published: 05 Jun 2011
    • James Brown Sings 'The Old Landmark' | The Blues Brothers | TUNE

      Reverend Cleophus James (James Brown) sings 'The Old Landmark' as part of a sermon at the Triple Rock Baptist Church, during which Jake Blues (John Belushi) has an epiphany to re-form his old band, the Blues Brothers. What is The Blues Brothers (1980) about? Comedy icons John Belushi and Dan Aykroyd star in the outrageously funny musical comedy The Blues Brothers. After the release of Jake Blues (Belushi) from prison, he and brother Elwood (Aykroyd) take their blues band back on the road in an attempt to raise money for the orphanage where they were raised. Havoc ensues as the brothers seek redemption on their "mission from God." This comedy classic features musical performances by blues legends Ray Charles, James Brown, Aretha Franklin and Cab Calloway. Watch the full movie here: http...

      published: 04 Apr 2022
    • E013 Jim Brown Campaigning for Louisiana Governor 1987

      Unseen footage from the 1991 PBS documentary "Louisiana Boys - Raised on Politics". Watch more http://bit.ly/ytLAB | Stream the film http://bit.ly/LACOLL

      published: 19 Jul 2017
    • Jim Brown Louisiana updates

      What's new on the Jim Brown website reviewing commentary, radio interviews, and national columns.

      published: 12 Jan 2022
    • Inside Louisiana News - Jim Brown (Segment 1)

      Jim Brown sat down with Ted Baldwin of Inside Louisiana News and discusses life in politics, rogue prosecutors, life in the media, as well as sharing his views on the political out look.

      published: 16 Sep 2010
    • James Brown - Please, please, please (Blues Brothers 2000 after credits)

      published: 08 Oct 2010
    • The WORST Case of Drug Addiction in the World!😳 #shorts

      published: 24 May 2023
    developed with YouTube
    James Brown - It's A Man's Man's Man's World
    2:46

    James Brown - It's A Man's Man's Man's World

    • Order:
    • Duration: 2:46
    • Uploaded Date: 20 Aug 2012
    • views: 117023362
    via http://www.genero.tv Music video by James Brown performing It's A Man's Man's Man's World. (C) 2012 Universal Records, a Division of UMG Recordings, Inc.
    https://wn.com/James_Brown_It's_A_Man's_Man's_Man's_World
    Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Official Live Performance Video)
    4:59

    Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Official Live Performance Video)

    • Order:
    • Duration: 4:59
    • Uploaded Date: 26 Apr 2019
    • views: 113809122
    Luciano Pavarotti - The Official Motion Picture Soundtrack Order now: https://lnk.to/PavFilmOSTID In Decca's 90th anniversary year, the historic label releases the official soundtrack to the film, continuing Pavarotti's musical legacy and celebrating his extraordinary life. See the greatest like you've never seen him before, and listen to the performances that thrilled audiences all around the world. Luciano Pavarotti - The Greatest Hits Order now: https://lnk.to/PavGreatestID Decca are also releasing an incredible greatest hits album, comprising an impressive 71 tracks and over four hours of music, featuring great opera arias, favourite songs and sacred arias, and iconic duets with some of the biggest names in music, including five previously unreleased tracks. A definitive collection for the true Pavarotti superfan. http://pavarottiofficial.com https://www.facebook.com/pavarottiofficial/ Music video by Luciano Pavarotti, James Brown performing It's A Man's World (Stereo). © 2002 Pavarotti International s.r.l. http://vevo.ly/JvXn0X
    https://wn.com/Luciano_Pavarotti,_James_Brown_It's_A_Man's_Man's_Man's_World_(Official_Live_Performance_Video)
    Louisa Johnson smashes James Brown classic | Semi-Final | The X Factor 2015
    2:41

    Louisa Johnson smashes James Brown classic | Semi-Final | The X Factor 2015

    • Order:
    • Duration: 2:41
    • Uploaded Date: 05 Dec 2015
    • views: 18872415
    Visit the official site: http://itv.com/xfactor James Brown might have sung about it being A Man's Man's Man's World, but Louisa just proved it's her night after impressing the Judges with this cover! Facebook: http://on.fb.me/1QVQkBB Twitter: http://bit.ly/LouisaTwitter Instagram: http://bit.ly/LouisaInsta SUBSCRIBE: http://bit.ly/TXFSub Facebook: http://bit.ly/TXFFB Twitter: http://bit.ly/TXFTwi Download The X Factor mobile app: http://bit.ly/TXFapp Watch full episodes on ITV Hub (UK ONLY): http://www.itv.com/hub/the-x-factor
    https://wn.com/Louisa_Johnson_Smashes_James_Brown_Classic_|_Semi_Final_|_The_X_Factor_2015
    James Brown - The Boss
    3:15

    James Brown - The Boss

    • Order:
    • Duration: 3:15
    • Uploaded Date: 05 Jun 2011
    • views: 13700618
    James Brown - The Boss From Album - Black Caeser
    https://wn.com/James_Brown_The_Boss
    James Brown Sings 'The Old Landmark' | The Blues Brothers | TUNE
    3:59

    James Brown Sings 'The Old Landmark' | The Blues Brothers | TUNE

    • Order:
    • Duration: 3:59
    • Uploaded Date: 04 Apr 2022
    • views: 41397
    Reverend Cleophus James (James Brown) sings 'The Old Landmark' as part of a sermon at the Triple Rock Baptist Church, during which Jake Blues (John Belushi) has an epiphany to re-form his old band, the Blues Brothers. What is The Blues Brothers (1980) about? Comedy icons John Belushi and Dan Aykroyd star in the outrageously funny musical comedy The Blues Brothers. After the release of Jake Blues (Belushi) from prison, he and brother Elwood (Aykroyd) take their blues band back on the road in an attempt to raise money for the orphanage where they were raised. Havoc ensues as the brothers seek redemption on their "mission from God." This comedy classic features musical performances by blues legends Ray Charles, James Brown, Aretha Franklin and Cab Calloway. Watch the full movie here: https://www.uphe.com/movies/the-blues-brothers Welcome to TUNE, a channel that celebrates the musical moments in film. From the movie musicals to the musical biopic, we'll be bringing you iconic scenes and the tunes you love! Subscribe here: youtube.com/channel/UCcqcAJ62tsyye-HbXm5GDHA?sub_confirmation=1 #TheBluesBrothers #JamesBrown #JohnBelushi #DanAykroyd #TUNE
    https://wn.com/James_Brown_Sings_'The_Old_Landmark'_|_The_Blues_Brothers_|_Tune
    E013 Jim Brown Campaigning for Louisiana Governor 1987
    24:37

    E013 Jim Brown Campaigning for Louisiana Governor 1987

    • Order:
    • Duration: 24:37
    • Uploaded Date: 19 Jul 2017
    • views: 708
    Unseen footage from the 1991 PBS documentary "Louisiana Boys - Raised on Politics". Watch more http://bit.ly/ytLAB | Stream the film http://bit.ly/LACOLL
    https://wn.com/E013_Jim_Brown_Campaigning_For_Louisiana_Governor_1987
    Jim Brown Louisiana updates
    6:33

    Jim Brown Louisiana updates

    • Order:
    • Duration: 6:33
    • Uploaded Date: 12 Jan 2022
    • views: 9
    What's new on the Jim Brown website reviewing commentary, radio interviews, and national columns.
    https://wn.com/Jim_Brown_Louisiana_Updates
    Inside Louisiana News - Jim Brown (Segment 1)
    6:57

    Inside Louisiana News - Jim Brown (Segment 1)

    • Order:
    • Duration: 6:57
    • Uploaded Date: 16 Sep 2010
    • views: 391
    Jim Brown sat down with Ted Baldwin of Inside Louisiana News and discusses life in politics, rogue prosecutors, life in the media, as well as sharing his views on the political out look.
    https://wn.com/Inside_Louisiana_News_Jim_Brown_(Segment_1)
    James Brown - Please, please, please (Blues Brothers 2000 after credits)
    1:57

    James Brown - Please, please, please (Blues Brothers 2000 after credits)

    • Order:
    • Duration: 1:57
    • Uploaded Date: 08 Oct 2010
    • views: 127869
    https://wn.com/James_Brown_Please,_Please,_Please_(Blues_Brothers_2000_After_Credits)
    The WORST Case of Drug Addiction in the World!😳 #shorts
    0:22

    The WORST Case of Drug Addiction in the World!😳 #shorts

    • Order:
    • Duration: 0:22
    • Uploaded Date: 24 May 2023
    • views: 6337998
    https://wn.com/The_Worst_Case_Of_Drug_Addiction_In_The_World_😳_Shorts
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    James Brown - I Got You (I Feel Good) (Live 8 2005)

    James Brown performing at Live 8's "Final Push" in Edinburgh's Murrayfield Stadium on the 6th July, 2005. Organised by Sir Bob Geldof and The Band Aid Trust to raise money to fight poverty around the world, the event was viewed by around 2 billion people. Subscribe to the channel to stay up to date with all new releases. Subscribe to the channel here: https://www.youtube.com/channel/UCckKR1kDbRKXJArtGYh6drQ?sub_confirmation=1
    4:19
    James Brown - I Got You (I Feel Good) (Live 8 2005)
    James Brown performing at Live 8's "Final Push" in Edinburgh's Murrayfield Stadium on the ...
    published: 18 Oct 2018
    Play in Full Screen
    5:02
    James Brown - It's A Man's Man's Man's World - Live - 11 July 1981 • World of Jazz
    "It's a Man's Man's Man's World" is a song by James Brown and Betty Jean Newsome. Brown re...
    published: 14 Sep 2019
    Play in Full Screen
    5:11
    Michael Jackson and Prince on stage with James Brown (1983)
    Nel video, datato 1983, James Brown chiama sul palco Prince e Michael Jackson, dove quest'...
    published: 21 Apr 2021
    Play in Full Screen
    5:29
    james brown sexy machine
    published: 23 Aug 2020
    Play in Full Screen
    2:46
    James Brown - Papa's Got A Brand New Bag - I Feel Good
    published: 15 May 2013
    Play in Full Screen
    2:46
    James Brown - It's A Man's Man's Man's World
    via http://www.genero.tv Music video by James Brown performing It's A Man's Man's Man's Wo...
    published: 20 Aug 2012
    Play in Full Screen
    5:37
    Eddie Murphy Does JAMES BROWN, ELVIS & STEVIE WONDER
    22 Year Old Eddie Murphy Does Impressions of Three Legends (in 1983)
    published: 12 Oct 2019
    Play in Full Screen
    9:05
    People Get Up And Drive Your Funky Soul (Remix)
    Provided to YouTube by Universal Music Group People Get Up And Drive Your Funky Soul (Rem...
    published: 13 Dec 2018
    Play in Full Screen
    0:57
    Old-school Bootsy Collins Style Funk Beat (James Brown Cover - Soul Power)
    published: 01 Sep 2024
    Play in Full Screen
    4:59
    Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Official Live Performance Video)
    Luciano Pavarotti - The Official Motion Picture Soundtrack Order now: https://lnk.to/PavFi...
    published: 26 Apr 2019
    Play in Full Screen

    James Brown

    James Joseph Brown (May 3, 1933 – December 25, 2006) was an American singer, songwriter, record producer, dancer and bandleader. The founding father of funk music and a major figure of 20th century popular music and dance, he is often referred to as the "Godfather of Soul". In a career that spanned six decades, Brown influenced the development of several music genres.

    Brown began his career as a gospel singer in Toccoa, Georgia. Joining an R&B vocal group called the Avons that later evolved to become the Flames, Brown served as the group's lead singer. First coming to national public attention in the late 1950s as a member of the singing group the Famous Flames with the hit ballads "Please, Please, Please" and "Try Me", Brown built a reputation as a tireless live performer with the Famous Flames and his backing band, sometimes known as the James Brown Band or the James Brown Orchestra. Brown's success peaked in the 1960s with the live album Live at the Apollo and hit singles such as "Papa's Got a Brand New Bag", "I Got You (I Feel Good)" and "It's a Man's Man's Man's World". During the late 1960s, Brown moved from a continuum of blues and gospel-based forms and styles to a profoundly "Africanized" approach to music-making that influenced the development of funk music. By the early 1970s, Brown had fully established the funk sound after the formation of the J.B.s with records such as "Get Up (I Feel Like Being a) Sex Machine" and "The Payback". Brown also became notable for songs of social commentary, including the 1968 hit "Say It Loud - I'm Black and I'm Proud". Brown continued to perform and record until his death in 2006 from congestive heart failure.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    James Brown - It's A Man's Man's Man's World

    via http://www.genero.tv Music video by James Brown performing It's A Man's Man's Man's World. (C) 2012 Universal Records, a Division of UMG Recordings, Inc.
    2:46
    James Brown - It's A Man's Man's Man's World
    via http://www.genero.tv Music video by James Brown performing It's A Man's Man's Man's Wo...
    published: 20 Aug 2012
    Play in Full Screen
    4:59
    Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Official Live Performance Video)
    Luciano Pavarotti - The Official Motion Picture Soundtrack Order now: https://lnk.to/PavFi...
    published: 26 Apr 2019
    Play in Full Screen
    2:41
    Louisa Johnson smashes James Brown classic | Semi-Final | The X Factor 2015
    Visit the official site: http://itv.com/xfactor James Brown might have sung about it bein...
    published: 05 Dec 2015
    Play in Full Screen
    3:15
    James Brown - The Boss
    James Brown - The Boss From Album - Black Caeser
    published: 05 Jun 2011
    Play in Full Screen
    3:59
    James Brown Sings 'The Old Landmark' | The Blues Brothers | TUNE
    Reverend Cleophus James (James Brown) sings 'The Old Landmark' as part of a sermon at the ...
    published: 04 Apr 2022
    Play in Full Screen
    24:37
    E013 Jim Brown Campaigning for Louisiana Governor 1987
    Unseen footage from the 1991 PBS documentary "Louisiana Boys - Raised on Politics". Watch ...
    published: 19 Jul 2017
    Play in Full Screen
    6:33
    Jim Brown Louisiana updates
    What's new on the Jim Brown website reviewing commentary, radio interviews, and national c...
    published: 12 Jan 2022
    Play in Full Screen
    6:57
    Inside Louisiana News - Jim Brown (Segment 1)
    Jim Brown sat down with Ted Baldwin of Inside Louisiana News and discusses life in politic...
    published: 16 Sep 2010
    Play in Full Screen
    1:57
    James Brown - Please, please, please (Blues Brothers 2000 after credits)
    published: 08 Oct 2010
    Play in Full Screen
    0:22
    The WORST Case of Drug Addiction in the World!😳 #shorts
    published: 24 May 2023
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×