'+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 Gunn (filmmaker)

James Gunn (born August 5, 1970) is an American screenwriter, director, producer, novelist, actor, and musician. He started his career as a screenwriter in the late 1990s, writing the scripts for Tromeo and Juliet (1996), Scooby-Doo (2002) and its sequel Scooby-Doo 2: Monsters Unleashed (2004), and the 2004 version of Dawn of the Dead. He then started working also as a director, starting with Slither (2006). He subsequently wrote and directed the web series James Gunn's PG Porn and the superhero films Super (2010) and Guardians of the Galaxy (2014).

Early life

Gunn was born in St. Louis, Missouri. He was raised between St. Louis and Manchester, Missouri. His brothers are actor Sean, actor and political writer Matt, Brian, and former Senior Vice President with Artisan Entertainment Patrick. He also has a sister named Beth. Gunn's father, James F. Gunn, is a partner and corporate attorney with the law firm Thompson Coburn in St. Louis. Gunn's surname is derived from the Irish name MacGilGunn, meaning "sons to the servants of the god of the dead".

James Gunn

James Gunn may refer to:

  • Sir James Gunn (explorer) of Scotland, member of Henry Sinclair's survey expedition
  • James Gunn (senator) (1753–1801), American Senator from Georgia
  • James Gunn (congressman) (1843–1911), American Congressman from Idaho
  • James Gunn (politician), Tasmanian politician from the electoral district of Sorell (1872–1882)
  • Sir Herbert James Gunn (1893–1964), British landscape and portrait painter
  • James Gunn (screenwriter) (J. Edward, 1920–1966), American film and television screenwriter
  • James E. Gunn (writer) (J. Edwin, born 1923), American science fiction scholar and writer
  • James E. Gunn (astronomer) (J. Edward, born 1938), American astronomer
  • James Gunn (filmmaker) (born 1970), American filmmaker
  • James E. Gunn (writer)

    James Edwin Gunn (born July 12, 1923) is an American science fiction writer, editor, scholar, and anthologist. His work as an editor of anthologies includes the six-volume Road to Science Fiction series. He won the Hugo Award for "Best Related Work" in 1983 and he has won or been nominated for several other awards for his non-fiction works in the field of science fiction studies. The Science Fiction and Fantasy Writers of America made him its 24th Grand Master in 2007 and he was inducted by the Science Fiction and Fantasy Hall of Fame in 2015.

    Gunn is a professor emeritus of English, and the founding director of the Center for the Study of Science Fiction, both at the University of Kansas.

    Biography

    Gunn served in the U.S. Navy during World War II, after which he attended the University of Kansas, earning a Bachelor of Science in Journalism in 1947 and a Masters of Arts in English in 1951. Gunn went on to become a faculty member of the University of Kansas, where he served as the university's director of public relations and as a Professor of English, specializing in science fiction and fiction writing. He is now a professor emeritus and director of the Center for the Study of Science Fiction, which awards the annual John W. Campbell Memorial Award for best novel and the Theodore Sturgeon Memorial Award at the Campbell Conference in Lawrence, Kansas, every summer.

    James E. Gunn (astronomer)

    James Edward Gunn (born October 21, 1938) is the Eugene Higgins Professor of Astronomy at Princeton University. Gunn's early theoretical work in astronomy has helped establish the current understanding of how galaxies form, and the properties of the space between galaxies. He also suggested important observational tests to confirm the presence of dark matter in galaxies, and predicted the existence of a Gunn–Peterson trough in the spectra of distant quasars.

    Much of Gunn's later work has involved leadership in major observational projects. He developed plans for one of the first uses of digital camera technology for space observation, a project that led to the Sloan Digital Sky Survey, the most extensive three-dimensional mapping of the universe ever undertaken. He also played a major role with the Wide Field and Planetary Camera on the Hubble Space Telescope.

    Gunn earned his bachelor's degree at Rice University in Houston, Texas, in 1961, and his Ph.D. from the California Institute of Technology (Caltech) in 1966. He joined the faculty of Princeton University two years later. Subsequently, he worked at the University of California at Berkeley, Caltech, before returning to Princeton. He is married to the astronomer Gillian Knapp and they have two children, Humberto and Marleny Gunn.

    Podcasts:

    • "BORING AND UNFUNNY!" James Gunn's DCU Off to a Rocky Start with 'Creature Commandos'

      Original Livestream: https://youtu.be/rlYxC_S6NcI Featuring Dan Vasc @DanVasc Nerdrotic Daily is edited & co-managed by @PierryChan Become a Nerdrotic Daily Member! youtube.com/c/NerdroticDaily/join Nerdrotic Merch Store! https://mixedtees.com/nerdrotic FNT T-Shirt! https://mixedtees.com/nerdrotic/friday-night-tights Sponsored by MetaPCs! https://www.metapcs.com/creator-nerdrotic/ Sponsored by GEEK GRIND! Use Promo Code "Nerdrotic" for 20% off: https://geekgrindcoffee.com/collections/nerdrotic-coffee #CreatureCommandos #JamesGunn #DCStudios

      published: 07 Dec 2024
    • James Gunn talks SUPERMAN, CREATURE COMMANDOS, BATMAN, LANTERNS, Marvel I Happy Sad Confused

      James Gunn takes a break from being one of the busiest men in showbiz (running the creative for the DCU!) to chat with Josh about CREATURE COMMANDOS, SUPERMAN, BATMAN, and so much more. #happysadconfused #joshhorowitz #jamesgunn #creaturecommandos #superman To get early access to all of Josh's interviews, go to patreon.com/happysadconfused Make sure you SUBSCRIBE to the channel so you don't miss any of Josh's interviews! SUPPORT THE SHOW BY SUPPORTING OUR SPONSORS! Uncommon Goods – Visit UncommonGoods.com/podcast/HappySad for 15% off BetterHelp -- Visit BetterHelp.com/HSC for 10% off UPCOMING LIVE EVENTS 12/18 – Billy Eichner at 92Y in NY – https://www.92ny.org/event/billy-eichner 12/19 -- Ben Schwartz at 92Y in NY -- ⁠https://www.92ny.org/event/ben-schwartz Listen to the podcast...

      published: 05 Dec 2024
    • SUPERMAN – CCXP Brazil Trailer (2025) James Gunn, David Corenswet

      #Superman #DCStudios #WarnerBros Take a look at our 'CCXP Brazil Trailer' concept for DC Studios' upcoming movie SUPERMAN (2025) (More Info About This Video Down Below!) Movie logo By Paulo Henrique (Rycky Freitas) https://www.artstation.com/ryckyfreitasdesign (Give them a follow for more!) 𝗚𝗲𝘁 𝗡𝗼𝗿𝗱𝗩𝗣𝗡: https://bit.ly/3cSyrYO Use Coupon Code: SCRNCULT Use the code to get 68% off on a 2 Year Plan + 4 Additional Months FREE! Let us know what you think about it in the comments down below! We've got more cool stuff for you! Subscribe! ► http://bit.ly/2NyxDcI We also post cool stuff & updates on Instagram! Follow ► http://bit.ly/2HHjbeT The inspiration behind this video: Finally, the most groundbreaking project being explored at CCXP is James Gunn's 2025 movie, Superman. This upcoming ...

      published: 07 Dec 2024
    • James Gunn on Creature Commandos and Killing Nazis in His New DC Universe

      With the animated series Creature Commandos gearing up for a December 5 debut on Max, James Gunn and Peter Safran’s new DCU is almost here. The show stars the voices of Frank Grillo (“Rick Flag Sr.”), Maria Bakalova (“Princess Ilana”), David Harbour ("Eric Frankenstein"), Indira Varma ("the Bride"), Zoë Chao (“Nina Mazursky”), Sean Gunn (“GI Robot” and “Weasel”), Steve Agee (“Economos”), Alan Tudyk (“Dr. Phosphorus”), and Viola Davis ("Amanda Waller"). We recently sat down to discuss the animated show with James Gunn, who is Executive Producer, wrote all seven episodes of Season 1, and also happens to be DC Studios Co-Chair and CEO., and Dean Lorey, Executive Producer and Showrunner. The Creature Commandos is, like the Suicide Squad, yet another team of misfit mercenaries handpicked by A...

      published: 18 Nov 2024
    • Does Canon Even Matter Anymore? James Gunn Says 'None of It Is Real' | Creature Commandos

      Hear what James Gunn has to say about canon! For better or worse, Hollywood is what it is today in large part thanks to the concept of the shared universe. And the shared universe style of storytelling, of course, rose to popularity because of the huge success of Marvel Studios over the past 15 years. In other words, because of canon. The other studios famously – or is it infamously – tried to follow the shared universe trend, usually failing to replicate Marvel’s big wins. And that includes the DCEU, a series that had its moments but never really found its footing as it tried to be the next MCU. But that’s where James Gunn comes in. As he launches his new DC Universe with Creature Commandos, and then the new 2025 Superman movie after that, he told us the following: "One of the weird thi...

      published: 04 Dec 2024
    • Chapter 1 - Gods and Monsters | DC Studios | DC

      James Gunn shares his vision for the future of the DC Universe and the upcoming slate from DC Studios. Get ready to see stories you never imagined possible before on the big screen. Which project are you most excited about? Subscribe To DC: https://www.youtube.com/dcentertainment #DC #DCComics Connect with DC Online: Follow DC on INSTAGRAM: https://www.instagram.com/dccomics/ Like DC on FACEBOOK: https://www.facebook.com/dc/ Follow DC on TWITTER: https://twitter.com/DCComics Visit the DC WEBSITE: https://www.dccomics.com/ The official home of Batman, Superman, Wonder Woman, Green Lantern, The Flash and the rest of The World's Greatest Super Heroes!

      published: 31 Jan 2023
    • CREATURE COMMANDOS: COMEÇOU O NOVO DCU DO JAMES GUNN - Análise COMPLETA.

      🏁CHEGAMOS NA FINAL! 💪😎 Bora mostrar a força da comunidade nerd? ✓ - Creator do Ano: https://premioibest.vote/164424475 ✓ - Youtuber do Ano: https://premioibest.vote/988266606 ✓ - Influenciador de Cinema, tv e Streaming: https://premioibest.vote/955042429 ✓ - Influenciador de Opinião: https://premioibest.vote/706925373 ✓ - Fandom Nerdolas: https://premioibest.vote/594161065 ✓ - Influenciador Tuiteiro: https://premioibest.vote/489890758 ✓ - Influenciador de Economia e Negócios: https://premioibest.vote/382684040 ✓ - Influenciador São Paulo: https://premioibest.vote/985523944 #CreatureCommandos #DC #Serie FINALMENTE ESTREOU O NOVO DCU DO JAMES GUNN! Tudo sobre CREATURE COMMANDOS" Você sabia que o novo Universo Cinematográfico da DC começou com uma animação? Creature Commandos ...

      published: 08 Dec 2024
    • James Gunn Reveals What's Still Canon in the DCU & Talks Creature Commandos, Batman, and Superman

      Now that we're weeks away from the animated series Creature Commandos, we're officially kicking off the brand-new DC Universe with Chapter 1: Gods and Monsters. Since the brand's massive shift announcement in 2022, co-CEO James Gunn has been nonstop busy between his involvement on this series and 2025's Superman and Peacemaker Season 2. Considering the multi-hyphenate took over what's now heralded as the DCU after helming one of Marvel Studio's most epic superhero trilogies, it's little wonder this new universe draws so many comparisons and expectations — but in this interview, Gunn sets the record straight. Creature Commandos, which features the vocal talents of David Harbour, Zoë Chao, Alan Tudyk, Frank Grillo, Sean Gunn, Viola Davis, and Indira Varma (all of whom could make live-action...

      published: 26 Nov 2024
    • JAMES GUNN INTRODUCING DARKSEID AS THE MAIN VILLAIN FOR THE DCU?!!!!

      #spiderman #superman #superhero #marvel #foryou #fyp #justiceleague #anime #theflash #gaming #hiphop #fortnite #video #unboxing #thebatman #netflix #captainamerica #livestream #streamer #shorts #marvelstudios https://discord.gg/JPB9JpJG https://x.com/Truth31The

      published: 08 Dec 2024
    • James Gunn says BOOSTER GOLD and THE BRAVE & THE BOLD aren't ready to be made

      James Gunn explains some DC projects just aren't ready yet. #happysadconfused #joshhorowitz #batman #boostergold #jamesgunn WATCH THE FULL 45 MINUTE JAMES GUNN CHAT HERE! https://youtu.be/0y2RCSQC95o?si=FkKkfJfQ0jKEc409 Subscribe now to our new clips channel so you don't miss any of the best moments from Josh's interviews! https://www.youtube.com/@JoshHorowitzClips To get early access to all of Josh's interviews, go to patreon.com/happysadconfused SUPPORT THE SHOW BY SUPPORTING OUR SPONSORS! Uncommon Goods – Visit UncommonGoods.com/podcast/HappySad for 15% off BetterHelp -- Visit BetterHelp.com/HSC for 10% off UPCOMING LIVE EVENTS 12/18 – Billy Eichner at 92Y in NY – https://www.92ny.org/event/billy-eichner 12/19 -- Ben Schwartz at 92Y in NY -- ⁠https://www.92ny.org/event/ben-sch...

      published: 06 Dec 2024
    "BORING AND UNFUNNY!" James Gunn's DCU Off to a Rocky Start with 'Creature Commandos'
    10:40

    "BORING AND UNFUNNY!" James Gunn's DCU Off to a Rocky Start with 'Creature Commandos'

    • Order:
    • Duration: 10:40
    • Uploaded Date: 07 Dec 2024
    • views: 63080
    Original Livestream: https://youtu.be/rlYxC_S6NcI Featuring Dan Vasc @DanVasc Nerdrotic Daily is edited & co-managed by @PierryChan Become a Nerdrotic Daily Member! youtube.com/c/NerdroticDaily/join Nerdrotic Merch Store! https://mixedtees.com/nerdrotic FNT T-Shirt! https://mixedtees.com/nerdrotic/friday-night-tights Sponsored by MetaPCs! https://www.metapcs.com/creator-nerdrotic/ Sponsored by GEEK GRIND! Use Promo Code "Nerdrotic" for 20% off: https://geekgrindcoffee.com/collections/nerdrotic-coffee #CreatureCommandos #JamesGunn #DCStudios
    https://wn.com/Boring_And_Unfunny_James_Gunn's_Dcu_Off_To_A_Rocky_Start_With_'Creature_Commandos'
    James Gunn talks SUPERMAN, CREATURE COMMANDOS, BATMAN, LANTERNS, Marvel I Happy Sad Confused
    48:35

    James Gunn talks SUPERMAN, CREATURE COMMANDOS, BATMAN, LANTERNS, Marvel I Happy Sad Confused

    • Order:
    • Duration: 48:35
    • Uploaded Date: 05 Dec 2024
    • views: 78435
    James Gunn takes a break from being one of the busiest men in showbiz (running the creative for the DCU!) to chat with Josh about CREATURE COMMANDOS, SUPERMAN, BATMAN, and so much more. #happysadconfused #joshhorowitz #jamesgunn #creaturecommandos #superman To get early access to all of Josh's interviews, go to patreon.com/happysadconfused Make sure you SUBSCRIBE to the channel so you don't miss any of Josh's interviews! SUPPORT THE SHOW BY SUPPORTING OUR SPONSORS! Uncommon Goods – Visit UncommonGoods.com/podcast/HappySad for 15% off BetterHelp -- Visit BetterHelp.com/HSC for 10% off UPCOMING LIVE EVENTS 12/18 – Billy Eichner at 92Y in NY – https://www.92ny.org/event/billy-eichner 12/19 -- Ben Schwartz at 92Y in NY -- ⁠https://www.92ny.org/event/ben-schwartz Listen to the podcast on... APPLE: https://podcasts.apple.com/us/podcast/happy-sad-confused/id827905050 SPOTIFY: https://open.spotify.com/show/6cQa5xnTYHaIh6SAK4gW3w Josh on Twitter: https://twitter.com/joshuahorowitz Josh on Instagram: https://www.instagram.com/joshuahorowitz Josh on TikTok: @happysadconfused 00:00 Introduction 01:29 balancing projects 02:37 pets 05:23 CREATURE COMMANDOS 12:41 Ad -- Uncommon Goods 14:32 favorite origin stories 16:18 casting 20:47 different genres 22:08 BOOSTER GOLD 23:40 Marvel 26:41 creative mandates 30:50 SUPERMAN 32:56 LANTERNS 35:12 BATMAN 36:48 WATCHMEN 38:01 future 38:35 Marvel's plans 39:15 GUARDIANS 41:11 Bautista as Bane? 42:17 profoundly random questions
    https://wn.com/James_Gunn_Talks_Superman,_Creature_Commandos,_Batman,_Lanterns,_Marvel_I_Happy_Sad_Confused
    SUPERMAN – CCXP Brazil Trailer (2025) James Gunn, David Corenswet
    1:14

    SUPERMAN – CCXP Brazil Trailer (2025) James Gunn, David Corenswet

    • Order:
    • Duration: 1:14
    • Uploaded Date: 07 Dec 2024
    • views: 140373
    #Superman #DCStudios #WarnerBros Take a look at our 'CCXP Brazil Trailer' concept for DC Studios' upcoming movie SUPERMAN (2025) (More Info About This Video Down Below!) Movie logo By Paulo Henrique (Rycky Freitas) https://www.artstation.com/ryckyfreitasdesign (Give them a follow for more!) 𝗚𝗲𝘁 𝗡𝗼𝗿𝗱𝗩𝗣𝗡: https://bit.ly/3cSyrYO Use Coupon Code: SCRNCULT Use the code to get 68% off on a 2 Year Plan + 4 Additional Months FREE! Let us know what you think about it in the comments down below! We've got more cool stuff for you! Subscribe! ► http://bit.ly/2NyxDcI We also post cool stuff & updates on Instagram! Follow ► http://bit.ly/2HHjbeT The inspiration behind this video: Finally, the most groundbreaking project being explored at CCXP is James Gunn's 2025 movie, Superman. This upcoming remake of the beloved superhero movie stars David Corenswet as the Man of Steel alongside Rachel Brosnahan as Lois Lane, Nicholas Hoult as Lex Luthor, and more. Little has been revealed about Superman so far, but audiences are desperate to see the movie regardless. Hopes for the trailer are even higher since Gunn recently revealed that he has the trailer on his computer, ready to be sent out at any moment. If the Superman trailer comes out at CCXP, this will likely be the most monumental update of the entire convention. Superman is a long-running and well-loved franchise, which means expectations are high for this new remake. Gunn has to prove that remaking Superman is worth it. Furthermore, as the first installment in the DC Universe, Superman has a lot riding on its success. Therefore, its impending trailer at CCXP will be audiences' very first chance to see whether Superman will be a hit or a flop. Thank You So Much For Watching! Stay Tuned! Stay Buzzed! ──────────────────
    https://wn.com/Superman_–_Ccxp_Brazil_Trailer_(2025)_James_Gunn,_David_Corenswet
    James Gunn on Creature Commandos and Killing Nazis in His New DC Universe
    18:53

    James Gunn on Creature Commandos and Killing Nazis in His New DC Universe

    • Order:
    • Duration: 18:53
    • Uploaded Date: 18 Nov 2024
    • views: 114274
    With the animated series Creature Commandos gearing up for a December 5 debut on Max, James Gunn and Peter Safran’s new DCU is almost here. The show stars the voices of Frank Grillo (“Rick Flag Sr.”), Maria Bakalova (“Princess Ilana”), David Harbour ("Eric Frankenstein"), Indira Varma ("the Bride"), Zoë Chao (“Nina Mazursky”), Sean Gunn (“GI Robot” and “Weasel”), Steve Agee (“Economos”), Alan Tudyk (“Dr. Phosphorus”), and Viola Davis ("Amanda Waller"). We recently sat down to discuss the animated show with James Gunn, who is Executive Producer, wrote all seven episodes of Season 1, and also happens to be DC Studios Co-Chair and CEO., and Dean Lorey, Executive Producer and Showrunner. The Creature Commandos is, like the Suicide Squad, yet another team of misfit mercenaries handpicked by Amanda Waller, only this time they are specifically made up of just monsters. And man, what a group they are... During our extended interview with Gunn and Lorey, we spoke not just about the debut of Creature Commandos, which also happens to be the debut of the new DC Universe, but also about some of Gunn's plans for that movie world -- from characters appearing in animation and live-action like Superman, to Lanterns casting, to Justice League continuity in Peacemaker Season 2, to what's DC canon and what's not these days, and much more. So be sure to watch the whole chat!
    https://wn.com/James_Gunn_On_Creature_Commandos_And_Killing_Nazis_In_His_New_DC_Universe
    Does Canon Even Matter Anymore? James Gunn Says 'None of It Is Real' | Creature Commandos
    12:51

    Does Canon Even Matter Anymore? James Gunn Says 'None of It Is Real' | Creature Commandos

    • Order:
    • Duration: 12:51
    • Uploaded Date: 04 Dec 2024
    • views: 16839
    Hear what James Gunn has to say about canon! For better or worse, Hollywood is what it is today in large part thanks to the concept of the shared universe. And the shared universe style of storytelling, of course, rose to popularity because of the huge success of Marvel Studios over the past 15 years. In other words, because of canon. The other studios famously – or is it infamously – tried to follow the shared universe trend, usually failing to replicate Marvel’s big wins. And that includes the DCEU, a series that had its moments but never really found its footing as it tried to be the next MCU. But that’s where James Gunn comes in. As he launches his new DC Universe with Creature Commandos, and then the new 2025 Superman movie after that, he told us the following: "One of the weird things to me is none of this is real. It may be alarming to people, but none of it is real." Basically, as far as James Gunn is concerned, canon has become way more important than it should be. And his new DCU is going to reflect that point of view, big time. As a filmmaker who has worked for both Marvel and DC, and is now actually in charge of DC Studios along with his partner Peter Safran, James Gunn has a vision for his newly rebooted take on the world of Superman, Batman, Wonder Woman and the rest. It’s clear that for the Guardians of the Galaxy and The Suicide Squad director, canon and continuity and shared universes aren’t as important as plain old good storytelling. Watch the full video for Gunn's thoughts on how important, or not, canon is! #DC #Movies #JamesGunn
    https://wn.com/Does_Canon_Even_Matter_Anymore_James_Gunn_Says_'None_Of_It_Is_Real'_|_Creature_Commandos
    Chapter 1 - Gods and Monsters | DC Studios | DC
    6:00

    Chapter 1 - Gods and Monsters | DC Studios | DC

    • Order:
    • Duration: 6:00
    • Uploaded Date: 31 Jan 2023
    • views: 2574359
    James Gunn shares his vision for the future of the DC Universe and the upcoming slate from DC Studios. Get ready to see stories you never imagined possible before on the big screen. Which project are you most excited about? Subscribe To DC: https://www.youtube.com/dcentertainment #DC #DCComics Connect with DC Online: Follow DC on INSTAGRAM: https://www.instagram.com/dccomics/ Like DC on FACEBOOK: https://www.facebook.com/dc/ Follow DC on TWITTER: https://twitter.com/DCComics Visit the DC WEBSITE: https://www.dccomics.com/ The official home of Batman, Superman, Wonder Woman, Green Lantern, The Flash and the rest of The World's Greatest Super Heroes!
    https://wn.com/Chapter_1_Gods_And_Monsters_|_DC_Studios_|_DC
    CREATURE COMMANDOS: COMEÇOU O NOVO DCU DO JAMES GUNN - Análise COMPLETA.
    12:11

    CREATURE COMMANDOS: COMEÇOU O NOVO DCU DO JAMES GUNN - Análise COMPLETA.

    • Order:
    • Duration: 12:11
    • Uploaded Date: 08 Dec 2024
    • views: 67178
    🏁CHEGAMOS NA FINAL! 💪😎 Bora mostrar a força da comunidade nerd? ✓ - Creator do Ano: https://premioibest.vote/164424475 ✓ - Youtuber do Ano: https://premioibest.vote/988266606 ✓ - Influenciador de Cinema, tv e Streaming: https://premioibest.vote/955042429 ✓ - Influenciador de Opinião: https://premioibest.vote/706925373 ✓ - Fandom Nerdolas: https://premioibest.vote/594161065 ✓ - Influenciador Tuiteiro: https://premioibest.vote/489890758 ✓ - Influenciador de Economia e Negócios: https://premioibest.vote/382684040 ✓ - Influenciador São Paulo: https://premioibest.vote/985523944 #CreatureCommandos #DC #Serie FINALMENTE ESTREOU O NOVO DCU DO JAMES GUNN! Tudo sobre CREATURE COMMANDOS" Você sabia que o novo Universo Cinematográfico da DC começou com uma animação? Creature Commandos é a porta de entrada para o tão esperado DCU de James Gunn, e neste vídeo explicamos tudo sobre essa estreia. Por que o James Gunn decidiu começar com uma animação? Creature Commandos faz parte oficial do novo universo DC? O que resta do antigo DCU neste recomeço? Quais foram os maiores acertos e os tropeços dessa nova fase? Vamos discutir os detalhes mais adultos e macabros da animação, sua relação com Esquadrão Suicida e Pacificador, e o que ela significa para o futuro da DC. Este vídeo é embasado nos quadrinhos e traz análises completas para quem ama a DC, cinema e cultura pop. Se você quer entender as decisões do James Gunn e saber mais sobre a nova fase da Warner, esse vídeo é para você. Não perca as curiosidades e teorias sobre o novo capítulo da DC. 💪😎 WheyNerd já disponível para compras, acesse: https://loja.wheynerd.com.br/ Seja um afiliado: https://afiliados.wheynerd.com.br/register 💡 𝗔𝗽𝗼𝗶𝗲 𝗻𝗼𝘀𝘀𝗼 𝗰𝗮𝗻𝗮𝗹: ✓ Crie sua conta na Hotmart e seja um afiliado: https://hotm.art/PJHotmartAfiliados ✓Você quer viver de Youtube? → https://rebrand.ly/viver-de-youtube ✓ Assine o DankiClub e tenha acesso as melhores aulas de Tecnologia e I.A do mercado: https://dankiclub.com/ 📧 𝐂𝐨𝐧𝐭𝐚𝐭𝐨: ✓ 𝑨𝒏𝒖𝒏𝒄𝒊𝒆 → comercial@einerd.com.br 🔔 𝐏𝐞𝐭𝐞𝐫 𝐉𝐨𝐫𝐝𝐚𝐧: ✓ Instagram e Facebook → @petjordan ✓ Meu canal de viagem e vlogs → https://www.youtube.com/@malafeitatv 🔔 Breno Jordan: ✓ Instagram e TikTok → @brenojordan_ ♬ 𝘔𝘶́𝘴𝘪𝘤𝘢𝘴: ✓ Music by Epidemic Sound
    https://wn.com/Creature_Commandos_Começou_O_Novo_Dcu_Do_James_Gunn_Análise_Completa.
    James Gunn Reveals What's Still Canon in the DCU & Talks Creature Commandos, Batman, and Superman
    19:56

    James Gunn Reveals What's Still Canon in the DCU & Talks Creature Commandos, Batman, and Superman

    • Order:
    • Duration: 19:56
    • Uploaded Date: 26 Nov 2024
    • views: 63574
    Now that we're weeks away from the animated series Creature Commandos, we're officially kicking off the brand-new DC Universe with Chapter 1: Gods and Monsters. Since the brand's massive shift announcement in 2022, co-CEO James Gunn has been nonstop busy between his involvement on this series and 2025's Superman and Peacemaker Season 2. Considering the multi-hyphenate took over what's now heralded as the DCU after helming one of Marvel Studio's most epic superhero trilogies, it's little wonder this new universe draws so many comparisons and expectations — but in this interview, Gunn sets the record straight. Creature Commandos, which features the vocal talents of David Harbour, Zoë Chao, Alan Tudyk, Frank Grillo, Sean Gunn, Viola Davis, and Indira Varma (all of whom could make live-action appearances as their series characters), is the first official project that will restart the on-screen DCU, but fans shouldn't be expecting the same formulaic roadmap as the MCU. Yes, there is an outline of which characters Gunn intends to explore, but nothing is going to be churned out without the perfect script. In this conversation with Collider's Steve Weintraub, Creature Commandos showrunner Dean Lorey and Gunn tell us, "It all comes down to the writing." If the screenplay isn't perfect, the project isn't moving forward. When asked about his iteration of Batman, Gunn says there's no pressure to meet a timeline-specific date. He laments the idea of filmmakers wasting potential on stories with no third act, and drops Supergirl: Woman of Tomorrow as the prime example of a green-lit series that was script-ready. The DC duo also discuss the deeply emotional narrative of Creature Commandos, how "this show, at its core, is really a tragedy," and addresses fan questions like what's still canon from before, what's with Rick Flag Sr.'s hair, and tons more. #creaturecommandos #jamesgunn #superman For interviews, movie reviews, and more visit https://collider.com FOLLOW US ON SOCIAL https://twitter.com/collider https://instagram.com/collider https://facebook.com/collider
    https://wn.com/James_Gunn_Reveals_What's_Still_Canon_In_The_Dcu_Talks_Creature_Commandos,_Batman,_And_Superman
    JAMES GUNN INTRODUCING DARKSEID AS THE MAIN VILLAIN FOR THE DCU?!!!!
    1:04

    JAMES GUNN INTRODUCING DARKSEID AS THE MAIN VILLAIN FOR THE DCU?!!!!

    • Order:
    • Duration: 1:04
    • Uploaded Date: 08 Dec 2024
    • views: 726
    #spiderman #superman #superhero #marvel #foryou #fyp #justiceleague #anime #theflash #gaming #hiphop #fortnite #video #unboxing #thebatman #netflix #captainamerica #livestream #streamer #shorts #marvelstudios https://discord.gg/JPB9JpJG https://x.com/Truth31The
    https://wn.com/James_Gunn_Introducing_Darkseid_As_The_Main_Villain_For_The_Dcu
    James Gunn says BOOSTER GOLD and THE BRAVE & THE BOLD aren't ready to be made
    2:52

    James Gunn says BOOSTER GOLD and THE BRAVE & THE BOLD aren't ready to be made

    • Order:
    • Duration: 2:52
    • Uploaded Date: 06 Dec 2024
    • views: 100670
    James Gunn explains some DC projects just aren't ready yet. #happysadconfused #joshhorowitz #batman #boostergold #jamesgunn WATCH THE FULL 45 MINUTE JAMES GUNN CHAT HERE! https://youtu.be/0y2RCSQC95o?si=FkKkfJfQ0jKEc409 Subscribe now to our new clips channel so you don't miss any of the best moments from Josh's interviews! https://www.youtube.com/@JoshHorowitzClips To get early access to all of Josh's interviews, go to patreon.com/happysadconfused SUPPORT THE SHOW BY SUPPORTING OUR SPONSORS! Uncommon Goods – Visit UncommonGoods.com/podcast/HappySad for 15% off BetterHelp -- Visit BetterHelp.com/HSC for 10% off UPCOMING LIVE EVENTS 12/18 – Billy Eichner at 92Y in NY – https://www.92ny.org/event/billy-eichner 12/19 -- Ben Schwartz at 92Y in NY -- ⁠https://www.92ny.org/event/ben-schwartz Listen to the podcast on... APPLE: https://podcasts.apple.com/us/podcast/happy-sad-confused/id827905050 SPOTIFY: https://open.spotify.com/show/6cQa5xnTYHaIh6SAK4gW3w Josh on Twitter: https://twitter.com/joshuahorowitz Josh on Instagram: https://www.instagram.com/joshuahorowitz Josh on TikTok: @happysadconfused
    https://wn.com/James_Gunn_Says_Booster_Gold_And_The_Brave_The_Bold_Aren't_Ready_To_Be_Made
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • 10:40
      "BORING AND UNFUNNY!" James Gunn's DCU Off to a Rocky Start with 'Creature Commandos'remove from playlist
    • James Gunn talks SUPERMAN, CREATURE COMMANDOS, BATMAN, LANTERNS, Marvel I Happy Sad Confused
      48:35
      James Gunn talks SUPERMAN, CREATURE COMMANDOS, BATMAN, LANTERNS, Marvel I Happy Sad Confusedremove from playlist
    • SUPERMAN – CCXP Brazil Trailer (2025) James Gunn, David Corenswet
      1:14
      SUPERMAN – CCXP Brazil Trailer (2025) James Gunn, David Corenswetremove from playlist
    • James Gunn on Creature Commandos and Killing Nazis in His New DC Universe
      18:53
      James Gunn on Creature Commandos and Killing Nazis in His New DC Universeremove from playlist
    • Does Canon Even Matter Anymore? James Gunn Says 'None of It Is Real' | Creature Commandos
      12:51
      Does Canon Even Matter Anymore? James Gunn Says 'None of It Is Real' | Creature Commandosremove from playlist
    • Chapter 1 - Gods and Monsters | DC Studios | DC
      6:00
      Chapter 1 - Gods and Monsters | DC Studios | DCremove from playlist
    • CREATURE COMMANDOS: COMEÇOU O NOVO DCU DO JAMES GUNN - Análise COMPLETA.
      12:11
      CREATURE COMMANDOS: COMEÇOU O NOVO DCU DO JAMES GUNN - Análise COMPLETA.remove from playlist
    • James Gunn Reveals What's Still Canon in the DCU & Talks Creature Commandos, Batman, and Superman
      19:56
      James Gunn Reveals What's Still Canon in the DCU & Talks Creature Commandos, Batman, and Supermanremove from playlist
    • JAMES GUNN INTRODUCING DARKSEID AS THE MAIN VILLAIN FOR THE DCU?!!!!
      1:04
      JAMES GUNN INTRODUCING DARKSEID AS THE MAIN VILLAIN FOR THE DCU?!!!!remove from playlist
    • James Gunn says BOOSTER GOLD and THE BRAVE & THE BOLD aren't ready to be made
      2:52
      James Gunn says BOOSTER GOLD and THE BRAVE & THE BOLD aren't ready to be maderemove from playlist
    PLAYLIST TIME: 0:00 / 2:14:16

    "BORING AND UNFUNNY!" James Gunn's DCU Off to a Rocky Start with 'Creature Commandos'

    Original Livestream: https://youtu.be/rlYxC_S6NcI Featuring Dan Vasc @DanVasc Nerdrotic Daily is edited & co-managed by @PierryChan Become a Nerdrotic Daily Member! youtube.com/c/NerdroticDaily/join Nerdrotic Merch Store! https://mixedtees.com/nerdrotic FNT T-Shirt! https://mixedtees.com/nerdrotic/friday-night-tights Sponsored by MetaPCs! https://www.metapcs.com/creator-nerdrotic/ Sponsored by GEEK GRIND! Use Promo Code "Nerdrotic" for 20% off: https://geekgrindcoffee.com/collections/nerdrotic-coffee #CreatureCommandos #JamesGunn #DCStudios
    10:40
    "BORING AND UNFUNNY!" James Gunn's DCU Off to a Rocky Start with 'Creature Commandos'
    Original Livestream: https://youtu.be/rlYxC_S6NcI Featuring Dan Vasc @DanVasc Nerdrotic...
    published: 07 Dec 2024
    Play in Full Screen
    48:35
    James Gunn talks SUPERMAN, CREATURE COMMANDOS, BATMAN, LANTERNS, Marvel I Happy Sad Confused
    James Gunn takes a break from being one of the busiest men in showbiz (running the creativ...
    published: 05 Dec 2024
    Play in Full Screen
    1:14
    SUPERMAN – CCXP Brazil Trailer (2025) James Gunn, David Corenswet
    #Superman #DCStudios #WarnerBros Take a look at our 'CCXP Brazil Trailer' concept for DC ...
    published: 07 Dec 2024
    Play in Full Screen
    18:53
    James Gunn on Creature Commandos and Killing Nazis in His New DC Universe
    With the animated series Creature Commandos gearing up for a December 5 debut on Max, Jame...
    published: 18 Nov 2024
    Play in Full Screen
    12:51
    Does Canon Even Matter Anymore? James Gunn Says 'None of It Is Real' | Creature Commandos
    Hear what James Gunn has to say about canon! For better or worse, Hollywood is what it is ...
    published: 04 Dec 2024
    Play in Full Screen
    6:00
    Chapter 1 - Gods and Monsters | DC Studios | DC
    James Gunn shares his vision for the future of the DC Universe and the upcoming slate from...
    published: 31 Jan 2023
    Play in Full Screen
    12:11
    CREATURE COMMANDOS: COMEÇOU O NOVO DCU DO JAMES GUNN - Análise COMPLETA.
    🏁CHEGAMOS NA FINAL! 💪😎 Bora mostrar a força da comunidade nerd? ✓ - Creator do Ano: https:...
    published: 08 Dec 2024
    Play in Full Screen
    19:56
    James Gunn Reveals What's Still Canon in the DCU & Talks Creature Commandos, Batman, and Superman
    Now that we're weeks away from the animated series Creature Commandos, we're officially ki...
    published: 26 Nov 2024
    Play in Full Screen
    1:04
    JAMES GUNN INTRODUCING DARKSEID AS THE MAIN VILLAIN FOR THE DCU?!!!!
    #spiderman #superman #superhero #marvel #foryou #fyp #justiceleague #anime #theflash #gami...
    published: 08 Dec 2024
    Play in Full Screen
    2:52
    James Gunn says BOOSTER GOLD and THE BRAVE & THE BOLD aren't ready to be made
    James Gunn explains some DC projects just aren't ready yet. #happysadconfused #joshhorowit...
    published: 06 Dec 2024
    Play in Full Screen

    James Gunn (filmmaker)

    James Gunn (born August 5, 1970) is an American screenwriter, director, producer, novelist, actor, and musician. He started his career as a screenwriter in the late 1990s, writing the scripts for Tromeo and Juliet (1996), Scooby-Doo (2002) and its sequel Scooby-Doo 2: Monsters Unleashed (2004), and the 2004 version of Dawn of the Dead. He then started working also as a director, starting with Slither (2006). He subsequently wrote and directed the web series James Gunn's PG Porn and the superhero films Super (2010) and Guardians of the Galaxy (2014).

    Early life

    Gunn was born in St. Louis, Missouri. He was raised between St. Louis and Manchester, Missouri. His brothers are actor Sean, actor and political writer Matt, Brian, and former Senior Vice President with Artisan Entertainment Patrick. He also has a sister named Beth. Gunn's father, James F. Gunn, is a partner and corporate attorney with the law firm Thompson Coburn in St. Louis. Gunn's surname is derived from the Irish name MacGilGunn, meaning "sons to the servants of the god of the dead".

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

    Latest News for: james gunn (filmmaker)

    Edit

    David Zaslav Begins Informal Talks to Replace Warner Bros. Studio Heads Michael De Luca, Pamela ...

    The Wrap 31 Mar 2025
    They are about to roll out an ambitious 2025 that includes pricey gambles on filmmakers like Paul Thomas Anderson and Ryan Coogler, as well as a DC reboot with James Gunn’s “Superman.” The ...
    Edit

    Suicide Squad’s David Ayer Is Still Pushing For The Release Of His Director’s Cut, But James Gunn’s Reasoning For Holding Off Makes Sense

    Cinema Blend 26 Mar 2025
    When I did speak with James [Gunn], he wanted to [first] get some scores on the board ... All that being said, like David Ayer, I understand where James Gunn is coming from.
    Edit

    ‘I’d Love It’: One Guardians Of The Galaxy Star Is Down To Return To The MCU For The Avengers

    Cinema Blend 26 Mar 2025
    The question is whether Marvel truly has a future mapped out for Adam Warlock without filmmaker James Gunn in the Marvel world anymore.
    Edit

    Here's why Amanda Seyfried turned down 'Guardians of the Galaxy' role

    The Times of India 22 Mar 2025
    I had just met (director) James (Gunn) in person. He is wonderful. Apparently someone said he didn't remember but it's definitely true ... '(James Gunn is) a genius and he's fun and he's a wonderful filmmaker, and he can make anything work.
    Edit

    Tom Cruise, Superman and 'Avatar' hold keys to 2025 box office

    Hindustan Times 21 Mar 2025
    Brad Pitt plays a Formula 1 driver in the June release "F1," and in July, Warner Bros will release its new "Superman" movie directed by "Guardians of the Galaxy" filmmaker James Gunn and starring David Corenswet.
    Edit

    Mike Flanagan’s Clayface Is A Good Sign For the New DCU

    Game Rant 12 Mar 2025
    James Gunn seems prepped to do just that, and Mike Flannagan's Clayface seems like a perfect sign.
    Edit

    James Gunn Shares Cryptic View Of Superman’s Villain, And I Need To Know More ASAP

    Cinema Blend 11 Mar 2025
    The first big upcoming DC movie coming to theaters is James Gunn's Superman, and the filmmaker just shared an intriguing look at one of the movie's villains ... A post shared by James Gunn (@jamesgunn).
    • 1
    ×