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

Emma Thompson

Emma Thompson (born 15 April 1959) is a British actress, comedian, and writer. She is known for her portrayals of reticent women, often in period dramas and literary adaptations, and playing haughty or matronly characters with a sense of irony. She is considered one of Britain's most accomplished actresses.

Born in London to English actor Eric Thompson and Scottish actress Phyllida Law, Thompson was educated at Newnham College, University of Cambridge, where she became a member of the Footlights troupe. After appearing in several comedy programmes, she first came to prominence in 1987 in two BBC TV series, Tutti Frutti and Fortunes of War, winning the BAFTA TV Award for Best Actress for her work in both. Her first film role came in the 1989 romantic comedy The Tall Guy, and in the early 1990s she frequently collaborated with her then husband, actor and director Kenneth Branagh. The pair became popular in the British media, and co-starred in several films including Dead Again (1991) and Much Ado About Nothing (1993).

Podcasts:

  • "Don't Waste Your Life's Purpose Worrying About Your Body" - Emma Thompson

    In part two of her conversation with Stephen Colbert, Emma Thompson discusses the nude scene in her new film and offers some advice to anyone bothered by the sight of themselves naked in the mirror. "Good Luck to You, Leo Grande" premieres this Friday on Hulu. #Colbert #LeoGrande #EmmaThompson Subscribe To "The Late Show" Channel: http://bit.ly/ColbertYouTube Watch full episodes of "The Late Show": http://bit.ly/1Puei40 Listen to "The Late Show Pod Show" podcast: https://link.chtbl.com/Awagtx95?sid=yt Like "The Late Show" on Facebook: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter: http://bit.ly/1dMzZzG Follow "The Late Show" on Instagram: http://bit.ly/29wfREj Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. --- The Late Show with...

    published: 16 Jun 2022
  • Emma Thompson Got Mistaken For A Naked 50 Year Old Man | The Graham Norton Show

    Dame Emma Thompson got mistaken for a naked 50-year-old man after taking a bath in a pond. #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663

    published: 24 Jan 2020
  • Emma Thompson On How Kenneth Branagh broke her heart | Rumour Juice

    They were the golden couple of British cinema and made unforgettable films together. However, after six years of marriage, Emma Thompsom and Kenneth Brannagh fell apart. The couple tried to convince their fans that this was due to their busy schedules, but the truth eventually came out: Kenneth had an affair with Helena Bonham Carter. #emmathompson #hollywood #actress #lovestory #relationship #drama 🧃 Watch more on Rumour Juice 🧃 https://youtu.be/QUePPtrzGwc https://youtu.be/oNqlor6APSw https://youtu.be/nbpYeY7mhxg 🥤 Chapters 🥤 Rumour Juice team uncovers mysterious stories of your favorite stars, reveals their life dramas, and shares the most relevant news from the world of Hollywood. We also go into the details of Hollywood romance stories. Affairs, break-ups, divorces, and beauti...

    published: 10 Mar 2024
  • Emma Thompson Drunkenly Ate Her Husband's Great British Bake Off Cake | The Graham Norton Show

    Emma Thompson tells us about the time she drunkenly ate her husband's Great British Bake Off cake. #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663

    published: 27 Jan 2020
  • Emma Thompson turned down a date with Donald Trump - The Graham Norton Show: 2017 - BBC

    Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Programme website: http://bbc.in/2llfPp6 Emma Thompson explains how she once received an unexpected phone call from Donald Trump asking her for a date. #bbc All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.

    published: 27 Oct 2017
  • Emma Thompson Disses Arnold Schwarzenegger - The Graham Norton Show

    Emma tells us about working with Arnold Schwarzenegger and the time he admitted to not knowing how to act. #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663

    published: 28 Aug 2014
  • Emma Thompson Kinda Plays Burning Questions

    Ellen put her friend Emma Thompson in the hot seat for a round of “Burning Questions,” but it turned out to be one of the most unforgettable rounds ever... after the Oscar winner failed to properly answer the questions. #TheEllenShow #EmmaThompson #BurningQuestions

    published: 12 Apr 2019
  • Why a naked Emma Thompson was mistaken for a man! | The Graham Norton Show - BBC

    Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Emma Thompson talks about living in a remote area of England how she walks to her sauna across a field naked. When the police come round to say an intruder has been reported a middle aged naked man, she was horrified as someone has clearly seen her breasts and identified them as testicles! Together on Graham’s sofa tonight, the stars of new fantasy adventure Dolittle, Iron Man Robert Downey Jr and Oscar-winner Emma Thompson. Also actor Hugh Laurie, who appears in The Personal History of David Copperfield, Monty Python’s Terry Gilliam, director of The Man Who Killed Don Quixote. The Graham Norton Show | Series 26 Episode 15 | BBC #TheGrahamNortonShow #GrahamNorton #BBCGr...

    published: 24 Jan 2020
  • x klasky csupo part 1 v3

    published: 19 Feb 2025
  • Emma Thompson Evolution 🔥✨️ (1982-2024) #emmathompson #evolution #shorts #shortsfeed

    published: 01 May 2024
