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

Maurice (film)

Maurice (pronounced Morris) is a 1987 British romantic drama film based on the novel of the same name by E. M. Forster. It is a tale of gay love in early 20th century England, following its main character Maurice Hall from his school days through university until he is united with his life partner.

Maurice was produced by Ismail Merchant via Merchant Ivory Productions and Film Four International, directed by James Ivory, and written by Ivory and Kit Hesketh-Harvey, with cinematography by Pierre Lhomme. In the style of Merchant Ivory's A Room with a View, old book endpapers accompany the theme music played in minor scale at the beginning and in major scale at the end to bracket the film as a cinematographic novel.

The film stars James Wilby as Maurice, Hugh Grant as Clive and Rupert Graves as Alec. The supporting cast included Denholm Elliott as Dr Barry, Simon Callow as Mr Ducie, Billie Whitelaw as Mrs Hall, and Ben Kingsley as Lasker-Jones.

Plot

During a trip to a windswept beach, Maurice Hall, an 11-year-old schoolboy, receives instructions about the "sacred mysteries" of sex from his teacher, who wants to explain to the fatherless boy the changes he would experience in puberty.

Podcasts:

Maurice

ALBUMS

Maurice

ALBUMS

Maurice

ALBUMS

Maurice

ALBUMS

Maurice

ALBUMS

  • Four released: 2003

Maurice

ALBUMS

Maurice

ALBUMS

