Your adventure in sustainability starts here — join the CreatiVelo Challenge 2024!  Find out more

About

What we do
The why, the when and the where
Long term impact with y4p action teams
Our mobile event studio
Global film challenges

Projects

This is just placeholder text. Don’t be alarmed, this is just here to fill up space since your finalized copy isn’t ready yet.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

for students & storytellers

for teachers & multipliers

for Partners & friends

Our mission

Become a storyteller and make a difference!

Learn the art of filmmaking and transform your smartphone into a tool for storytelling. Join our community to share your message and inspire positive change.

Find out more

Empower Your Students to Shape Their Future.

Be an advocator for change and unleash your students potential with youth4planet workshops on sustainability. Our unique approach uses students' own smartphones to create impactful films, while boosting creativity, engagement and learning valuable future skills.

Find out more

Be a spokesperson for youth and invest in the next generation with youth4planet

Join us in our mission to empower young people and create a more sustainable future. Our innovative workshops and programs not only inspire and educate the next generation, but also provide opportunities for increased visibility and impact for our partners.

Find out more

Our mission

Y4P supports the transformation of society in accordance with the SDG's. We are convinced of the power that unfolds in collaborative action for a barrier-free and fulfilling coexistence. We organize processes of self-empowerment that promote living in harmony with the diversity of the planet, based on mutual respect and responsibility. Our vision for the future is driven by the confidence that the seeds for responsible and sustainable action are planted in each of us.

20
Feb
2024

CreatiVelo meets Young Scientists

The world needs innovation and creative minds capable of tackling the climate crisis. Therefore, we attended last year’s Luxembourg International Science Expo to meet young

  • THE GOLDEN JUICE, Ecole Privée Fieldgen/Fairtrade/Youth4planet Luxembourg

    Dieser Film enstand von Schülerinnen und Schülern im Rahmen der option développement durable am Ecole Privée Fieldgen mit Hilfe von Fairtrade Luxembourg und Youth4planet Luxembourg. youth4planet Luxembourg 2024

    1
  • Ein Leben ohne Fleisch? Niemals?! (Humboldt Gymnasium Trier)

    In einem grenzüberschreitendem Film-Projekt in der Grossregion setzten sich die Schülerinnen und Schüler der 6. Klasse des Humboldt Gymnasium Trier im Ethikunterricht mit den Themen Rassismus, Krieg und Ernährung auseinander.…

    19
  • About Youth4planet-Teil 1/3: Die Rolle der Workshopleiter*innen

    Youth4Planet ist als Bildungsinstitution immer wieder an den Luxemburger Schulen unterwegs und begleitet angehende Filmemacher*innen zum Thema Nachhaltigkeit, orientiert an den 17 Zielen für nachhaltige Entwicklung der UN. Doch was…

    5
  • SIAS-Climate and Biodiversity Day in Munsbach 2024

    3
  • Semion & CAT @We Don’t Have Time broadcast

    On June 11th our team traveled to Bonn, Germany, to the SB60, also known as the “in-between COP. There Semion and CAT had the privilege of joining the broadcast of…

    3
  • Storytelling Project Itzig, Luxembourg

    This project was great fun. The children from Itzig primary school learnt the skills to become filmmakers themselves and produced three different films dealing with the pollution of their schoolyard.

    15
  • Hi there, I am CAT!

    This is our new team member CAT. CAT will be appearing in films again and again in the future, asking cheeky questions and helping us to make the planet a…

    4
  • **Gefühle** Youth4planet Luxembourg / Maison Relais Rosport

    Enjoy the latest Y4P musical poem (RAP), written and performed by 9-11 year olds (including faces of some older counterparts, because they were not allowed to show their own) Info:…

    20
  • CreatiVelo meets the president of Eurosolar Luxembourg – Paul Zens

    We went to last year’s Eurosolar Luxembourg prize and conducted interviews with the President of Eurosolar, the former Luxemburgish Minister of Energy and Spatial Planning and with the renowned professor…

    4
  • CreatiVelo meets professor of renewable energy systems – Volker Quaschning

    We went to last year’s Eurosolar Luxembourg prize and conducted interviews with the President of Eurosolar, the former Luxemburgish Minister of Energy and Spatial Planning and with the renowned professor…

    3
  • CreatiVelo

    Take you creativity on the road. Get to know our rolling creative studio!

    Earthbeat

    Find out about our Subbrand for Events and international film challenges

    Who we are

    Learn about who we are and why we do what we do :)

    Manifesto

    Youth of the planet unite! Read and sign our manifesto for a better future!
    <script type='text/javascript'>
    document.addEventListener("DOMContentLoaded", () => {
      
      /* provide the identifier */
      const sliderIdentifier = 'iborgo';
    
      /* listen for slider being initialised */
      document.querySelector('.x-slider[data-x-id=' + sliderIdentifier + ']').addEventListener( 'x_slider:init', () => {
    
        /* get the Splide instance to control the slider */
        const sliderInstance = xSlider.Instances[sliderIdentifier];
    
        console.log(sliderInstance);
    
        const playSlider = () => {
          //sliderInstance.Components.Autoplay.pause();
          sliderInstance.Components.Autoplay.play();
        };
    
        const pauseSlider = () => {
          sliderInstance.Components.Autoplay.pause();
        };
    
        /* start playing the slider after 4 seconds */
        var playSliderTimeout = setTimeout(playSlider, 6000);
    
        /* listen for arrow clicks */
        const prevArrow = document.querySelector('#home-slider .splide__arrow--prev');
        const nextArrow = document.querySelector('#home-slider .splide__arrow--next');
        prevArrow.addEventListener('click', pauseSlider);
        nextArrow.addEventListener('click', pauseSlider);
    
        /* stop playing the slider when the window is scrolled more than 100px */
        window.addEventListener('scroll', () => {
          if (window.scrollY > 100) {
            pauseSlider();
          } else {
            playSlider();
          }
        });
    
        // Get a reference to the video element
        var myVideo = document.querySelector('#home-video video');
        
        var videoIteration = 1;
    
        // Pause the autoplay when the video is playing
        myVideo.addEventListener('play', function() {
          	
            console.log("PLAY");
          	clearTimeout(playSliderTimeout);
          	if( videoIteration == 1 ){
            pauseSlider();
            }
          	
        });
        
        
        // Mute the video if the current slide is not the first
        sliderInstance.on('move', (newIndex) => {
          if (newIndex !== 0) {
            myVideo.muted = true;
            console.log("mute video");
          } else {
            myVideo.muted = false;
            console.log("unmute video");
          }
        });
    
        // Resume the autoplay when the video ends
        myVideo.addEventListener('ended', function() {
          
          if (sliderInstance.index === 0 && videoIteration == 1) { // check if the current slide is the first one
            console.log("ENDED");
            sliderInstance.go('>'); // go to the next slide
             // start autoplaying the slider
            
            playSlider();
          }
          
          this.play(); // start playing the video again
          videoIteration++;
        });
    
      }); // x_slider:init
    
    });// DOM content loaded
    
    </script>
    youth4planet
    Free stock photo of adolescent, adult, carefree
    Newsletter