"Don't Waste Your Life's Purpose Worrying About Your Body" - Emma Thompson
6:39

"Don't Waste Your Life's Purpose Worrying About Your Body" - Emma Thompson

  • Order:
  • Duration: 6:39
  • Uploaded Date: 16 Jun 2022
  • views: 881483
In part two of her conversation with Stephen Colbert, Emma Thompson discusses the nude scene in her new film and offers some advice to anyone bothered by the sight of themselves naked in the mirror. "Good Luck to You, Leo Grande" premieres this Friday on Hulu. #Colbert #LeoGrande #EmmaThompson Subscribe To "The Late Show" Channel: http://bit.ly/ColbertYouTube Watch full episodes of "The Late Show": http://bit.ly/1Puei40 Listen to "The Late Show Pod Show" podcast: https://link.chtbl.com/Awagtx95?sid=yt Like "The Late Show" on Facebook: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter: http://bit.ly/1dMzZzG Follow "The Late Show" on Instagram: http://bit.ly/29wfREj Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. --- The Late Show with Stephen Colbert is the premier late night talk show on CBS, airing at 11:35pm EST, streaming online via Paramount+, and delivered to the International Space Station on a USB drive taped to a weather balloon. Every night, viewers can expect: Comedy, humor, funny moments, witty interviews, celebrities, famous people, movie stars, bits, humorous celebrities doing bits, funny celebs, big group photos of every star from Hollywood, even the reclusive ones, plus also jokes.
https://wn.com/Don't_Waste_Your_Life's_Purpose_Worrying_About_Your_Body_Emma_Thompson
Emma Thompson Got Mistaken For A Naked 50 Year Old Man | The Graham Norton Show
2:28

Emma Thompson Got Mistaken For A Naked 50 Year Old Man | The Graham Norton Show

  • Order:
  • Duration: 2:28
  • Uploaded Date: 24 Jan 2020
  • views: 1517420
Dame Emma Thompson got mistaken for a naked 50-year-old man after taking a bath in a pond. #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663
https://wn.com/Emma_Thompson_Got_Mistaken_For_A_Naked_50_Year_Old_Man_|_The_Graham_Norton_Show
Emma Thompson On How Kenneth Branagh broke her heart | Rumour Juice
7:53

Emma Thompson On How Kenneth Branagh broke her heart | Rumour Juice

  • Order:
  • Duration: 7:53
  • Uploaded Date: 10 Mar 2024
  • views: 411972
They were the golden couple of British cinema and made unforgettable films together. However, after six years of marriage, Emma Thompsom and Kenneth Brannagh fell apart. The couple tried to convince their fans that this was due to their busy schedules, but the truth eventually came out: Kenneth had an affair with Helena Bonham Carter. #emmathompson #hollywood #actress #lovestory #relationship #drama 🧃 Watch more on Rumour Juice 🧃 https://youtu.be/QUePPtrzGwc https://youtu.be/oNqlor6APSw https://youtu.be/nbpYeY7mhxg 🥤 Chapters 🥤 Rumour Juice team uncovers mysterious stories of your favorite stars, reveals their life dramas, and shares the most relevant news from the world of Hollywood. We also go into the details of Hollywood romance stories. Affairs, break-ups, divorces, and beautiful love stories are things that happen in our lives. Well, celebrities are not an exception to that, so let's explore this side of their lives together. Subscribe to Rumour Juice channel on Youtube for more unknown stories about celebrities: https://bit.ly/2O3l5vc
https://wn.com/Emma_Thompson_On_How_Kenneth_Branagh_Broke_Her_Heart_|_Rumour_Juice
Emma Thompson Drunkenly Ate Her Husband's Great British Bake Off Cake | The Graham Norton Show
2:27