Maurice

  • MAURICE (1987) ♡ Hugh Grant, James Wilby [ Multiple Language Sub] HD ▪︎ FULL MOVIE

    Maurice is a 1987 British romantic drama film directed by James Ivory, based on the 1971 novel Maurice by E. M. Forster. The film stars James Wilby as Maurice, Hugh Grant as Clive and Rupert Graves as Alec. The supporting cast includes Denholm Elliott as Dr Barry, Simon Callow as Mr Ducie, Billie Whitelaw as Mrs Hall, and Ben Kingsley as Lasker-Jones. #hughgrant #jameswilby #maurice Multiple Language Subtitles Captions

    published: 06 Jan 2024
  • Maurice Re-Release Trailer (2017) | Movieclips Trailers

    Maurice Re-Release Trailer (2017): In celebration of its 30th Anniversary, Maurice returns in a sparkling new 4K restoration starring Ben Kingsley, Hugh Grant, and James Wilby! Be the first to watch, comment, and share trailers and movie teasers/clips dropping soon @MovieclipsTrailers.  ► Buy Tickets to Maurice: http://www.fandango.com/maurice_30966/movieoverview?cmp=MCYT_YouTube_Desc Watch more Trailers: ► HOT New Trailers Playlist: http://bit.ly/2hp08G1 ► What to Watch Playlist: http://bit.ly/2ieyw8G ► Classic Trailer Vault: http://bit.ly/1u43jDe In celebration of its 30th Anniversary, Maurice returns in a sparkling new 4K restoration that befits its status as one of the finest films ever made by the exalted Merchant Ivory Productions. Maurice Hall (James Wilby) and Clive Durham (Hug...

    published: 20 Apr 2017
  • Maurice

    Maurice is a 1987 British romantic drama film directed by James Ivory, based on the 1971 novel Maurice by E. M. Forster. At a time when homosexuality is punishable by imprisonment, Maurice Hall (James Wilby) and Clive Durham (Hugh Grant) find themselves falling in love at Cambridge. Set against the stifling conformity of pre-World War I English society, MAURICE is a story of coming to terms with one's sexuality and identity in the face of disapproval and misunderstanding. Initial Release : 18 September 1987 (USA) Adapted From : Maurice (E. M. Forster) Director : James Ivory Genre : Romance/Drama Other Films : Little Ashes : https://youtu.be/0rfjAp5bMNA Snails In The Rain : https://youtu.be/ZCsEVVa9VkM Cuatro Lunas: https://youtu.be/vF01IZwvtvw Hidden Kisses: https://youtu.be/9lAmo0HtvjI

    published: 29 May 2021
  • Hugh Grant and James Wilby on Maurice, Merchant Ivory's gay love story | BFI Flare

    The stars of James Ivory's 1987 film, based on the book by E.M. Forster, talk about how attitudes to on-screen LGBTQ+ love stories have changed - both among audiences and film crews - since they starred in the romance together. Maurice, which screened at this year's BFI Flare, stars Wilby as Maurice Hall, a Cambridge university student who falls in love with Grant's character at a time when homosexuality was still illegal. Subscribe: http://bit.ly/subscribetotheBFI. Watch more on the BFI Player: http://player.bfi.org.uk/ Follow us on Twitter: https://twitter.com/BFI Like us on Facebook: https://www.facebook.com/BritishFilmInstitute Follow us on Google+: https://plus.google.com/+britishfilminstitute/

    published: 04 Apr 2018
  • [Vietsub] MAURICE (1987) | Bao gồm các cảnh đã bị xóa

    Vào những năm đầu của thập niên 10 thế kỷ 20, hai chàng sinh viên trường Đại học Cambridge là Clive và Maurice vô tình gặp nhau và dần nảy sinh những cảm xúc khác lạ. Họ dần rơi vào lưới tình và bắt đầu một mối tình thuần túy đẹp đẽ, cho tới khi một biến cố xảy ra với người bạn mang dòng dõi quý tộc của cả hai, khiến Clive tìm cách thoát khỏi mối quan hệ bị coi là đồi phong bại tục ấy, bỏ lại Maurice cùng những đau đớn và ám ảnh luôn hiện hữu như một bóng ma. Vào đêm Maurice trằn trọc không thể yên giấc, sự xuất hiện của người gác rừng nhà Durham một lần nữa đưa Maurice len lỏi theo dòng cảm xúc đặc biệt. Liệu Maurice có thể thoát khỏi những ám ảnh trong quá khứ để tìm được tri kỷ, người sẽ sát cánh bên mình suốt đời? • Biên dịch: Đôi chuyện tình trai, dwanganh, nhân. • Căn chỉnh + ghép p...

    published: 05 Nov 2021
  • Clive Confesses His Love | Maurice

    In this scene from 1987 film Maurice, Maurice and Clive share a special moment together and later Clive confesses his love for Maurice. Watch the full movie here: https://youtu.be/olAJfHnrtZU

    published: 01 Mar 2022
  • RULE NUMBER ONE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE

    This is amazing movie will blow your mind .... very educative and emotional A must watch for everyone. Starring: MAURICE SAM, SHINE ROSMAN #mauricesam #shinerosman #mauricesammovies2025 #nigerianmovies #nollywoodmovies #africanmovie #2025movies #nigerianfilms #lovestorymovie

    published: 21 Jan 2025
  • *sighs, downloads hinge* #jameswilby #hughgrant #maurice

    James Wilby and Hugh Grant star in this 80s classic where two young men face off against societal norms while discovering love and self in a world that's less than understanding. Stream MAURICE on Cineverse! WATCH ON THE WEB: https://bit.ly/MauriCV DOWNLOAD ON iOS: https://bit.ly/CineverseiOS DOWNLOAD ON ANDROID: https://bit.ly/CineverseAndroid DOWNLOAD ON ROKU: https://bit.ly/CineverseRoku ABOUT THE FILM: Set against the stifling conformity of pre-World War I English society, E.M. Forster's Maurice is a story of coming to terms with one's sexuality and identity in the face of disapproval and misunderstanding. Maurice Hall (James Wilby) and Clive Durham (Hugh Grant) find themselves falling in love at Cambridge. In a time when homosexuality is punishable by imprisonment, the two must kee...

    published: 21 Aug 2024
  • RULE NUMBER 1 NIGERIAN MOVIE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE

    published: 22 Jan 2025
  • "You're the only happiness there is for me." 🥺 #hughgrant #maurice

    Stream 'Maurice' on Cineverse WATCH ON THE WEB: https://bit.ly/StreamCineverse DOWNLOAD ON iOS: https://bit.ly/CineverseiOS DOWNLOAD ON ANDROID: https://bit.ly/CineverseAndroid DOWNLOAD ON ROKU: https://bit.ly/CineverseRoku ABOUT THE FILM: Set against the stifling conformity of pre-World War I English society, E.M. Forster's Maurice is a story of coming to terms with one's sexuality and identity in the face of disapproval and misunderstanding. Maurice Hall (James Wilby) and Clive Durham (Hugh Grant) find themselves falling in love at Cambridge. In a time when homosexuality is punishable by imprisonment, the two must keep their feelings for one another a complete secret. After a friend is arrested and disgraced for the unspeakable vice of the Greeks, Clive abandons his forbidden love and ...

    published: 21 Aug 2023
