ADVERTISEMENT

War and cinema in Ukraine

Published Mar 14, 2022 07:30 am

A look at Iryna Tsilyk’s 'The Earth Is Blue as an Orange'

With the Russian invasion of Ukraine, we were brought back to "Battleship Potemkin" (1925), a silent war film by director Sergei Eisenstein, whose famous Potemkin Stairs scene in Odessa has influenced many filmmakers.

The southern Ukrainian city of Odessa has been bracing for more Russian assault. We visited the recording of Ukrainian filmmaker Iryna Tsilyk who held a documentary masterclass at the Scottish Documentary Institute last year.

Iryna Tsilyk

Iryna directed "The Earth Is Blue as an Orange," winner of the Directing Award in the World Cinema Documentary at the 2020 Sundance Film Festival.

She films the Trofymchuk-Gladky family in the war-zone Ukraine as they create an enchanting world of make-believe in times of disaster.

Filmmaking is the family’s passion. Anna, a single mother of four kids, refuses to flee from the armed conflict. “She started to learn by herself from the internet, what does it mean to edit films, make scripts, so they were shooting shorts, widows all together,” proclaims the Kyiv-born filmmaker. “They were like family film productions.”

A family's passion for cinema

How did "The Earth Is Blue as an Orange" materialized? There is a project in Ukraine called Yellow Bus that arranges cinema camps for children in the war zone.

“Two of the girls I met in that cinema camp invited me and my crew to their family, their hometown, located in the red zone,” says Iryna. “We came there and we met the mother Anna and her siblings and when we saw this house full of cats and music, all these conversations about art, discussions.”

The film's poster

The Ukrainian-Lithuanian project, which runs for one hour and 14 minutes, is a film within a film, documenting civilians in the war zone. “We spent one year of filming there and we have been coming again and again,” muses the winner of the 2021 Cinema Eye Honors Awards, US. “We live together, we cook together, talk about everything, and also we were shooting the film.”

The Ukrainian-Lithuanian project, which runs for one hour and 14 minutes, is a film within a film, documenting civilians in the war zone.

Iryna started shooting short films, "Commemoration" and "Home" before shifting to documentary. Most of her themes center on houses and the feeling of a home. “I started from commercials and saw this huge sets with many people and very cool equipment,” she recounts. Later on, she appreciated doing independent productions. “But later I changed my mind totally because I prefer small crews and very simple decisions,” says Iryna.

A few years ago, there was an interest in Ukrainian documentaries. “When the war has started in Ukraine, it seems that many things have changed and also many filmmakers just grabbed the cameras and started to shoot all this reality around us,” says the Kyiv National University of Theater, Cinema, and Television graduate. “I guess Ukrainian documentary cinemas have become much stronger in recent years.”

"The Earth is Blue as an Orange"

A scene from "The Earth Is Blue as an Orange"

Iryna decided to try making a cinema almanac about women at war called, "Invisible Battalion." “It’s really important to be the observer of all this reality because we do not have many answers,” stresses the 2020 International Human Rights Documentary Film Festival winner. “But maybe it’s important to ask questions and to fix this reality, here and now. Maybe, one day we will all look back, we will realize what happened to all of us.”

Documentary Masterclass Iryna Tsilyk (right)

Born in 1982, Iryna is also an author of poetry, prose, and children’s books. According to the Scottish Film Institute, she escaped with her son as she was on a Russian blacklist. Her writer-husband Artem Chekh volunteered to fight in the ongoing war and they did not know when or if they would reunite.

This International Women’s Month, our hearts and thoughts go to Iryna Tsilyk and to all the women filmmakers of Ukraine.

Related Tags

Iryna Tsilyk The Earth Is Blue as an Orange Ukraine Arts and Culture
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.