ADVERTISEMENT

Take masterpieces from the Louvre home with Samsung's The Frame

Published Sep 16, 2021 04:30 pm

Samsung Electronics Co., Ltd. today announced a new partnership with the iconic Musée du Louvre. Through this partnership, Samsung will continue to develop the Art Store on its lifestyle TV, The Frame, through an exclusive artwork partnership with the Louvre in Paris, France. 

With new artworks from the Louvre joining the collection, The Frame now boasts a catalog with over 1,500 works of art from 42 different countries that consumers can enjoy in 4K picture quality from museums and galleries around the world, including the Prado Museum in Madrid, the Albertina Museum in Vienna, the Tate Modern in London, the Van Gogh Museum in Amsterdam, the Hermitage State Museum in Saint Petersburg and LUMAS.

“Ever since we launched our lifestyle TV portfolio in 2017, we have focused on developing the Art Store platform with prestigious partners. We want to offer much more than a television, inviting Art into the homes of The Frame owners everywhere. This catalog lists works by hundreds of artists, covering diverse periods, from ancient civilizations to modern art,” explained Wonjin Lee, President and Head of Service Biz Team at Samsung Electronics. “This year, we are proud to join forces with one of the most famous museums in the world, the Louvre, to enhance this collection and offer a taste of French heritage throughout the world,” he added.

Admire the Louvre’s treasures from your own home

By entering into a partnership with the Louvre, Samsung offers all The Frame owners a chance to explore the most visited museum in the world through 40 pieces of artwork and photographs. This selection includes must-see masterpieces, such as the Mona Lisa and The Wedding Feast at Cana, as well as photos of the majestic Louvre galleries, its architecture, and museum grounds (Louvre Pyramid, Tuileries Garden, etc.). A short description of each work gives users a glimpse into their background and history. 

Samsung and the Louvre also plan to unveil other exclusive content for The Frame users later this year.

“The Louvre is a venue of discovery, imbued with emotion, a spectacular setting for artistic masterpieces. Admiring works from its collection every day, at home, as well as views of the building, galleries, and gardens, is a wonderful way to see and understand the extraordinary beauty of this museum,” said Yann Le Touher, Head of Development, Brand Licensing and Commercial Partnerships of the Louvre.

Ultra-slim design and exceptional picture quality

The Frame features a unique and customizable design that sets it apart from the rest. Designed as a TV when on and art when off, The Frame is an innovative digital canvas that reflects an individual’s personal style. The 2021 version of the lifestyle TV offers new custom options to complement every space and style, with two frame designs: modern (available in white, teak, beige, and brown) and beveled (available in white and brick red). 

To complete the artwork appeal, The Frame can be hung flush to the wall on an ultra-slim mount and connected to a One Connect box via a single translucent cable that integrates all TV connectors including the power source. Users can also set The Frame anywhere in the room on a Studio Stand. 

In addition to its gallery-ready design, The Frame provides a vibrant 4K QLED picture quality powered by Quantum Dot Technology that enables 100% color volume, immersing viewers in a world of rich and realistic colors. 

For more information on Samsung’s lifestyle TV products, please visit www.samsung.com/ph. 

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.