MAURICE (1987) ♡ Hugh Grant, James Wilby [ Multiple Language Sub] HD ▪︎ FULL MOVIE
2:20:20

MAURICE (1987) ♡ Hugh Grant, James Wilby [ Multiple Language Sub] HD ▪︎ FULL MOVIE

  • Order:
  • Duration: 2:20:20
  • Uploaded Date: 06 Jan 2024
  • views: 103144
Maurice is a 1987 British romantic drama film directed by James Ivory, based on the 1971 novel Maurice by E. M. Forster. The film stars James Wilby as Maurice, Hugh Grant as Clive and Rupert Graves as Alec. The supporting cast includes Denholm Elliott as Dr Barry, Simon Callow as Mr Ducie, Billie Whitelaw as Mrs Hall, and Ben Kingsley as Lasker-Jones. #hughgrant #jameswilby #maurice Multiple Language Subtitles Captions
https://wn.com/Maurice_(1987)_♡_Hugh_Grant,_James_Wilby_Multiple_Language_Sub_Hd_▪︎_Full_Movie
Maurice Re-Release Trailer (2017) | Movieclips Trailers
2:22

Maurice Re-Release Trailer (2017) | Movieclips Trailers

  • Order:
  • Duration: 2:22
  • Uploaded Date: 20 Apr 2017
  • views: 1057228
Maurice Re-Release Trailer (2017): In celebration of its 30th Anniversary, Maurice returns in a sparkling new 4K restoration starring Ben Kingsley, Hugh Grant, and James Wilby! Be the first to watch, comment, and share trailers and movie teasers/clips dropping soon @MovieclipsTrailers.  ► Buy Tickets to Maurice: http://www.fandango.com/maurice_30966/movieoverview?cmp=MCYT_YouTube_Desc Watch more Trailers: ► HOT New Trailers Playlist: http://bit.ly/2hp08G1 ► What to Watch Playlist: http://bit.ly/2ieyw8G ► Classic Trailer Vault: http://bit.ly/1u43jDe In celebration of its 30th Anniversary, Maurice returns in a sparkling new 4K restoration that befits its status as one of the finest films ever made by the exalted Merchant Ivory Productions. Maurice Hall (James Wilby) and Clive Durham (Hugh Grant) find themselves falling in love at Cambridge. In a time when homosexuality is punishable by imprisonment, the two must keep their feelings for one another a secret. After a friend is arrested and disgraced for "the unspeakable vice of the Greeks," Clive abandons his forbidden love and marries a woman. Maurice, however, struggles with his identity and self-confidence, seeking the help of a hypnotist to rid himself of his undeniable urges. But while staying with Clive and his wife, Maurice is seduced by the affectionate and yearning servant Alec Scudder (Rupert Graves), an event that brings about profound changes in Maurice's life and outlook. About Movieclips Trailers: ► Subscribe to TRAILERS:http://bit.ly/sxaw6h ► We’re on SNAPCHAT: http://bit.ly/2cOzfcy  ► Like us on FACEBOOK: http://bit.ly/1QyRMsE  ► Follow us on TWITTER:http://bit.ly/1ghOWmt  The Fandango MOVIECLIPS Trailers channel is your destination for hot new trailers the second they drop. The Fandango MOVIECLIPS Trailers team is here day and night to make sure all the hottest new movie trailers are available whenever, wherever you want them.
https://wn.com/Maurice_Re_Release_Trailer_(2017)_|_Movieclips_Trailers
Maurice
2:20:20

Maurice

  • Order:
  • Duration: 2:20:20
  • Uploaded Date: 29 May 2021
  • views: 49477
