Live Nation France
Live Nation France
and Midem - Shaping the future of music and entertainment through innovation
and Midem - Shaping the future of music and entertainment through innovation
Why this Challenge?

Live Nation France and MIDEM are joining forces at VivaTech 2025 to spotlight the most visionary startups reshaping the future of music and entertainment. This unique challenge bridges technology and creativity, offering international visibility, strategic investor access, and exclusive showcases at both VivaTech 2025 and MIDEM 2026.
As the global leader in live entertainment, Live Nation continues to redefine the industry, from staging spectacular shows with David Guetta at iconic venues like the Château de Chambord, to hosting DJ Snake at the Stade de France, producing runway shows for leading luxury fashion houses, and partnering on landmark events such as the Paris 2024 Opening Ceremony featuring Lady Gaga, Aya Nakamura, and Céline Dion.

The Startup Challenge
Reinventing Entertainment: Music, Live, Tech & Fan Experience

We are looking for pioneering startups innovating in music creation, fan engagement, immersive live experiences, intelligent ticketing, and sustainability. Your solution should have clear market potential and aim to disrupt the entertainment industry with scalable, responsible, and inclusive technology.

Context / Need:
The music and entertainment industries are undergoing rapid transformation, driven by AI, immersive tech, and fan-centric innovation. Yet, many legacy systems remain disconnected from today's digital-first audiences. There is a growing need for scalable, inclusive, and sustainable solutions that redefine how music is created, shared, and experienced. We aim to identify startups that bridge this gap—reshaping the future of entertainment through bold, tech-powered disruption.

Expected Solutions:
We’re seeking groundbreaking solutions that transform the way music and entertainment are created, distributed, and experienced. This includes innovations in AI-driven music tools, immersive live experiences, fan engagement platforms, smart ticketing using Web3 or blockchain, and sustainability-focused technologies. Startups should demonstrate strong potential for industry adoption, global scalability, and a clear commitment to accessibility, diversity, and environmental impact.

Scope:
This challenge is open to startups from around the world developing solutions at the intersection of music, technology, and entertainment.

Reinventing Entertainment: Music, Live, Tech & Fan Experience

We are looking for pioneering startups innovating in music creation, fan engagement, immersive live experiences, intelligent ticketing, and sustainability. Your solution should have clear market potential and aim to disrupt the entertainment industry with scalable, responsible, and inclusive technology.

Context / Need:
The music and entertainment industries are undergoing rapid transformation, driven by AI, immersive tech, and fan-centric innovation. Yet, many legacy systems remain disconnected from today's digital-first audiences. There is a growing need for scalable, inclusive, and sustainable solutions that redefine how music is created, shared, and experienced. We aim to identify startups that bridge this gap—reshaping the future of entertainment through bold, tech-powered disruption.

Expected Solutions:
We’re seeking groundbreaking solutions that transform the way music and entertainment are created, distributed, and experienced. This includes innovations in AI-driven music tools, immersive live experiences, fan engagement platforms, smart ticketing using Web3 or blockchain, and sustainability-focused technologies. Startups should demonstrate strong potential for industry adoption, global scalability, and a clear commitment to accessibility, diversity, and environmental impact.

Scope:
This challenge is open to startups from around the world developing solutions at the intersection of music, technology, and entertainment.

Reinventing Entertainment: Music, Live, Tech & Fan Experience

We are looking for pioneering startups innovating in music creation, fan engagement, immersive live experiences, intelligent ticketing, and sustainability. Your solution should have clear market potential and aim to disrupt the entertainment industry with scalable, responsible, and inclusive technology.

Context / Need:
The music and entertainment industries are undergoing rapid transformation, driven by AI, immersive tech, and fan-centric innovation. Yet, many legacy systems remain disconnected from today's digital-first audiences. There is a growing need for scalable, inclusive, and sustainable solutions that redefine how music is created, shared, and experienced. We aim to identify startups that bridge this gap—reshaping the future of entertainment through bold, tech-powered disruption.

Expected Solutions:
We’re seeking groundbreaking solutions that transform the way music and entertainment are created, distributed, and experienced. This includes innovations in AI-driven music tools, immersive live experiences, fan engagement platforms, smart ticketing using Web3 or blockchain, and sustainability-focused technologies. Startups should demonstrate strong potential for industry adoption, global scalability, and a clear commitment to accessibility, diversity, and environmental impact.

Scope:
This challenge is open to startups from around the world developing solutions at the intersection of music, technology, and entertainment.

Selection Criteria
Innovation

Technological innovation and disruption

Market viability and business model
Scalability

Scalability and adoption potential

Responsibility

Social and environmental responsibility

Relevance

Relevance to music and entertainment sectors

Rewards
Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Timeline

00:00:00:00

left to apply

left to apply

FAQ

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/