Emma Thompson Drunkenly Ate Her Husband's Great British Bake Off Cake | The Graham Norton Show

  • Order:
  • Duration: 2:27
  • Uploaded Date: 27 Jan 2020
  • views: 3095156
Emma Thompson tells us about the time she drunkenly ate her husband's Great British Bake Off cake. #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663
https://wn.com/Emma_Thompson_Drunkenly_Ate_Her_Husband's_Great_British_Bake_Off_Cake_|_The_Graham_Norton_Show
Emma Thompson turned down a date with Donald Trump - The Graham Norton Show: 2017 - BBC
2:23

Emma Thompson turned down a date with Donald Trump - The Graham Norton Show: 2017 - BBC

  • Order:
  • Duration: 2:23
  • Uploaded Date: 27 Oct 2017
  • views: 1185649
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Programme website: http://bbc.in/2llfPp6 Emma Thompson explains how she once received an unexpected phone call from Donald Trump asking her for a date. #bbc All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.
https://wn.com/Emma_Thompson_Turned_Down_A_Date_With_Donald_Trump_The_Graham_Norton_Show_2017_BBC
Emma Thompson Disses Arnold Schwarzenegger - The Graham Norton Show
1:48

Emma Thompson Disses Arnold Schwarzenegger - The Graham Norton Show

  • Order:
  • Duration: 1:48
  • Uploaded Date: 28 Aug 2014
  • views: 2476116
Emma tells us about working with Arnold Schwarzenegger and the time he admitted to not knowing how to act. #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663
https://wn.com/Emma_Thompson_Disses_Arnold_Schwarzenegger_The_Graham_Norton_Show
Emma Thompson Kinda Plays Burning Questions
5:09

Emma Thompson Kinda Plays Burning Questions

  • Order:
  • Duration: 5:09
  • Uploaded Date: 12 Apr 2019
  • views: 3191795
Ellen put her friend Emma Thompson in the hot seat for a round of “Burning Questions,” but it turned out to be one of the most unforgettable rounds ever... after the Oscar winner failed to properly answer the questions. #TheEllenShow #EmmaThompson #BurningQuestions
https://wn.com/Emma_Thompson_Kinda_Plays_Burning_Questions
Why a naked Emma Thompson was mistaken for a man! | The Graham Norton Show - BBC
2:27

Why a naked Emma Thompson was mistaken for a man! | The Graham Norton Show - BBC

  • Order:
  • Duration: 2:27
  • Uploaded Date: 24 Jan 2020
  • views: 100535
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Emma Thompson talks about living in a remote area of England how she walks to her sauna across a field naked. When the police come round to say an intruder has been reported a middle aged naked man, she was horrified as someone has clearly seen her breasts and identified them as testicles! Together on Graham’s sofa tonight, the stars of new fantasy adventure Dolittle, Iron Man Robert Downey Jr and Oscar-winner Emma Thompson. Also actor Hugh Laurie, who appears in The Personal History of David Copperfield, Monty Python’s Terry Gilliam, director of The Man Who Killed Don Quixote. The Graham Norton Show | Series 26 Episode 15 | BBC #TheGrahamNortonShow #GrahamNorton #BBCGrahamNorton All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.
https://wn.com/Why_A_Naked_Emma_Thompson_Was_Mistaken_For_A_Man_|_The_Graham_Norton_Show_BBC
x klasky csupo part 1 v3
1:44

x klasky csupo part 1 v3

  • Order:
  • Duration: 1:44
  • Uploaded Date: 19 Feb 2025
  • views: 5
https://wn.com/X_Klasky_Csupo_Part_1_V3
Emma Thompson Evolution 🔥✨️ (1982-2024) #emmathompson #evolution #shorts #shortsfeed
0:46