Maurice is a 1987 British romantic drama film directed by James Ivory, based on the 1971 novel Maurice by E. M. Forster. At a time when homosexuality is punishable by imprisonment, Maurice Hall (James Wilby) and Clive Durham (Hugh Grant) find themselves falling in love at Cambridge. Set against the stifling conformity of pre-World War I English society, MAURICE is a story of coming to terms with one's sexuality and identity in the face of disapproval and misunderstanding. Initial Release : 18 September 1987 (USA) Adapted From : Maurice (E. M. Forster) Director : James Ivory Genre : Romance/Drama Other Films : Little Ashes : https://youtu.be/0rfjAp5bMNA Snails In The Rain : https://youtu.be/ZCsEVVa9VkM Cuatro Lunas: https://youtu.be/vF01IZwvtvw Hidden Kisses: https://youtu.be/9lAmo0HtvjI
https://wn.com/Maurice
Hugh Grant and James Wilby on Maurice, Merchant Ivory's gay love story | BFI Flare
5:21

Hugh Grant and James Wilby on Maurice, Merchant Ivory's gay love story | BFI Flare

  • Order:
  • Duration: 5:21
  • Uploaded Date: 04 Apr 2018
  • views: 337196
The stars of James Ivory's 1987 film, based on the book by E.M. Forster, talk about how attitudes to on-screen LGBTQ+ love stories have changed - both among audiences and film crews - since they starred in the romance together. Maurice, which screened at this year's BFI Flare, stars Wilby as Maurice Hall, a Cambridge university student who falls in love with Grant's character at a time when homosexuality was still illegal. Subscribe: http://bit.ly/subscribetotheBFI. Watch more on the BFI Player: http://player.bfi.org.uk/ Follow us on Twitter: https://twitter.com/BFI Like us on Facebook: https://www.facebook.com/BritishFilmInstitute Follow us on Google+: https://plus.google.com/+britishfilminstitute/
https://wn.com/Hugh_Grant_And_James_Wilby_On_Maurice,_Merchant_Ivory's_Gay_Love_Story_|_Bfi_Flare
[Vietsub] MAURICE (1987) | Bao gồm các cảnh đã bị xóa
2:50:10

[Vietsub] MAURICE (1987) | Bao gồm các cảnh đã bị xóa

  • Order:
  • Duration: 2:50:10
  • Uploaded Date: 05 Nov 2021
  • views: 269749
Vào những năm đầu của thập niên 10 thế kỷ 20, hai chàng sinh viên trường Đại học Cambridge là Clive và Maurice vô tình gặp nhau và dần nảy sinh những cảm xúc khác lạ. Họ dần rơi vào lưới tình và bắt đầu một mối tình thuần túy đẹp đẽ, cho tới khi một biến cố xảy ra với người bạn mang dòng dõi quý tộc của cả hai, khiến Clive tìm cách thoát khỏi mối quan hệ bị coi là đồi phong bại tục ấy, bỏ lại Maurice cùng những đau đớn và ám ảnh luôn hiện hữu như một bóng ma. Vào đêm Maurice trằn trọc không thể yên giấc, sự xuất hiện của người gác rừng nhà Durham một lần nữa đưa Maurice len lỏi theo dòng cảm xúc đặc biệt. Liệu Maurice có thể thoát khỏi những ám ảnh trong quá khứ để tìm được tri kỷ, người sẽ sát cánh bên mình suốt đời? • Biên dịch: Đôi chuyện tình trai, dwanganh, nhân. • Căn chỉnh + ghép phim: Đôi chuyện tình trai. • Thiết kế: Đôi chuyện tình trai. Vui lòng không sao chép phụ đề và sử dụng cho mục đích thương mại. Mọi hành vi thu lợi nhuận đều vi phạm luật Sở hữu trí tuệ. ✨ Ghé thăm blog của mình trên Facebook: https://www.facebook.com/doichuyentinhtrai ✨ Tiểu thuyết gốc Maurice của E. M. Forster, phát hành bởi NXB Wings Books thuộc Kim Đồng: https://www.wingsbooks.com.vn/wingsclassics
https://wn.com/Vietsub_Maurice_(1987)_|_Bao_Gồm_Các_Cảnh_Đã_Bị_Xóa
Clive Confesses His Love | Maurice
3:06

