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

Stephen Dorff

Stephen Dorff (born July 29, 1973) is an American actor, known for portraying Stuart Sutcliffe in Backbeat, Johnny Marco in Sofia Coppola's Somewhere, and for his roles in Blade, Cecil B. DeMented, The Motel Life, and Space Truckers.

Early life

Dorff was born in Atlanta, Georgia, the son of Nancy and Steve Dorff, who is a composer and music producer. His father is Jewish and his mother was Catholic, and Dorff has stated that he was "kinda brought up half-Jewish". He was raised in Los Angeles, where his father worked, and began acting as a child, appearing in commercials for Kraft and Mattel. Dorff attended several private schools, and was expelled from five of them.

Career

Dorff started acting in the late 1980s, landing only minor roles at first. He made guest appearances in television programs such as Diff'rent Strokes, Blossom, Roseanne, Married... with Children. He appeared in the television movies In Love and War, I Know My First Name is Steven and What a Dummy. Dorff's first major film role was in The Gate (1987), a horror film about a boy who, along with a friend, discovers a hole in his back yard that is a gateway to Hell. In 1992, he starred in The Power of One opposite Sir John Gielgud and Daniel Craig. He had a leading role as the love interest of Reese Witherspoon's character in S.F.W. (1994).

Podcasts:

Famous quotes by Stephen Dorff:

"I like working in different locations far away from Los Angeles."
"It just seemed like an eternity before they got everything going. It was sad. By the time they had the hoses going, it was too little, too late."
"Yes, I definitely plan to direct at some point."
"I play guitar and I love the Beatles and melodic music."
"I wouldn't want to do a whole movie with effects."
"That's the danger of having too much success. You lose that magic, that feeling of not being in control, which I feel now, it's too controlled."
"You have to feel the bad to be able to feel the good."
"It used to be you did TV or you did film. Now it's like a media blitz."
"I started acting before that when I was about 13 or 14."
"I don't want to just be in the normal kind of teen movie."
"But, I didn't get my first break until I was 17."
"They're trying to beat out this movie, the Ring, which is a similar idea. Our movie is about a website you visit and die in three days. Their movie is about a videotape you watch - and die in three days."
"Nuclear arms is pretty scary because that could end the world. I'm more interested in that stuff than I am Bill Clinton. I mean, I think Bill Clinton is a good president."
"I've mainly been in dramas, so this is one of my first comedy kind of performances in Cecil B. Demented."
"I think acting is only one part of the piece of the movie. I'ts an important piece, but I'd like to be involved in all the other aspects of making movies."
"I liked getting the best villain award. I thought that was funny."
"Basically, at some point, one day maybe you can expect to hear some of my music. I haven't really done that yet because my younger brother is a musician and really talented and I want him to come out with his music first."
"I've read some scripts, but I don't read as many books as I should."
  • The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | People

    Stephen Dorff looks back on his 30+ year career picking out seven of his favorite roles from Beatles biopic 'Backbeat' to 'Cecile B. Demented' to his latest film 'Wheeler' Subscribe to PeopleTV ►► http://bit.ly/SubscribePeopleTV Stay on top of all the latest celebrity gossip - Scandals, news, rumors and more: https://www.youtube.com/playlist?list=PLzS8B57pacxyPxBFbzjY5NqiJmUBvHgTE Celebrity love, romance and relationships - Never miss out on who’s dating who, recent break ups and new hook ups: https://www.youtube.com/playlist?list=PLzS8B57pacxzBdPhE7vu69ONKbJemr4_l Watch the newest celebrity interviews - From Jennifer Lopez to Jennifer Lawrence, Pop Stars to Movie Stars, Bachelors to Real Housewives, we’ve got it all: https://www.youtube.com/playlist?list=PLzS8B57pacxwyamvauL4pdzZkN_3j_...

    published: 10 Apr 2017
  • Dead Man's Hand (2023) Official Trailer - Stephen Dorff, Jack Kilmer, Cole Hauser

    Dead Man’s Hand - Watch the trailer now. Available in Theaters, On Demand and Digital July 7; on DVD August 22. Starring Stephen Dorff, Jack Kilmer, and Cole Hauser. Subscribe to the LIONSGATE: YouTube Channel for the latest movie trailers, clips, and more: https://bit.ly/2Z6nfym https://www.lionsgate.com/movies/ https://www.facebook.com/lionsgate https://twitter.com/lionsgate https://www.instagram.com/lionsgate/ https://www.tiktok.com/@lionsgate #DeadMansHandMovie Gunslinger Reno (Jack Kilmer, The Nice Guys) is headed west for a quiet life with his new bride. But when their stagecoach is ambushed, he kills an outlaw in self-defense. In a nearby town, Reno learns that the man he slayed is the brother of the corrupt mayor, Bishop (Stephen Dorff, Blade), who vows revenge. After their car...

    published: 28 Jun 2023
  • Stephen Dorff & Elizabeth Hurley’s Playful Banter | WWHL

    Actors Stephen Dorff and Elizabeth Hurley get playful with each other in the Clubhouse and Elizabeth says if she’d date a smoker like Stephen after complimenting his American accent. ►► Subscribe To WWHL: http://bravo.ly/WWHLSub Watch WWHL Sun-Thu 11/10c: WWHL Website: https://www.bravotv.com/watch-what-ha... Follow WWHL: https://twitter.com/BravoWWHL Like WWHL: https://www.facebook.com/WatchWhatHap... WWHL Tumblr: http://bravowwhl.tumblr.com/ 'Watch What Happens: Live' is Bravo's late-night, interactive talk show that features guests from the world of entertainment, politics, and pop culture. Hosted by Andy Cohen, the series includes lively debates on everything from fashion, the latest on everyone's favorite Bravolebrities, and what celebrity is making headlines that week. Past guests...

    published: 10 Dec 2019
  • Stephen Dorff on Losing ‘Titanic’ to Leonardo DiCaprio | WWHL

    Actor Stephen Dorff tells a virtual audience member if he regrets not getting the part of Jack in “Titanic” and talks about Leonardo DiCaprio landing the role. ►► Subscribe To WWHL: http://bravo.ly/WWHLSub ►► Watch Full Episodes: https://bravo.app.link/WatchWhatHappensLive-YT Watch WWHL Sun-Thu 11/10c: WWHL Website: https://www.bravotv.com/watch-what-happens-live Follow WWHL: https://twitter.com/BravoWWHL Like WWHL: https://www.facebook.com/WatchWhatHappensLive/ WWHL Tumblr: http://bravowwhl.tumblr.com/ 'Watch What Happens: Live' is Bravo's late-night, interactive talk show that features guests from the world of entertainment, politics, and pop culture. Hosted by Andy Cohen, the series includes lively debates on everything from fashion, the latest on everyone's favorite Bravolebrities, ...

    published: 18 Nov 2020
  • Stephen Dorff Says Divinity Is a Daring, Experimental Film | Sundance 2023

    Once again employing the blended style of live-action and stop-motion he defines as “meta-scope,” writer-director Eddie Alcazar returned to Sundance Film Festival this year with the premiere of his sci-fi thriller, Divinity. Starring Stephen Dorff, the black and white film is set in an uncanny world where humans have become hooked on a serum called Divinity, a creation set in motion by the ambitious scientist, Sterling Pierce (Scott Bakula), who devoted his life to unlocking the secrets of immortality. Dorff, who plays Sterling's son Jaxxon, has forged a career in Hollywood since the mid-80s, appearing in genres across the board, from blockbusters like 1998's Blade (pre-MCU era), to the lesser-known gems like Entropy. In Divinity, the serum, now controlled and manufactured by Sterling's s...

    published: 31 Jan 2023
  • Stephen Dorff opens up about his brother's death | Larry King Now | Ora.TV

    Watch the Full Larry King Now Interview Here: http://www.ora.tv/larrykingnow After losing his brother - successful country songwriter Andrew Dorff, who'd written hits for Blake Shelton and Rascal Flatts - to a tragic accident last December, Stephen Dorff opens up about the circumstances of his death and life without him. Sign up for the Larry King Now newsletter to receive guest updates: http://www.ora.tv/larrykingnow/article/2015/10/19/subscribe-to-our-larrykingnow-show-updates

    published: 15 Feb 2017
  • Sundance 2023 - Stephen Dorff on Being 'Put Through the Ringer' for Eddie Alcazar's 'Divinity'

    Stephen Dorff talks to IndieWire's Brian Welk about the grueling and "miserable" experience of filming Eddie Alcazar's twisted and experimental sci-fi film "Divinity," which premiered at the Sundance Film Festival. Dorff wore pounds of prosethetics in sweltering heat to portray his monstrous protagonist, but Dorff described Alcazar as one of the "new breed" of filmmaker and the movie as a complete "mind f---" and an "intense experience." Dorff also discusses what he likes about indie filmmaking and his hopes for the new "Blade" movie.

    published: 26 Jan 2023
  • Dead Man's Hand - Official Trailer (2023) Stephen Dorff

    Watch the official trailer for Dead Man's Hand! Available on Cinema & Digital July 7, 2023. Available on Blu-Ray and DVD August 22, 2023. A newly married gunfighter seeks a quiet life with his bride. When he kills a bandit in self-defense, he finds them both pulled back into his old ways. The corrupt mayor of their locale will not let his brother's death go unpunished. © Lionsgate

    published: 29 Jun 2023
  • FearDotCom (2002) Trailer, TV Spots and VHS Opening

    When four bodies are discovered among the industrial decay and urban grime of New York City, brash young detective Mike Reilly (Stephen Dorff) teams with ambitious Department of Health researcher Terry Huston (Natascha McElhone) to uncover the cause behind their violent and inexplicable deaths. The only common factor shared by the victims? Each died exactly 48 hours after logging on to feardot.com. Directed by William Malone Screenplay by Josephine Coyle Story by Moshe Diamant Produced by Limor Diamant Moshe Diamant Starring Stephen Dorff Natascha McElhone Stephen Rea Cinematography by Christian Sebaldt Edited by Alan Strachan Music by Nicholas Pike Production companies: Franchise Pictures MDP Worldwide Distributed by Warner Bros. Pictures (North America, Thailand and Ja...

    published: 27 Jan 2025
  • ‘Blade’ Actor Stephen Dorff Criticizes Scarlett Johansson for Doing ‘Black Widow’ | THR News

    Stephen Dorff did not hold back in a recent interview where he skewered modern superhero movies, targeting specifically the upcoming Marvel film ‘Black Widow.’ To learn more about this story: https://www.hollywoodreporter.com/movies/movie-news/blade-stephen-dorff-blasts-marvel-embarrassed-black-widow-disney-scarlett-johan ►►Subscribe for more entertainment news: http://thr.cm/dwtPxG2 ►► See our latest videos: http://thr.cm/syLedfw About: The Hollywood Reporter (THR) is the entertainment industry's flagship media brand, offering in-depth reporting, analysis, unparalleled access, world-class photography and video, and feature exclusives in its award-winning weekly magazine and dynamic website. The Hollywood Reporter also boasts prestigious live events, industry-leading philanthropic, em...

    published: 06 Jul 2021
The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | People
3:51

The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | People

  • Order:
  • Duration: 3:51
  • Uploaded Date: 10 Apr 2017
  • views: 12176
Stephen Dorff looks back on his 30+ year career picking out seven of his favorite roles from Beatles biopic 'Backbeat' to 'Cecile B. Demented' to his latest film 'Wheeler' Subscribe to PeopleTV ►► http://bit.ly/SubscribePeopleTV Stay on top of all the latest celebrity gossip - Scandals, news, rumors and more: https://www.youtube.com/playlist?list=PLzS8B57pacxyPxBFbzjY5NqiJmUBvHgTE Celebrity love, romance and relationships - Never miss out on who’s dating who, recent break ups and new hook ups: https://www.youtube.com/playlist?list=PLzS8B57pacxzBdPhE7vu69ONKbJemr4_l Watch the newest celebrity interviews - From Jennifer Lopez to Jennifer Lawrence, Pop Stars to Movie Stars, Bachelors to Real Housewives, we’ve got it all: https://www.youtube.com/playlist?list=PLzS8B57pacxwyamvauL4pdzZkN_3j_daW Celebrity style, fashion icons, outfit fails and the best dressed - Check out everything from Gigi Hadid’s legendary outfits to Eva Longoria’s timeless style: https://www.youtube.com/playlist?list=PLzS8B57pacxzWKYCRsB6uH7Y7MDdUFdck Get all access to A-list events, award shows and parties - Who wore what, which awards were won, and was there any drama: https://www.youtube.com/playlist?list=PLzS8B57pacxwXU_Gfe2aaqvb2E4CUI5Fg No matter if you’re into Taylor Swift or Justin Bieber, we’ve got some of the best live performances right here: https://www.youtube.com/playlist?list=PLzS8B57pacxyPM1cEn5JXgA7xTFjlU7LJ Keep up with the Kardashians - get the latest on Kim & Kanye, and the rest of the hottest celebrity family around: https://www.youtube.com/playlist?list=PLzS8B57pacxz-JkjNRg3wCQ71l8xXITMY CONNECT WITH Web: https://peopletv.com/ Twitter: https://twitter.com/peopletv Facebook: https://www.facebook.com/PeopleTVNetwork/ Instagram: https://www.instagram.com/peopletv/ Google+: http://po.st/GooglePeople ABOUT PEOPLE PEOPLE is the #1 online news source all things pop culture. Get your fix of the hottest celebrity news, celebrity gossip, celebrity interviews, exclusive stories, red carpet events, style and updates from the world of entertainment, involving your favorite stars. The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | People https://www.youtube.com/user/people
https://wn.com/The_Seven_Dorffs_Stephen_Dorff_On_His_7_Most_Memorable_Roles_|_Pen_|_People
Dead Man's Hand (2023) Official Trailer - Stephen Dorff, Jack Kilmer, Cole Hauser
2:42

Dead Man's Hand (2023) Official Trailer - Stephen Dorff, Jack Kilmer, Cole Hauser

  • Order:
  • Duration: 2:42
  • Uploaded Date: 28 Jun 2023
  • views: 850183
Dead Man’s Hand - Watch the trailer now. Available in Theaters, On Demand and Digital July 7; on DVD August 22. Starring Stephen Dorff, Jack Kilmer, and Cole Hauser. Subscribe to the LIONSGATE: YouTube Channel for the latest movie trailers, clips, and more: https://bit.ly/2Z6nfym https://www.lionsgate.com/movies/ https://www.facebook.com/lionsgate https://twitter.com/lionsgate https://www.instagram.com/lionsgate/ https://www.tiktok.com/@lionsgate #DeadMansHandMovie Gunslinger Reno (Jack Kilmer, The Nice Guys) is headed west for a quiet life with his new bride. But when their stagecoach is ambushed, he kills an outlaw in self-defense. In a nearby town, Reno learns that the man he slayed is the brother of the corrupt mayor, Bishop (Stephen Dorff, Blade), who vows revenge. After their card game turns into a bloody shootout, who will be left standing? Cole Hauser (“Yellowstone”) appears as a U.S. Marshal who becomes Reno’s ally in this pulse-pounding Western.
https://wn.com/Dead_Man's_Hand_(2023)_Official_Trailer_Stephen_Dorff,_Jack_Kilmer,_Cole_Hauser
Stephen Dorff & Elizabeth Hurley’s Playful Banter | WWHL
1:16

Stephen Dorff & Elizabeth Hurley’s Playful Banter | WWHL

  • Order:
  • Duration: 1:16
  • Uploaded Date: 10 Dec 2019
  • views: 17875
Actors Stephen Dorff and Elizabeth Hurley get playful with each other in the Clubhouse and Elizabeth says if she’d date a smoker like Stephen after complimenting his American accent. ►► Subscribe To WWHL: http://bravo.ly/WWHLSub Watch WWHL Sun-Thu 11/10c: WWHL Website: https://www.bravotv.com/watch-what-ha... Follow WWHL: https://twitter.com/BravoWWHL Like WWHL: https://www.facebook.com/WatchWhatHap... WWHL Tumblr: http://bravowwhl.tumblr.com/ 'Watch What Happens: Live' is Bravo's late-night, interactive talk show that features guests from the world of entertainment, politics, and pop culture. Hosted by Andy Cohen, the series includes lively debates on everything from fashion, the latest on everyone's favorite Bravolebrities, and what celebrity is making headlines that week. Past guests who have joined Cohen in the Bravo Clubhouse include Sarah Jessica Parker, Tina Fey, Khloe Kardashian, Jennifer Lopez, Liam Neeson, Kelly Ripa, Jimmy Fallon, Anderson Cooper, Jennifer Lawrence, and Lance Bass. Watch More Bravo: Bravo Website: http://www.bravotv.com/ Bravo Youtube: http://www.youtube.com/videobybravo Follow Bravo: http://www.twitter.com/bravotv Like Bravo: https://www.facebook.com/BRAVO Pin Bravo: http://www.pinterest.com/bravobybravo Bravo Instagram: http://www.instagram.com/bravotv Bravo Tumblr: http://bravotv.tumblr.com/
https://wn.com/Stephen_Dorff_Elizabeth_Hurley’S_Playful_Banter_|_Wwhl
Stephen Dorff on Losing ‘Titanic’ to Leonardo DiCaprio | WWHL
1:13

Stephen Dorff on Losing ‘Titanic’ to Leonardo DiCaprio | WWHL

  • Order:
  • Duration: 1:13
  • Uploaded Date: 18 Nov 2020
  • views: 14386
Actor Stephen Dorff tells a virtual audience member if he regrets not getting the part of Jack in “Titanic” and talks about Leonardo DiCaprio landing the role. ►► Subscribe To WWHL: http://bravo.ly/WWHLSub ►► Watch Full Episodes: https://bravo.app.link/WatchWhatHappensLive-YT Watch WWHL Sun-Thu 11/10c: WWHL Website: https://www.bravotv.com/watch-what-happens-live Follow WWHL: https://twitter.com/BravoWWHL Like WWHL: https://www.facebook.com/WatchWhatHappensLive/ WWHL Tumblr: http://bravowwhl.tumblr.com/ 'Watch What Happens: Live' is Bravo's late-night, interactive talk show that features guests from the world of entertainment, politics, and pop culture. Hosted by Andy Cohen, the series includes lively debates on everything from fashion, the latest on everyone's favorite Bravolebrities, and what celebrity is making headlines that week. Past guests who have joined Cohen in the Bravo Clubhouse include Sarah Jessica Parker, Tina Fey, Khloe Kardashian, Jennifer Lopez, Liam Neeson, Kelly Ripa, Jimmy Fallon, Anderson Cooper, Jennifer Lawrence, and Lance Bass. Watch More Bravo: Bravo Website: http://www.bravotv.com/ Bravo Youtube: http://www.youtube.com/videobybravo Follow Bravo: http://www.twitter.com/bravotv Like Bravo: https://www.facebook.com/BRAVO Pin Bravo: http://www.pinterest.com/bravobybravo Bravo Instagram: http://www.instagram.com/bravotv Bravo Tumblr: http://bravotv.tumblr.com/
https://wn.com/Stephen_Dorff_On_Losing_‘Titanic’_To_Leonardo_Dicaprio_|_Wwhl
Stephen Dorff Says Divinity Is a Daring, Experimental Film | Sundance 2023
9:32

Stephen Dorff Says Divinity Is a Daring, Experimental Film | Sundance 2023

  • Order:
  • Duration: 9:32
  • Uploaded Date: 31 Jan 2023
  • views: 5414
Once again employing the blended style of live-action and stop-motion he defines as “meta-scope,” writer-director Eddie Alcazar returned to Sundance Film Festival this year with the premiere of his sci-fi thriller, Divinity. Starring Stephen Dorff, the black and white film is set in an uncanny world where humans have become hooked on a serum called Divinity, a creation set in motion by the ambitious scientist, Sterling Pierce (Scott Bakula), who devoted his life to unlocking the secrets of immortality. Dorff, who plays Sterling's son Jaxxon, has forged a career in Hollywood since the mid-80s, appearing in genres across the board, from blockbusters like 1998's Blade (pre-MCU era), to the lesser-known gems like Entropy. In Divinity, the serum, now controlled and manufactured by Sterling's son, Jaxxon Pierce, is in high demand on this desolate planet, though Divinity does not stop the mind from aging, only the body. Because of its side effects, there are some who would like to see the unbelievable elixir done away with, no matter the lengths they must go. In addition to Dorff and Bakula, Divinity’s cast includes Bella Thorne, Moises Arias, Karrueche Tran, and Jason Genao. Before premiering Divinity at Sundance, Dorff stopped by the Collider Studio in Park City and spoke with Collider’s Steve Weintraub. During the interview, Dorff shares how he first met Eddie Alcazar, and reveals that the writer-director wrote a character for Dorff he then built Divinity around. He discusses the bizarre project, describing it as a “sci-fi meets noir, meets a mental breakdown through an IV,” and tells us about some of the challenges the role presented him, likening the film to Citizen Kane and A Clockwork Orange. Dorff also shares of few of his previous roles, from Diff’rent Strokes, to Roseanne, and talks about reuniting with John Goodman for The Righteous Gemstones. #StephenDorff #Divinity #DiffrentStrokes 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/Stephen_Dorff_Says_Divinity_Is_A_Daring,_Experimental_Film_|_Sundance_2023
Stephen Dorff opens up about his brother's death | Larry King Now | Ora.TV
2:48

Stephen Dorff opens up about his brother's death | Larry King Now | Ora.TV

  • Order:
  • Duration: 2:48
  • Uploaded Date: 15 Feb 2017
  • views: 37414
Watch the Full Larry King Now Interview Here: http://www.ora.tv/larrykingnow After losing his brother - successful country songwriter Andrew Dorff, who'd written hits for Blake Shelton and Rascal Flatts - to a tragic accident last December, Stephen Dorff opens up about the circumstances of his death and life without him. Sign up for the Larry King Now newsletter to receive guest updates: http://www.ora.tv/larrykingnow/article/2015/10/19/subscribe-to-our-larrykingnow-show-updates
https://wn.com/Stephen_Dorff_Opens_Up_About_His_Brother's_Death_|_Larry_King_Now_|_Ora.Tv
Sundance 2023 - Stephen Dorff on Being 'Put Through the Ringer' for Eddie Alcazar's 'Divinity'
11:04

Sundance 2023 - Stephen Dorff on Being 'Put Through the Ringer' for Eddie Alcazar's 'Divinity'

  • Order:
  • Duration: 11:04
  • Uploaded Date: 26 Jan 2023
  • views: 10719
Stephen Dorff talks to IndieWire's Brian Welk about the grueling and "miserable" experience of filming Eddie Alcazar's twisted and experimental sci-fi film "Divinity," which premiered at the Sundance Film Festival. Dorff wore pounds of prosethetics in sweltering heat to portray his monstrous protagonist, but Dorff described Alcazar as one of the "new breed" of filmmaker and the movie as a complete "mind f---" and an "intense experience." Dorff also discusses what he likes about indie filmmaking and his hopes for the new "Blade" movie.
https://wn.com/Sundance_2023_Stephen_Dorff_On_Being_'Put_Through_The_Ringer'_For_Eddie_Alcazar's_'Divinity'
Dead Man's Hand - Official Trailer (2023) Stephen Dorff
2:51

Dead Man's Hand - Official Trailer (2023) Stephen Dorff

  • Order:
  • Duration: 2:51
  • Uploaded Date: 29 Jun 2023
  • views: 1139
Watch the official trailer for Dead Man's Hand! Available on Cinema & Digital July 7, 2023. Available on Blu-Ray and DVD August 22, 2023. A newly married gunfighter seeks a quiet life with his bride. When he kills a bandit in self-defense, he finds them both pulled back into his old ways. The corrupt mayor of their locale will not let his brother's death go unpunished. © Lionsgate
https://wn.com/Dead_Man's_Hand_Official_Trailer_(2023)_Stephen_Dorff
FearDotCom (2002) Trailer, TV Spots and VHS Opening
4:44

FearDotCom (2002) Trailer, TV Spots and VHS Opening

  • Order:
  • Duration: 4:44
  • Uploaded Date: 27 Jan 2025
  • views: 49
When four bodies are discovered among the industrial decay and urban grime of New York City, brash young detective Mike Reilly (Stephen Dorff) teams with ambitious Department of Health researcher Terry Huston (Natascha McElhone) to uncover the cause behind their violent and inexplicable deaths. The only common factor shared by the victims? Each died exactly 48 hours after logging on to feardot.com. Directed by William Malone Screenplay by Josephine Coyle Story by Moshe Diamant Produced by Limor Diamant Moshe Diamant Starring Stephen Dorff Natascha McElhone Stephen Rea Cinematography by Christian Sebaldt Edited by Alan Strachan Music by Nicholas Pike Production companies: Franchise Pictures MDP Worldwide Distributed by Warner Bros. Pictures (North America, Thailand and Japan) Columbia TriStar Film Distributors International (Select territories) Release date: August 30, 2002 Running time: 101 minutes Countries: United Kingdom Germany Luxembourg United States Language: English Budget $40 million Box office $18.9 million Also known as: Fear.com Félelem.com MedoPontoCombr Miedo.punto.com Paura.com Phovos.com Terreur.point.com www.strach Страх.Com
https://wn.com/Feardotcom_(2002)_Trailer,_Tv_Spots_And_Vhs_Opening
‘Blade’ Actor Stephen Dorff Criticizes Scarlett Johansson for Doing ‘Black Widow’ | THR News
1:23

‘Blade’ Actor Stephen Dorff Criticizes Scarlett Johansson for Doing ‘Black Widow’ | THR News

  • Order:
  • Duration: 1:23
  • Uploaded Date: 06 Jul 2021
  • views: 27618
Stephen Dorff did not hold back in a recent interview where he skewered modern superhero movies, targeting specifically the upcoming Marvel film ‘Black Widow.’ To learn more about this story: https://www.hollywoodreporter.com/movies/movie-news/blade-stephen-dorff-blasts-marvel-embarrassed-black-widow-disney-scarlett-johan ►►Subscribe for more entertainment news: http://thr.cm/dwtPxG2 ►► See our latest videos: http://thr.cm/syLedfw About: The Hollywood Reporter (THR) is the entertainment industry's flagship media brand, offering in-depth reporting, analysis, unparalleled access, world-class photography and video, and feature exclusives in its award-winning weekly magazine and dynamic website. The Hollywood Reporter also boasts prestigious live events, industry-leading philanthropic, empowerment and diversity initiatives and hugely successful video series. Connect with The Hollywood Reporter Online: Visit the website: http://thr.cm/MgwCFl9 Likes us on Facebook: http://thr.cm/ngIBL8l Follow us on Twitter: http://thr.cm/2S875k7 Follow us on Instagram: http://thr.cm/cDQoWQd #StephenDorff #ScarlettJohansson #THRNews ‘Blade’ Actor Stephen Dorff Criticizes Scarlett Johansson for Doing ‘Black Widow’ | THR News The Hollywood Reporter https://youtube.com/hollywoodreporter
https://wn.com/‘Blade’_Actor_Stephen_Dorff_Criticizes_Scarlett_Johansson_For_Doing_‘Black_Widow’_|_Thr_News
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | People
    3:51
    The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | Peopleremove from playlist
  • Dead Man's Hand (2023) Official Trailer - Stephen Dorff, Jack Kilmer, Cole Hauser
    2:42
    Dead Man's Hand (2023) Official Trailer - Stephen Dorff, Jack Kilmer, Cole Hauserremove from playlist
  • Stephen Dorff & Elizabeth Hurley’s Playful Banter | WWHL
    1:16
    Stephen Dorff & Elizabeth Hurley’s Playful Banter | WWHLremove from playlist
  • Stephen Dorff on Losing ‘Titanic’ to Leonardo DiCaprio | WWHL
    1:13
    Stephen Dorff on Losing ‘Titanic’ to Leonardo DiCaprio | WWHLremove from playlist
  • Stephen Dorff Says Divinity Is a Daring, Experimental Film | Sundance 2023
    9:32
    Stephen Dorff Says Divinity Is a Daring, Experimental Film | Sundance 2023remove from playlist
  • Stephen Dorff opens up about his brother's death | Larry King Now | Ora.TV
    2:48
    Stephen Dorff opens up about his brother's death | Larry King Now | Ora.TVremove from playlist
  • Sundance 2023 - Stephen Dorff on Being 'Put Through the Ringer' for Eddie Alcazar's 'Divinity'
    11:04
    Sundance 2023 - Stephen Dorff on Being 'Put Through the Ringer' for Eddie Alcazar's 'Divinity'remove from playlist
  • Dead Man's Hand - Official Trailer (2023) Stephen Dorff
    2:51
    Dead Man's Hand - Official Trailer (2023) Stephen Dorffremove from playlist
  • FearDotCom (2002) Trailer, TV Spots and VHS Opening
    4:44
    FearDotCom (2002) Trailer, TV Spots and VHS Openingremove from playlist
  • ‘Blade’ Actor Stephen Dorff Criticizes Scarlett Johansson for Doing ‘Black Widow’ | THR News
    1:23
    ‘Blade’ Actor Stephen Dorff Criticizes Scarlett Johansson for Doing ‘Black Widow’ | THR Newsremove from playlist
PLAYLIST TIME: 0:00 / 41:24

The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | People

Stephen Dorff looks back on his 30+ year career picking out seven of his favorite roles from Beatles biopic 'Backbeat' to 'Cecile B. Demented' to his latest film 'Wheeler' Subscribe to PeopleTV ►► http://bit.ly/SubscribePeopleTV Stay on top of all the latest celebrity gossip - Scandals, news, rumors and more: https://www.youtube.com/playlist?list=PLzS8B57pacxyPxBFbzjY5NqiJmUBvHgTE Celebrity love, romance and relationships - Never miss out on who’s dating who, recent break ups and new hook ups: https://www.youtube.com/playlist?list=PLzS8B57pacxzBdPhE7vu69ONKbJemr4_l Watch the newest celebrity interviews - From Jennifer Lopez to Jennifer Lawrence, Pop Stars to Movie Stars, Bachelors to Real Housewives, we’ve got it all: https://www.youtube.com/playlist?list=PLzS8B57pacxwyamvauL4pdzZkN_3j_daW Celebrity style, fashion icons, outfit fails and the best dressed - Check out everything from Gigi Hadid’s legendary outfits to Eva Longoria’s timeless style: https://www.youtube.com/playlist?list=PLzS8B57pacxzWKYCRsB6uH7Y7MDdUFdck Get all access to A-list events, award shows and parties - Who wore what, which awards were won, and was there any drama: https://www.youtube.com/playlist?list=PLzS8B57pacxwXU_Gfe2aaqvb2E4CUI5Fg No matter if you’re into Taylor Swift or Justin Bieber, we’ve got some of the best live performances right here: https://www.youtube.com/playlist?list=PLzS8B57pacxyPM1cEn5JXgA7xTFjlU7LJ Keep up with the Kardashians - get the latest on Kim & Kanye, and the rest of the hottest celebrity family around: https://www.youtube.com/playlist?list=PLzS8B57pacxz-JkjNRg3wCQ71l8xXITMY CONNECT WITH Web: https://peopletv.com/ Twitter: https://twitter.com/peopletv Facebook: https://www.facebook.com/PeopleTVNetwork/ Instagram: https://www.instagram.com/peopletv/ Google+: http://po.st/GooglePeople ABOUT PEOPLE PEOPLE is the #1 online news source all things pop culture. Get your fix of the hottest celebrity news, celebrity gossip, celebrity interviews, exclusive stories, red carpet events, style and updates from the world of entertainment, involving your favorite stars. The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | People https://www.youtube.com/user/people
3:51
The Seven Dorffs: Stephen Dorff On His 7 Most Memorable Roles | PEN | People
Stephen Dorff looks back on his 30+ year career picking out seven of his favorite roles fr...
published: 10 Apr 2017
Play in Full Screen
2:42
Dead Man's Hand (2023) Official Trailer - Stephen Dorff, Jack Kilmer, Cole Hauser
Dead Man’s Hand - Watch the trailer now. Available in Theaters, On Demand and Digital July...
published: 28 Jun 2023
Play in Full Screen
1:16
Stephen Dorff & Elizabeth Hurley’s Playful Banter | WWHL
Actors Stephen Dorff and Elizabeth Hurley get playful with each other in the Clubhouse and...
published: 10 Dec 2019
Play in Full Screen
1:13
Stephen Dorff on Losing ‘Titanic’ to Leonardo DiCaprio | WWHL
Actor Stephen Dorff tells a virtual audience member if he regrets not getting the part of ...
published: 18 Nov 2020
Play in Full Screen
9:32
Stephen Dorff Says Divinity Is a Daring, Experimental Film | Sundance 2023
Once again employing the blended style of live-action and stop-motion he defines as “meta-...
published: 31 Jan 2023
Play in Full Screen
2:48
Stephen Dorff opens up about his brother's death | Larry King Now | Ora.TV
Watch the Full Larry King Now Interview Here: http://www.ora.tv/larrykingnow After losi...
published: 15 Feb 2017
Play in Full Screen
11:04
Sundance 2023 - Stephen Dorff on Being 'Put Through the Ringer' for Eddie Alcazar's 'Divinity'
Stephen Dorff talks to IndieWire's Brian Welk about the grueling and "miserable" experienc...
published: 26 Jan 2023
Play in Full Screen
2:51
Dead Man's Hand - Official Trailer (2023) Stephen Dorff
Watch the official trailer for Dead Man's Hand! Available on Cinema & Digital July 7, 2023...
published: 29 Jun 2023
Play in Full Screen
4:44
FearDotCom (2002) Trailer, TV Spots and VHS Opening
When four bodies are discovered among the industrial decay and urban grime of New York Cit...
published: 27 Jan 2025
Play in Full Screen
1:23
‘Blade’ Actor Stephen Dorff Criticizes Scarlett Johansson for Doing ‘Black Widow’ | THR News
Stephen Dorff did not hold back in a recent interview where he skewered modern superhero m...
published: 06 Jul 2021
Play in Full Screen

Stephen Dorff

Stephen Dorff (born July 29, 1973) is an American actor, known for portraying Stuart Sutcliffe in Backbeat, Johnny Marco in Sofia Coppola's Somewhere, and for his roles in Blade, Cecil B. DeMented, The Motel Life, and Space Truckers.

Early life

Dorff was born in Atlanta, Georgia, the son of Nancy and Steve Dorff, who is a composer and music producer. His father is Jewish and his mother was Catholic, and Dorff has stated that he was "kinda brought up half-Jewish". He was raised in Los Angeles, where his father worked, and began acting as a child, appearing in commercials for Kraft and Mattel. Dorff attended several private schools, and was expelled from five of them.

Career

Dorff started acting in the late 1980s, landing only minor roles at first. He made guest appearances in television programs such as Diff'rent Strokes, Blossom, Roseanne, Married... with Children. He appeared in the television movies In Love and War, I Know My First Name is Steven and What a Dummy. Dorff's first major film role was in The Gate (1987), a horror film about a boy who, along with a friend, discovers a hole in his back yard that is a gateway to Hell. In 1992, he starred in The Power of One opposite Sir John Gielgud and Daniel Craig. He had a leading role as the love interest of Reese Witherspoon's character in S.F.W. (1994).

'); } 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: Stephen Dorff

Edit

The Darkness on album chart battle: “We’re up against Mumford & Sons. We’re going to ...

NME 02 Apr 2025
READ MORE ... The record featured singles ‘The Longest Kiss’, ‘Rock And Roll Party Cowboy’, ‘Walking Through Fire’ and ‘I Hate Myself’, as well as a closing track called ‘Weekend In Rome’ which starred actor Stephen Dorff ... “I am confident ... .
Edit

Stephen Dorff opens up on unexpected rock band collaboration

Music News 01 Apr 2025
Stephen Dorff has opened up about an unexpected collaboration that he took part in with an iconic rock band ... Sharing his appreciation for the I Believe In A Thing Called Love singers, Dorff told Classic Rock, "I know their music from way back.
Edit

Stephen Dorff on how The Darkness convinced him to feature on new album: “Justin Hawkins ...

NME 31 Mar 2025
Stephen Dorff has opened up about his time working with The Darkness for their new album ... Italian moonlight… This was my dream.” This, it was soon confirmed, was provided by actor Stephen Dorff.
Edit

Divinity [Blu-ray Mediabook Limited Edition of 600] Stephen Dorff & Bella Thorne

Bitchute 28 Mar 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Rain falls, tensions rise, and tables are set in a foreboding Gemstones

AV Club 24 Mar 2025
... “Oh, it is getting very serious in here,” the scene peaked when Jesse grabs a pipe, leaving a pipeless Vance to mime one and allowing Stephen Dorff to show off his masterful object work.
  • 1
×