Emma Thompson Evolution 🔥✨️ (1982-2024) #emmathompson #evolution #shorts #shortsfeed

  • Order:
  • Duration: 0:46
  • Uploaded Date: 01 May 2024
  • views: 22524
https://wn.com/Emma_Thompson_Evolution_🔥✨️_(1982_2024)_Emmathompson_Evolution_Shorts_Shortsfeed
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME:

"Don't Waste Your Life's Purpose Worrying About Your Body" - Emma Thompson

In part two of her conversation with Stephen Colbert, Emma Thompson discusses the nude scene in her new film and offers some advice to anyone bothered by the sight of themselves naked in the mirror. "Good Luck to You, Leo Grande" premieres this Friday on Hulu. #Colbert #LeoGrande #EmmaThompson Subscribe To "The Late Show" Channel: http://bit.ly/ColbertYouTube Watch full episodes of "The Late Show": http://bit.ly/1Puei40 Listen to "The Late Show Pod Show" podcast: https://link.chtbl.com/Awagtx95?sid=yt Like "The Late Show" on Facebook: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter: http://bit.ly/1dMzZzG Follow "The Late Show" on Instagram: http://bit.ly/29wfREj Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. --- The Late Show with Stephen Colbert is the premier late night talk show on CBS, airing at 11:35pm EST, streaming online via Paramount+, and delivered to the International Space Station on a USB drive taped to a weather balloon. Every night, viewers can expect: Comedy, humor, funny moments, witty interviews, celebrities, famous people, movie stars, bits, humorous celebrities doing bits, funny celebs, big group photos of every star from Hollywood, even the reclusive ones, plus also jokes.
6:39
"Don't Waste Your Life's Purpose Worrying About Your Body" - Emma Thompson
In part two of her conversation with Stephen Colbert, Emma Thompson discusses the nude sce...
published: 16 Jun 2022
Play in Full Screen
2:28
Emma Thompson Got Mistaken For A Naked 50 Year Old Man | The Graham Norton Show
Dame Emma Thompson got mistaken for a naked 50-year-old man after taking a bath in a pond....
published: 24 Jan 2020
Play in Full Screen
7:53
Emma Thompson On How Kenneth Branagh broke her heart | Rumour Juice
They were the golden couple of British cinema and made unforgettable films together. Howev...
published: 10 Mar 2024
Play in Full Screen
2:27
Emma Thompson Drunkenly Ate Her Husband's Great British Bake Off Cake | The Graham Norton Show
Emma Thompson tells us about the time she drunkenly ate her husband's Great British Bake O...
published: 27 Jan 2020
Play in Full Screen
2:23
Emma Thompson turned down a date with Donald Trump - The Graham Norton Show: 2017 - BBC
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉...
published: 27 Oct 2017
Play in Full Screen
1:48
Emma Thompson Disses Arnold Schwarzenegger - The Graham Norton Show
Emma tells us about working with Arnold Schwarzenegger and the time he admitted to not kno...
published: 28 Aug 2014
Play in Full Screen
5:09
Emma Thompson Kinda Plays Burning Questions
Ellen put her friend Emma Thompson in the hot seat for a round of “Burning Questions,” but...
published: 12 Apr 2019
Play in Full Screen
2:27
Why a naked Emma Thompson was mistaken for a man! | The Graham Norton Show - BBC
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉...
published: 24 Jan 2020
Play in Full Screen
1:44
x klasky csupo part 1 v3
published: 19 Feb 2025
Play in Full Screen
0:46
Emma Thompson Evolution 🔥✨️ (1982-2024) #emmathompson #evolution #shorts #shortsfeed
published: 01 May 2024
Play in Full Screen

Emma Thompson

Emma Thompson (born 15 April 1959) is a British actress, comedian, and writer. She is known for her portrayals of reticent women, often in period dramas and literary adaptations, and playing haughty or matronly characters with a sense of irony. She is considered one of Britain's most accomplished actresses.