Clive Confesses His Love | Maurice

  • Order:
  • Duration: 3:06
  • Uploaded Date: 01 Mar 2022
  • views: 20364
In this scene from 1987 film Maurice, Maurice and Clive share a special moment together and later Clive confesses his love for Maurice. Watch the full movie here: https://youtu.be/olAJfHnrtZU
https://wn.com/Clive_Confesses_His_Love_|_Maurice
RULE NUMBER ONE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE
1:58:36

RULE NUMBER ONE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE

  • Order:
  • Duration: 1:58:36
  • Uploaded Date: 21 Jan 2025
  • views: 2709500
This is amazing movie will blow your mind .... very educative and emotional A must watch for everyone. Starring: MAURICE SAM, SHINE ROSMAN #mauricesam #shinerosman #mauricesammovies2025 #nigerianmovies #nollywoodmovies #africanmovie #2025movies #nigerianfilms #lovestorymovie
https://wn.com/Rule_Number_One_Maurice_Sam,_Shine_Rosman,_2025_Full_Nigerian_Movie
*sighs, downloads hinge* #jameswilby #hughgrant #maurice
0:31

*sighs, downloads hinge* #jameswilby #hughgrant #maurice

  • Order:
  • Duration: 0:31
  • Uploaded Date: 21 Aug 2024
  • views: 5562
James Wilby and Hugh Grant star in this 80s classic where two young men face off against societal norms while discovering love and self in a world that's less than understanding. Stream MAURICE on Cineverse! WATCH ON THE WEB: https://bit.ly/MauriCV DOWNLOAD ON iOS: https://bit.ly/CineverseiOS DOWNLOAD ON ANDROID: https://bit.ly/CineverseAndroid DOWNLOAD ON ROKU: https://bit.ly/CineverseRoku ABOUT THE FILM: Set against the stifling conformity of pre-World War I English society, E.M. Forster's Maurice is a story of coming to terms with one's sexuality and identity in the face of disapproval and misunderstanding. Maurice Hall (James Wilby) and Clive Durham (Hugh Grant) find themselves falling in love at Cambridge. In a time when homosexuality is punishable by imprisonment, the two must keep their feelings for one another a complete secret. After a friend is arrested and disgraced for the unspeakable vice of the Greeks, Clive abandons his forbidden love and marries a young woman. Maurice, however, struggles with his identity and self-confidence, seeking the help of a hypnotist to rid himself of his undeniable urges. But while staying with Clive and his shallow wife, Anne, Maurice is seduced by the affectionate and yearning servant Alec Scudder (Rupert Graves), an event that brings about profound changes in Maurice's life and outlook. CAST: James Wilby, Rupert Graves, Hugh Grant DIRECTED BY: James Ivory CINEVERSE ON SOCIAL Facebook: https://bit.ly/cineverseFB Instagram: https://bit.ly/cineverseIG Twitter: https://bit.ly/cineverseTWT TikTok: https://bit.ly/cineverseTT Pinterest: https://bit.ly/cineversePT
https://wn.com/Sighs,_Downloads_Hinge_Jameswilby_Hughgrant_Maurice
RULE NUMBER 1 NIGERIAN MOVIE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE
2:04

RULE NUMBER 1 NIGERIAN MOVIE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE

  • Order:
  • Duration: 2:04
  • Uploaded Date: 22 Jan 2025
  • views: 781
https://wn.com/Rule_Number_1_Nigerian_Movie_Maurice_Sam,_Shine_Rosman,_2025_Full_Nigerian_Movie
"You're the only happiness there is for me." 🥺 #hughgrant #maurice
0:24

"You're the only happiness there is for me." 🥺 #hughgrant #maurice

  • Order:
  • Duration: 0:24
  • Uploaded Date: 21 Aug 2023
  • views: 21303
