ADVERTISEMENT

STREAMING REVIEWS: The adaptation game

Published Dec 31, 2022 08:10 am
A scene from 'Matilda the Musical'

Netflix has two drops this week that showcase how adaptations can work, although some better than others. Matilda the Musical comes from the original story of Roald Dahl, had been turned into a film, then a musical, and here’s the film adaptation of the musical. White Noise is a densely textured Don DeLillo novel, now transitioning to a film.

Roald Dahl’s Matilda the Musical (Netflix UK) – Matthew Warchus is the creative director at the Old Vic, and he directed the hit West End musical adaptation of Roald Dahl’s Matilda. He’s now turned the stage musical into a film and it’s a wonderfully conceptualized adaptation that relies on the production freedom that making a film entails. It’s positioned on the imaginative use of exaggeration. From the moment the film opens, we’re thrust into a make-believe world of color and exaggerated cuteness; and then we’re put off balance by the exaggerated stupidity, then meanness of Matilda’s parents. It’s a great study in contrast, and when time flies so we meet Matilda (Alisha Weir) as a young girl, we’re more than ready to suspend disbelief and just be taken on this Warchus ride.

The benefits of doing so become apparent when we finally enter the grounds of the Trunchbull school (or institution) that Matilda enrolls in. There, we finally meet Miss Agatha Trunchbull (Emma Thompson); and it’s a great exaggerated portrayal by Thompson that we delight in. You’ll never forget what she does with her dislike for pigtails, and how Thompson delivers her lines is a sustained hoot. The choreography of the children is impressive, and I’ll salute Warchus for making the production numbers such visual delights. While there is a middle portion that could have your interest waning, it’s compensated by the terrific final act, and how Warchus brings the film home. Do watch this, as it brings the Dahl spirit vividly back to life, and is undoubtedly, one of the better adaptations of his stories.

White Noise (Netflix USA) – Published in 1985, the Don DeLillo novel was hailed as one of his masterpieces, and it was commented on that this would be one difficult book to adapt to film. Talking of trauma and anxiety via inner monologue from the characters – a ‘nuclear’ family; the plot centered on an airborne toxic event – and this was written a year before Chernobyl happened, and 35 years before our COVID pandemic. Now we have noted Director Noah Baumbach taking on the responsibility of transitioning the book to film, and Baumbach is known more for lengthy dialogues and specializing in the milieu of New York academics and hipsters. On the surface, it didn’t look like one of those proverbial matches made in Heaven.

A scene from 'White Noise'

Adam Driver and Greta Gerwig (Mrs. Baumbach in real life) lead the cast as heads of the aforementioned family, and Don Cheadle starts off the film with a diatribe about how car crashes can be seen as emblematic of the American Dream, being constantly made bigger and better, and that we need to go beyond the deaths and destruction. As a family being forced to evacuate their home, and with Prof. Gladney (Driver) as a man exposed to the chemicals in the air for over two minutes, there’s Death at the doorstep of the family and with the father in particular. The dialogue comes off stilted and stiff at several junctures of the film. And while there is something interesting being said about panic and disasters, it’s evident that the commentators of 1985 hit the nail on the head, and this may have best been left on the bookshelf. Even Gerwig seems lost in her husband’s film. 

Related Tags

whitenoise matildathemusical
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.