Born in London to English actor Eric Thompson and Scottish actress Phyllida Law, Thompson was educated at Newnham College, University of Cambridge, where she became a member of the Footlights troupe. After appearing in several comedy programmes, she first came to prominence in 1987 in two BBC TV series, Tutti Frutti and Fortunes of War, winning the BAFTA TV Award for Best Actress for her work in both. Her first film role came in the 1989 romantic comedy The Tall Guy, and in the early 1990s she frequently collaborated with her then husband, actor and director Kenneth Branagh. The pair became popular in the British media, and co-starred in several films including Dead Again (1991) and Much Ado About Nothing (1993).

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

Edit

New York Rangers’ team bus backed into Macklin Celebrini’s car, witness says

Chico Enterprise Record 31 Mar 2025
Then, after the game, Celebrini, according to a witness, discovered that his car, parked in the players’ lot at the arena, had been struck by the Rangers’ team bus as it backed into the lot.
Edit

Ugadi Day: Temples witness heavy rush of devotees in Andhra Pradesh

The Hindu 30 Mar 2025
Sri Vijayaganapati temple-Srikakulam priests Penta Sridhar Sarma and Penta Nagesh Kumar Sarma performed Abhisekham to the presiding deity ....
Edit

British Cities Witness Open Iftar Meals

MENA FN 30 Mar 2025
(MENAFN - Kuwait News Agency (KUNA)) LONDON, March 29 (KUNA) -- Throughout March, the Ramadan Tent Project has been hosting Open Iftar events around the UK to bring meals to a greater audience and ... .
Edit

Best Irish wit, wisdom and sayings for Mother’s Day

Irish Central 30 Mar 2025
Irish wit, sayings, and songs that will help you celebrate your Irish Mammy ... .
Edit

PM Modi to witness Nagastra-3 kamikaze drone system in Nagpur

Business Line 30 Mar 2025
Prime Minister Narendra Modi on Sunday will onlook the Nagastra-3 kamikaze drone system developed by the Solar Defence and Aerospace Limited ... RBI allowing banks to charge for ATM withdrawals "institutionalised extraction," alleges CM Stalin.
Edit

Shanghai witnesses historic turnout for Indian music recital

The Times of India 30 Mar 2025
A classical Indian music recital in Shanghai featuring Grammy-winning flautist Rakesh Chaurasia and renowned sitarist Purbayan Chatterjee drew a record-breaking audience ... In 2024, he secured two Grammy Awards for his collaborative album 'As We Speak'.
Edit

Pier Park shooting reports: Witnesses say shots fired at Panama City Beach, Florida

Hindustan Times 30 Mar 2025
Some witnesses took to social media to report that at least three shots were fired ... This needs to stop,” one witness wrote on Facebook ... Another witness reported, “If your kids are on Spring Break at PCB call and check on them.
Edit

Saif Ali Khan Hotel Brawl Case: Amrita Arora bears witness in magistrate court; Claims Iqbal Sharma ‘provoked’ altercation

Pinkvilla 30 Mar 2025
Written by , Entertainment Journalist Published on Mar 30, 2025&nbsp;. 01.05 PM IST . 246. Saif Ali Khan Hotel Brawl Case. Amrita Arora bears witness in magistrate court; Claims Iqbal Sharma ‘provoked’ altercation. follow us. share ... .
Edit

KP to witness major bureaucratic reshuffle after Eid

The News International 30 Mar 2025
AFP/File. PESHAWAR ... The government sources said with the upcoming reshuffle, the province is set to witness a more streamlined and accountable administrative structure, paving the way for sustainable development and improved service delivery. .
Edit

Legendary Trader Peter Brandt Issues XRP Alert, Warns Altcoin at Risk of Witnessing 50% Drawdown

The Daily Hodl 30 Mar 2025
Seasoned trader Peter Brandt is warning that the payments altcoin XRP is at risk of going through a massive capitulation event ... Otherwise, he says XRP is in danger of breaking support at $1.90 and witnessing a waterfall event ... XRP.” Source ... ....
Edit

After an argument on wedding night, witnesses claim the newlywed drove “full speed” into the groomsman

Independent Newsgroup 30 Mar 2025
Flint, MichiganThe man accused of murdering a groomsman on the night of his own wedding fought back tears as a video of the incident was shown in court ... Three witnesses testified at the hearing ... Taylor, the victim, had an argument with Robinson.
×