Stream 'Maurice' on Cineverse WATCH ON THE WEB: https://bit.ly/StreamCineverse DOWNLOAD ON iOS: https://bit.ly/CineverseiOS DOWNLOAD ON ANDROID: https://bit.ly/CineverseAndroid DOWNLOAD ON ROKU: https://bit.ly/CineverseRoku ABOUT THE FILM: Set against the stifling conformity of pre-World War I English society, E.M. Forster's Maurice is a story of coming to terms with one's sexuality and identity in the face of disapproval and misunderstanding. Maurice Hall (James Wilby) and Clive Durham (Hugh Grant) find themselves falling in love at Cambridge. In a time when homosexuality is punishable by imprisonment, the two must keep their feelings for one another a complete secret. After a friend is arrested and disgraced for the unspeakable vice of the Greeks, Clive abandons his forbidden love and marries a young woman. Maurice, however, struggles with his identity and self-confidence, seeking the help of a hypnotist to rid himself of his undeniable urges. But while staying with Clive and his shallow wife, Anne, Maurice is seduced by the affectionate and yearning servant Alec Scudder (Rupert Graves), an event that brings about profound changes in Maurice's life and outlook. CAST: James Wilby, Rupert Graves, Hugh Grant DIRECTED BY: James Ivory CINEVERSE ON SOCIAL Facebook: https://bit.ly/cineverseFB Instagram: https://bit.ly/cineverseIG Twitter: https://bit.ly/cineverseTWT TikTok: https://bit.ly/cineverseTT Pinterest: https://bit.ly/cineversePT
https://wn.com/You're_The_Only_Happiness_There_Is_For_Me._🥺_Hughgrant_Maurice
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • MAURICE (1987) ♡ Hugh Grant, James Wilby [ Multiple Language Sub] HD ▪︎ FULL MOVIE
    2:20:20
    MAURICE (1987) ♡ Hugh Grant, James Wilby [ Multiple Language Sub] HD ▪︎ FULL MOVIEremove from playlist
  • Maurice Re-Release Trailer (2017) | Movieclips Trailers
    2:22
    Maurice Re-Release Trailer (2017) | Movieclips Trailersremove from playlist
  • Maurice
    2:20:20
    Mauriceremove from playlist
  • Hugh Grant and James Wilby on Maurice, Merchant Ivory's gay love story | BFI Flare
    5:21
    Hugh Grant and James Wilby on Maurice, Merchant Ivory's gay love story | BFI Flareremove from playlist
  • [Vietsub] MAURICE (1987) | Bao gồm các cảnh đã bị xóa
    2:50:10
    [Vietsub] MAURICE (1987) | Bao gồm các cảnh đã bị xóaremove from playlist
  • Clive Confesses His Love | Maurice
    3:06
    Clive Confesses His Love | Mauriceremove from playlist
  • RULE NUMBER ONE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE
    1:58:36
    RULE NUMBER ONE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIEremove from playlist
  • *sighs, downloads hinge* #jameswilby #hughgrant #maurice
    0:31
    *sighs, downloads hinge* #jameswilby #hughgrant #mauriceremove from playlist
  • 0:24
    "You're the only happiness there is for me." 🥺 #hughgrant #mauriceremove from playlist
PLAYLIST TIME: 0:00 / 9:43:14

MAURICE (1987) ♡ Hugh Grant, James Wilby [ Multiple Language Sub] HD ▪︎ FULL MOVIE

