- published: 25 Oct 2009
- views: 503442428
'+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; })); }); -->
Truly, Madly, Deeply is a 1990 British fantasy music drama film made for the BBC's Screen Two series, by BBC Films, Lionheart and Winston Pictures. The film, written and directed by Anthony Minghella, stars Juliet Stevenson and Alan Rickman.
Nina, an interpreter, is beside herself with grief at the recent death of her boyfriend, Jamie, a cellist. When she is on the verge of despair, Jamie reappears as a "ghost" and the couple are reconciled. The screenplay never clarifies whether this occurs in reality, or merely in Nina's imagination. Nina is ecstatic, but Jamie's behaviour – turning up the central heating to stifling levels, moving furniture around and inviting back "ghost friends" to watch videos – gradually infuriates her, and their relationship deteriorates. She meets Mark, a psychologist, to whom she is attracted, but she is unwilling to become involved with him because of Jamie's continued presence. Nina continues to love Jamie but is conflicted by his self-centred behaviour and ultimately wonders out loud, "Was it always like this?" Over Nina’s objections, Jamie decides to leave to allow her to move on. At the end of the film, Jamie watches Nina leave with Mark and one of his fellow ghosts asks, "Well?" and Jamie responds, "I think so... Yes." At this point the central conceit of the movie has become clear: Jamie came back specifically to help Nina get over him by tarnishing her idealised memory of him.
"Truly Madly Deeply" is a song by Australian pop band Savage Garden, released as the third single from their self-titled debut album in March 1997. Written by bandmates Darren Hayes and Daniel Jones, the song is a reworking of a song called "Magical Kisses" that the pair wrote together long before recording began on their debut album. It was used as the main theme from the soundtrack of the 1998 film Music from Another Room, starring Jude Law and Gretchen Mol.
The song reached number one in Australia in 1997 and in the United States the following year. Two music videos were filmed for the track—one for its original Australian release, and another for the international market shot in Paris.
There are two distinct versions of the song. The first was made available on the Australian version of the group's album, whereas the second version appears on the release of the album in Europe and America. This version was composed in 1996, and features a drum machine track instead of the more acoustic-sounding music featured on the Australian version. The European version also features on the group's greatest hits compilation, Truly Madly Completely.
Truly Madly Deeply... Memoirs of a Broken Heart's First Love! is a romance novel written by Indian author Faraaz Kazi. It was first published in 2010 by Cedar publishers. The book was republished again in October 2012 and went on to become a national award-winning title apart from becoming the first book by an Indian author to win the Goodreads Choice Award for Best Debut (Romance). It remains the only Indian book in the Top 100 YA Global Fiction list.
After moving to Philadelphia from Mumbai, India, teen Rahul Kapoor has difficulty coping with what seems to be the loss of a loved one. Upon enrolling into Delaware Valley High School, Rahul is introduced to Sahil, an American born Indian who is assigned the task of familiarizing Rahul with his new schooling.
Signalrunners is an American/British electronic music duo comprising Alan Nimmo (Scotland) & Andrew Michael Bayer (USA) formed in 2003, located in Washington, D.C. and operating Fraction Records.
Savage Garden's official music video for 'Truly Madly Deeply'. Click to listen to Savage Garden on Spotify: http://smarturl.it/SGSpot?IQid=SGTMD As featured on Truly Madly Completely - The Best of Savage Garden. Click to buy the track or album via iTunes: http://smarturl.it/SGTMCiTunes?IQid=SGTMD Google Play: http://smarturl.it/SGTMDPlay?IQid=SGTMD Amazon: http://smarturl.it/SGTMCAm?IQid=SGTMD More from Savage Garden Crash and Burn: https://youtu.be/W60IPexop30 Hold Me: https://youtu.be/CFAlR7tWekc I Knew I Loved You: https://youtu.be/jjnmICxvoVY More Great Ultimate Hits Of The Nineties videos here: http://smarturl.it/Ultimate90?IQid=SGTMD Follow Savage Garden Website: http://www.savagegarden.com/ Facebook: https://www.facebook.com/SavageGarden/ Twitter: https://twitter.com/savagegarde...
Thank you for watching!! Support me by subscribing and don't forget to hit that like button!! 🔔 Turn on notifications to stay updated with new uploads!! Follow: AweLyrics: https://www.facebook.com/awelyrics13 Savage Garden: Website: http://www.savagegarden.com/ Facebook: https://www.facebook.com/SavageGarden/ Twitter: https://twitter.com/savagegarden 🎤 Lyrics: Savage Garden - Truly Madly Deeply 🎵 I'll be your dream, I'll be your wish, I'll be your fantasy. I'll be your hope, I'll be your love, be everything that you need. I love you more with every breath, truly madly deeply do I will be strong, I will be faithful 'cause I'm counting on a new beginning. A reason for living. A deeper meaning. I want to stand with you on a mountain. I want to bathe with you in the sea. I want to lay lik...
Provided to YouTube by Sony Music Entertainment Truly Madly Deeply · Savage Garden Savage Garden ℗ 1997 Columbia Records, a division of Sony Music Entertainment Released on: 1997-03-04 Background Vocal, Vocal, Composer, Lyricist, Performance Arranger: Darren Hayes Background Vocal, Guitar, Keyboards, Programmer, Composer, Lyricist: Daniel Jones Drums, Percussion: Terapai Richmond Bass: Alex Hewitson Drums: Rex Goh Performance Arranger, Producer: Charles Fisher Mixing Engineer: Mike Pela Performance Arranger: Jim Bonnefond Auto-generated by YouTube.
Get "Truly Madly Deeply": Smart URL: https://lnk.to/TMDMTL Spotify: https://spoti.fi/3VHdqRe iTunes: https://apple.co/3WGgBKr Amazon: https://amzn.to/3Z9rs0U Music Travel Love performing an acoustic cover song of "Truly Madly Deeply" by Savage Garden featuring our friend @JonahBaker Special Thanks Filmed By : Trace Vaugn - https://bit.ly/3i430O5 Get our guitars - http://anuenueusa.com Follow Music Travel Love: Instagram: https://instagram.com/musictravellove/ Facebook: https://facebook.com/musictravellove/ Twitter: https://twitter.com/MTLVids Spotify: https://open.spotify.com/artist/2qNrJcE9LjzPdiXbrjkqFa Website: https://musictravellove.com/ About Music Travel Love: Welcome to the official Music Travel Love YouTube channel! We travel the world and set up our studio in awesome pl...
One Direction - Truly Madly Deeply (Official Audio) Follow on Spotify - https://1D.lnk.to/Spotify Listen on Apple Music - https://1D.lnk.to/AppleMusic Listen on Amazon Music - https://1D.lnk.to/AmazonMusic Listen on Deezer - https://1D.lnk.to/Deezer Listen on YouTube Music - https://smarturl.it/OneDirection_YTMusic WATCH STORY OF MY LIFE MUSIC VIDEO ► https://smarturl.it/OneDirection_SOML WATCH WHAT MAKES YOU BEAUTIFUL MUSIC VIDEO ► https://smarturl.it/1D_WMYB WATCH DRAG ME DOWN MUSIC VIDEO ► https://smarturl.it/OneDirection_DMD WATCH HISTORY MUSIC VIDEO ► https://smarturl.it/OneDirection_H WATCH STEAL MY GIRL MUSIC VIDEO ► https://smarturl.it/OneDirection_SMG WATCH BEST SONG EVER MUSIC VIDEO ► https://smarturl.it/OneDirection_BSE Subscribe to the One Direction YouTube channel - htt...
Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt Truly Madly Deeply Trailer - Directed by Anthony Minghella and starring Bill Paterson, Christopher Rozycki, Keith Bartlett, David Ryall, Ian Hawkes. Nina is totally heartbroken at the death of her boyfriend Jamie, but is even more unprepared for his return as a ghost. At first it's almost as good as it used to be - hey, even the rats that infested her house have disappeared. But Jamie starts bringing ghostly friends home and behaving more and more oddly. MGM - 1990
Savage Garden - Truly Madly Deeply (Live Video - Top Of The Pops) Savage Garden's TV performance on BBC UK’s Top Of The Pops 24th April 1998 Click the subscribe button to hear it first! From Savage Garden’s self-titled debut album: https://SavageGarden.lnk.to/DebutAlbum Website: http://savagegarden.com Facebook: https://www.facebook.com/SavageGarden Instagram: https://www.instagram.com/savagegardenofficial/ Twitter: https://twitter.com/savagegarden Spotify: https://open.spotify.com/artist/3NRFinRTEqUCfaTTZmk8ek?si=sJjrJwG6Q2iTgLjhTzePtw Apple Music: https://music.apple.com/us/artist/savage-garden/463177 I'll be your dream, I'll be your wish, I'll be your fantasy I'll be your hope, I'll be your love, be everything that you need I love you more with every breath truly, madly, deeply do ...
Grupppe von englischen Hooligans singt das LIed "savage garden - Truly madly deeply" für die Sportmarke "PUMA" Text: I'll be your dream I'll be your wish I'll be your fantasy I'll be your hope I'll be your love be everything that you need I'll love you more with every breath truly madly deeply do I will be strong I will be faithfull 'cause I'm counting on A new beginning a reason for living a deeper meaning yeah .....
#leo #tarot #leotarot #leojune2024 #leolovetarot #leo #tarot #leotarot #leojune2024 #leotarotjune2024 #leolovejune2024 #leolove #tarot #leotarot #leojune2024 #leolovetarot
I don't own anything. The rights belong to the owner.
Buy Truly Madly Guilty here! http://bit.ly/2azmIuO --Instagram: http://instagram.com/bookables# --If your interested in buying some books, check out my affiliate link with the amazing Book Depository! http://www.bookdepository.com/?a_aid=bookables --Goodreads-- http://www.goodreads.com/user/show/5376236-heather --Twitter-- https://twitter.com/bookables1 Email me at [email protected] for business inquires such as reviewing books, collabs, guest blog posts, interviews or etc :-) Hey there! Welcome to Bookables! My name is Heather and you haven't already guessed it...I love books! They are just an amazing thing and I'm happy to be able to review and talk about books on this channel! So be a peach and hit SUBSCRIBE so you can see more book videos because READING IS AWESOME! Lo...
In love for the first time, a son’s decision about the future divides his family in this fearless and thought-provoking novel from the #1 New York Times bestselling author of life-changing fiction. Coming October 27, 2020! www.karenkingsbury.com
The curtain is set to unravel Faraaz Kazi's upcoming romantic novel titled 'Truly, Madly, Deeply!' Please check out www.brandnsand.blogspot.com for a synopsis of the same and for info on the author.
Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt Truly Madly Deeply Trailer - Directed by Anthony Minghella and starring Bill Paterson, Christopher Rozycki, Keith Bartlett, David Ryall, Ian Hawkes. Nina is totally heartbroken at the death of her boyfriend Jamie, but is even more unprepared for his return as a ghost. At first it's almost as good as it used to be - hey, even the rats that infested her house have disappeared. But Jamie starts bringing ghostly friends home and behaving more and more oddly. MGM - 1990
#TrulyDeeplyMadly #PocketFM #LoveStory #AudioBook #RomanticStory #Audiostory #TrueLoveStory
Upload mp3s @ http://www.mp32tube.com The promo tune of Faraaz Kazi's debut novel 'Truly, Madly, Deeply...memoirs of a broken heart's first love!'
#TrulyDeeplyMadly #PocketFM #LoveStory #AudioBook #RomanticStory #Audiostory #TrueLoveStory
Truly, Madly, Deeply is a 1990 British fantasy music drama film made for the BBC's Screen Two series, by BBC Films, Lionheart and Winston Pictures. The film, written and directed by Anthony Minghella, stars Juliet Stevenson and Alan Rickman.
Nina, an interpreter, is beside herself with grief at the recent death of her boyfriend, Jamie, a cellist. When she is on the verge of despair, Jamie reappears as a "ghost" and the couple are reconciled. The screenplay never clarifies whether this occurs in reality, or merely in Nina's imagination. Nina is ecstatic, but Jamie's behaviour – turning up the central heating to stifling levels, moving furniture around and inviting back "ghost friends" to watch videos – gradually infuriates her, and their relationship deteriorates. She meets Mark, a psychologist, to whom she is attracted, but she is unwilling to become involved with him because of Jamie's continued presence. Nina continues to love Jamie but is conflicted by his self-centred behaviour and ultimately wonders out loud, "Was it always like this?" Over Nina’s objections, Jamie decides to leave to allow her to move on. At the end of the film, Jamie watches Nina leave with Mark and one of his fellow ghosts asks, "Well?" and Jamie responds, "I think so... Yes." At this point the central conceit of the movie has become clear: Jamie came back specifically to help Nina get over him by tarnishing her idealised memory of him.
(Instrumental)