ADVERTISEMENT

STREAMING REVIEWS: Welcome to my world

Published Oct 25, 2021 06:45 am

Two films with strong world-building elements. One is the much anticipated 2021 adaptation of the Frank Herbert SciFi masterpiece; while the second is a ‘filmed during COVID’ anthology.

41104



Dune (HBO Max) - Here, finally, is the long-awaited Denis Villeneuve adaptation of Frank Herbert’s Dune. It differentiates itself from David Lynch’s Dune in that it takes just a portion of the book, and world-builds within those pages, without overreaching in terms of scope or narrative content. If you recall Lynch’s film treatment, he tried to compress all the stories within one film, a foolhardy motion to begin with. Now available for viewing on HBO Max, the million dollar question for fans is whether to stream it, or wait til November 10th, when it’s among the films that will mark the reopening of our physical cinemas. I’ve watched it from the comfort of home, and while I don’t regret having watched it so I can submit this review, I’ll confess that it would have been great if I’d seen it first on the big screen.


At heart, a story of love and connection between two individuals from different worlds, and an exploration of politics, war, domination, trade, and oppression, there’s so much to take from the film and how it explores what for all intents and purpose, is merely a snippet of the Dune saga. The cast members are well-chosen, and Villeneuve takes the pain to let each have their own interesting back-story and tangled web of motives. The music and sound score help accentuate the spectacle that accompanies this film and its grand vision. And to his credit, in all this world-building and visual extravaganza, Villeneuve knows how to focus every so often on the intimate and personal. This more than anything, has always been Villeneuve’s gift and it holds him in good stead given the scope of this film.

41103


Year of the Everlasting Storm (Video on Demand) - Shot by seven different directors in seven different parts of the world, this anthology was specifically conceptualized and shot during the COVID pandemic. The intent was to show that cinematic and artistic creativity could still thrive under pandemic conditions, and to act as a taking stock of what the whole world has undergone. It’s about making the personal and local, feel general and universal - that no matter where in the world we may be, there are things we are sharing with everyone - heightened by this health crisis that spares no-one. The question would be whether it succeeds on those terms, and of course, as it always is in the anthology format, whether the individual efforts justify the sum of its parts.

The film debuted in Cannes earlier this year, and it was fairly well-received. What becomes apparent though upon viewing is the unevenness of the film’s parts, with some directors just being more successful in catching and keeping out interest, and in making that particular feel universal. If you asked me, I’d say the first two parts are the most successful - the one directed by Jafar Panahi of Iran which explores the family’s life in the early days of the quarantine and with a giant iguana as their household pet, and the second part which hails from China’s Anthony Chen and chronicles, warts and all, the life of a young couple and their child while in lockdown. The most well-known Director in the bunch, David Lowery comes with a ‘mystery’, and there are episodes from Chile, Thailand, and the USA.

...

Related Tags

YEAR OF THE EVERLASTING STORM dune
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.