Maurice is a 1987 British romantic drama film directed by James Ivory, based on the 1971 novel Maurice by E. M. Forster. The film stars James Wilby as Maurice, Hugh Grant as Clive and Rupert Graves as Alec. The supporting cast includes Denholm Elliott as Dr Barry, Simon Callow as Mr Ducie, Billie Whitelaw as Mrs Hall, and Ben Kingsley as Lasker-Jones. #hughgrant #jameswilby #maurice Multiple Language Subtitles Captions
2:20:20
MAURICE (1987) ♡ Hugh Grant, James Wilby [ Multiple Language Sub] HD ▪︎ FULL MOVIE
Maurice is a 1987 British romantic drama film directed by James Ivory, based on the 1971 n...
published: 06 Jan 2024
Play in Full Screen
2:22
Maurice Re-Release Trailer (2017) | Movieclips Trailers
Maurice Re-Release Trailer (2017): In celebration of its 30th Anniversary, Maurice returns...
published: 20 Apr 2017
Play in Full Screen
2:20:20
Maurice
Maurice is a 1987 British romantic drama film directed by James Ivory, based on the 1971 n...
published: 29 May 2021
Play in Full Screen
5:21
Hugh Grant and James Wilby on Maurice, Merchant Ivory's gay love story | BFI Flare
The stars of James Ivory's 1987 film, based on the book by E.M. Forster, talk about how at...
published: 04 Apr 2018
Play in Full Screen
2:50:10
[Vietsub] MAURICE (1987) | Bao gồm các cảnh đã bị xóa
Vào những năm đầu của thập niên 10 thế kỷ 20, hai chàng sinh viên trường Đại học Cambridge...
published: 05 Nov 2021
Play in Full Screen
3:06
Clive Confesses His Love | Maurice
In this scene from 1987 film Maurice, Maurice and Clive share a special moment together an...
published: 01 Mar 2022
Play in Full Screen
1:58:36
RULE NUMBER ONE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE
This is amazing movie will blow your mind .... very educative and emotional A must watch f...
published: 21 Jan 2025
Play in Full Screen
0:31
*sighs, downloads hinge* #jameswilby #hughgrant #maurice
James Wilby and Hugh Grant star in this 80s classic where two young men face off against s...
published: 21 Aug 2024
Play in Full Screen
2:04
RULE NUMBER 1 NIGERIAN MOVIE - MAURICE SAM, SHINE ROSMAN, 2025 FULL NIGERIAN MOVIE
published: 22 Jan 2025
Play in Full Screen
0:24
"You're the only happiness there is for me." 🥺 #hughgrant #maurice
Stream 'Maurice' on Cineverse WATCH ON THE WEB: https://bit.ly/StreamCineverse DOWNLOAD O...
published: 21 Aug 2023
Play in Full Screen

Maurice (film)

Maurice (pronounced Morris) is a 1987 British romantic drama film based on the novel of the same name by E. M. Forster. It is a tale of gay love in early 20th century England, following its main character Maurice Hall from his school days through university until he is united with his life partner.

Maurice was produced by Ismail Merchant via Merchant Ivory Productions and Film Four International, directed by James Ivory, and written by Ivory and Kit Hesketh-Harvey, with cinematography by Pierre Lhomme. In the style of Merchant Ivory's A Room with a View, old book endpapers accompany the theme music played in minor scale at the beginning and in major scale at the end to bracket the film as a cinematographic novel.

The film stars James Wilby as Maurice, Hugh Grant as Clive and Rupert Graves as Alec. The supporting cast included Denholm Elliott as Dr Barry, Simon Callow as Mr Ducie, Billie Whitelaw as Mrs Hall, and Ben Kingsley as Lasker-Jones.

Plot

During a trip to a windswept beach, Maurice Hall, an 11-year-old schoolboy, receives instructions about the "sacred mysteries" of sex from his teacher, who wants to explain to the fatherless boy the changes he would experience in puberty.

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

Edit

How one act sparked heated mass brawl between Hawks and Tigers stars as Jack Gunston ...

The Daily Mail 04 May 2025
After a dull opening, tempers flared in the second term when Sicily caught Maurice Rioli holding the ball and threw the Tiger to the ground ... 'Tim Taranto came in to fly the flag for Maurice Rioli,' Jason Bennett said to Channel 7.
Edit

Stewart receives infantry award

The Newport Plain Talk 04 May 2025
Newport’s Jackie Stewart recently received the Order of St. Maurice, which is awarded by the National Infantry Association and the Chief of Infantry. It recognizes significant contributions made by infantrymen, infantry supporters and spouses ....
Edit

The untold stories of English cricket heroes who died in World War Two

Yahoo Daily News 04 May 2025
We are sitting on a park bench in Twickenham on a warm spring morning and tomorrow Georgina will turn 81 ... Major Maurice Turnbull of the Welsh Guards played nine Tests for England, captained Glamorgan and played two times for Wales at rugby union ... .
Edit

Buncombe, Asheville property transfers for April 10-15

Citizen Times 04 May 2025
11 Silver Place, $422,000, James D Bailey and James Dwight Bailer to Patricia H Box11 Amys Way, $580,000, Maurice E Soulis and Renee Soulis to Aaron Paul17 Laurel Lane, $850,000, Marsha Campbell and ...
Edit

Maurice Sendak artist, collector, connoisseur online

The Malta Independent 03 May 2025
Maurice Sendak, Artist, Collector, Connoisseur includes a live auction on 10 June - which would have been Sendak's 97th birthday - and an online auction 29 May-10 June 2025 ... world of Maurice Sendak.
Edit

Carjacker takes 2-year-old on wild joyride after mom leaves tot alone in vehicle on Brooklyn ...

New York Post 03 May 2025
While she was in the store, 34-year-old Maurice Stephens got behind the wheel and drove off with the toddler, said cops. 3. Maurice Stephens, 34, hopped inside the unattended Nissan Pathfinder and drive off with the 2-year-old boy inside, police said.
Edit

Handshakes in Stanley Cup Playoffs ‘should be on the players,’ Panthers coach says

NHL 03 May 2025
Maurice believes postgame tradition belongs to those on the ice; series against Maple Leafs begins Monday .
Edit

Upper Crust Baking offers authentic French-Jewish pastries | Focus on Winters

The Daily Democrat 03 May 2025
(Courtesy) ... Lorin came home to help his parents, Trudy and Maurice “Mo” Kalisky, with the bakery after spending 14 years in Paris, where he met his wife, and his two daughters were born ... 1 of 5 ... Trudy and Maurice “Mo” Kalisky opened Upper Crust in 1986.
Edit

Panthers-turned-Leafs draw playoff battle lines against old friends

Toronto Sun 03 May 2025
Story continues below ... View more offers ... “Good for all of them,” coach Paul Maurice told media in Sunrise this week of Anthony Stolarz, Oliver Ekman-Larsson and Steve Lorentz ... But Lorentz would not hear a discouraging word about life under Maurice ... X ... .
Edit

Leafs in tough against defending Stanley Cup champions, warns NHL scout

Toronto Sun 03 May 2025
Article content. We apologize, but this video has failed to load ... Article content ... Sign Up ... Experienced Paul Maurice against experienced Craig Berube seems to be an early series wash ... Maurice is coming off seasons of winning a Cup and losing a Cup ... .
Edit

Lettuce learn: Redford Union elementary students help grow school lunches

Hometown Life 03 May 2025
REDFORD TWP. — At Hilbert Elementary, lunchtime starts in the classroom ... Alexis Maurice, another fourth grader, said she hadn’t tried the lettuce yet but was definitely thinking about it and said she enjoyed the growing and harvesting process.
Edit

Bernie Sanders and allies took shots at Trump, Musk and Scott Perry in Harrisburg rally

Penn Live 03 May 2025
Where We Go from Here” tour. The Vermont senator was introduced by U.S ...Right at the top it read ‘we the people.’” ... Maurice Cobb, Secretary-Treasurer for the Pennsylvania AFL-CIO, blasted President Trump’s seemingly haphazard tariff policy ... ” ... ....
Edit

Nichols College hands out degrees at DCU Center

The Gardner News 03 May 2025
Nichols College held its commencement exercises at the DCU Center on May 3, with 412 students being recognized. Anne F. Ackerley, a senior advisor to the retirement business at BlackRock, gave the commencement address ... Athol ... Stephanie Elizabeth Maurice.
Edit

When courage met fire: Remembering Indianola’s 1965 firebombings, Part 2

The Enterprise-Tocsin 03 May 2025
Author’s Note. ... He generously shared the images with me in 2000 and described how, at the time, he had to conceal that he was taking them ... Allen noted that another Black resident, Maurice Cooper, managed to extinguish part of the fire ... until 11 p.m ... .
Edit

Maple Leafs, Panthers taking different approaches to find a preparation edge in series

TSN Canada 03 May 2025
Brady's Ottawa Senators lost to the Leafs in a hard-fought first-round series ... --- ... "Half of our teams are different so there's not much at all to be used from that series," Panthers coach&nbsp;Paul Maurice told reporters in Fort Lauderdale, Fla.
×