
<!DOCTYPE html>
<html lang="fr" data-languagecode="fr" data-html-title-suffix=" | Profoto (FR)" class="no-js">
<!-- Page generated by dw1ldwk0004VS at 2025-01-27 10:38:49 -->
<head itemscope itemtype="http://schema.org/WebSite">
    <link rel="preconnect" href="https://cdn.profoto.com">
    <link rel="preconnect" href="https://www.google-analytics.com" crossorigin>
    <link rel="preconnect" href="https://www.googletagmanager.com" crossorigin>

<!-- OneTrust Cookies Consent Notice start for profoto.com -->
    <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-document-language="true" type="text/javascript" charset="UTF-8" data-domain-script="28d82e75-0fe2-41e7-bb9e-f99d0ab60689"></script>
    <script type="text/javascript">
        function OptanonWrapper() { }
    </script>
    <!-- OneTrust Cookies Consent Notice end for profoto.com -->
    <!-- OneTrust Cookies Settings button start -->
     <!--<button id="ot-sdk-btn" class="ot-sdk-show-settings">Cookie Settings</button>-->
    <!-- OneTrust Cookies Settings button end -->
    <!-- OneTrust Cookies List start -->
      <!--<div id="ot-sdk-cookie-policy"></div> -->
    <!-- OneTrust Cookies List end -->


<link rel="preload" href="https://cdn.profoto.com/cdn/static/fonts/ProfotoSans-Bold-636cf00883.woff" as="font" type="font/woff" crossorigin>
<link rel="preload" href="https://cdn.profoto.com/cdn/static/fonts/ProfotoSans-Bold-e6fce13070.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cdn.profoto.com/cdn/static/fonts/ProfotoSans-Regular-d4774f7fd5.woff" as="font" type="font/woff" crossorigin>
<link rel="preload" href="https://cdn.profoto.com/cdn/static/fonts/ProfotoSans-Regular-1e2182f247.woff2" as="font" type="font/woff2" crossorigin>

    <link rel="stylesheet" href="https://cdn.profoto.com/cdn/static/css/blog-c94fe03888.css">

<script type="text/javascript">
    window.sasToken = 'SharedAccessSignature sr=https%3a%2f%2fprofoto-event-hub-namespace.servicebus.windows.net%2fprofoto-event-hub%2fpublishers%2fprofoto-web-client&sig=o2s%2bryLK29REL0wKeG3YA%2f4PqpAlinvaS3H3H%2b0Fs6E%3d&se=1737981089&skn=ProfotoWebSendPolicyKey';
    window.azureUrl = 'https://profoto-event-hub-namespace.servicebus.windows.net/profoto-event-hub/publishers/profoto-web-client/messages';

</script>


<noscript>
    <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5XJ9CJ7" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>





<script>
    window.getCartLineItemsUrl = '/fr/getcartlineitems';
    window.getPageUserDataUrl = '/fr/pageuserdata?pageId=2637';
    window.genericAddToCartUrl = '/fr/addtocart';
    window.wishlistPageUrl = '/fr/wishlist';
    window.dataLayer = window.dataLayer || []; // make sure that the dataLayer exists

    var createXMLHttpRequest = function (method, url, onReadyStateChange) {
        var xhr = new XMLHttpRequest();

        xhr.onreadystatechange = function () { onReadyStateChange(xhr); }
        xhr.open(method, url);

        xhr.setRequestHeader('Content-Type', 'application/json');
        xhr.setRequestHeader('Accept-Language', document.querySelector('html').dataset.languagecode);

        xhr.send();
    }

    createXMLHttpRequest('GET', window.getPageUserDataUrl, function (xhrUserData) {
        if (xhrUserData.readyState === 4 && xhrUserData.status === 200) {
            var result = JSON.parse(xhrUserData.response);
            window.authenticationResponse = result.pageUserData;
            window.cartLineItems = result.miniCart;

            window.dataLayer.push(
                {
                    'event': 'userLogin',
                    'user': {
                        'id': window.authenticationResponse.id,
                        'country': window.authenticationResponse.country,
                        'email': window.authenticationResponse.email
                    }
                }
            );

            // Due to possible race condition we must add flag to make sure the onAuthenticatedSuccess
            // function is run. It will be run in the navigationHeader.js if it has not been loaded here.
            if (window.profoto && window.profoto.navigation) {
                window.profoto.navigation.onAuthenticatedSuccess(window.authenticationResponse);
            } else {
                window.sendStatus = true;
            }

            window.dataLayer.push(
                {
                    'event': 'cartData',
                    'cart': { undefined }
                });
            window.dataLayer.push(
                {
                    'event': 'cartData',
                    'cart': {
                        'cartProductQuantity': window.cartLineItems.cartProductQuantity,
                        'cartValue': window.cartLineItems.cartValue,
                        'usdCartValue': window.cartLineItems.usdCartValue,
                        'currencyCode': window.cartLineItems.currencycode,
                        'products': window.cartLineItems.lineitems
                    }
                });
        }

        if (xhrUserData.readyState === 4 && xhrUserData.status !== 200) {
            window.authenticationResponse = {
                changeMarketViewModel: "",
                changeMarketVisible: false,
                country: "",
                email: null,
                fullName: "",
                id: null,
                isAuthenticated: false,
                itemsincart: 0,
                name: ""
            }
            window.dataLayer.push(
                {
                    'event': 'userLogin',
                    'user': {
                        'id': window.authenticationResponse.id,
                        'country': window.authenticationResponse.country,
                        'email': window.authenticationResponse.email
                    }
                }
            );
        }
    });

    window.cartLineItemsRequestSent = true;

    const accountData = window.sessionStorage.getItem("accountData");
    if (!accountData) {
        createXMLHttpRequest('GET',
            '/api/authentication/accountdata',
            function(xhrAccount) {
                if (xhrAccount.readyState === 4 && xhrAccount.status === 200) {
                    const data = JSON.parse(xhrAccount.response);

                    if (!data.hasAccount) {
                        return;
                    }

                    for (let i in data.accountData) {
                        if (data.accountData[i] == null || data.accountData[i] === "") {
                            delete data.accountData[i];
                        }
                    }

                    window.sessionStorage.setItem("accountData", JSON.stringify(data.accountData));
                    window.dataLayer.push(
                        {
                            'event': 'accountData',
                            'account': data.accountData
                        }
                    );
                }
            });
    } else {
        window.dataLayer.push(
            {
                'event': 'accountData',
                'account': JSON.parse(accountData)
            }
        );
    }
</script>

<script>
    function getQueryParams() {
        let paramUrl = window.location.search;
        if (paramUrl === "") return false;

        paramUrl = paramUrl.substring(1);
        const paramSets = paramUrl.split('&');

        const queryParams = {};
        for (let i = 0; i < paramSets.length; i++) {
            if (paramSets[i].includes("=")) {
                const set = paramSets[i].split("=");

                queryParams[set[0]] = set[1];
            }
        }
        return queryParams;
    }

    
    function readCookie(name) {
        const nameEq = encodeURIComponent(name) + "=";
        const ca = document.cookie.split(';');
        for (let i = 0; i < ca.length; i++) {
            let c = ca[i];
            while (c.charAt(0) === ' ')
                c = c.substring(1, c.length);
            if (c.indexOf(nameEq) === 0)
                return decodeURIComponent(c.substring(nameEq.length, c.length));
        }
        return null;
    }
    
    function createCookie(name, value, days) {
        let expires;

        if (days) {
            const date = new Date();
            date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
            expires = "; expires=" + date.toGMTString();
        } else {
            expires = "";
        }
        document.cookie = encodeURIComponent(name) + "=" + encodeURIComponent(value) + expires + "; path=/";
    }
    
    function trySetAffiliateCookie() {
        const params = window.profoto.queryParams;
        if (!params || !params.affiliate || params.affiliate === "") return;

        createCookie("affiliateId", params.affiliate, 30);
    }

    window.profoto = window.profoto || {};
    window.profoto.queryParams = getQueryParams();
    trySetAffiliateCookie();
    window.profoto.affiliateId = readCookie("affiliateId") || "";
    
    window.dataLayer = window.dataLayer || [];
    window.dataLayer.push({
        'country': 'FR',
        'language': 'fr',
        'currencyCode': 'EUR',
        'pageType': 'ArticleListPage',
        'pageTags': '',
        'pageCategories': '',
        'affiliateId': window.profoto.affiliateId,
        'interest': '',
        'categoryFilters': ''
    });
</script>

<meta charset="utf-8">
<meta name="theme-color" content="#000000"/>
<title itemprop="name">Profoto Stories | Profoto (FR)</title>


<meta name="google-site-verification" content="xGIdOEDuWhHPSZrvCg2GOsdgVrl9z0CxxmMNhgHFx4g" />
<meta name="yandex-verification" content="2218fa58327fb6d9" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<meta name="culture" content="profoto-culture" data-languagecode="fr" />
<link rel="mask-icon" href="https://cdn.profoto.com/cdn/static/img/website-icon-674097aed8.svg" color="black">
<meta name="currentcontentlink" content="profoto-contentlink" data-contentlink="2637" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

    

<script>window.dataLayer = window.dataLayer || [];</script>
<!-- Google Tag Manager -->
<script>
    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer', 'GTM-5XJ9CJ7');
</script>

<script>
    var html = document.querySelector('html');
    html.classList.remove('no-js');
    html.classList.add('js');
    window.profoto = window.profoto || {};
    window.profoto.noImage = "https://cdn.profoto.com/cdn/static/img/no-image-8105c1d02f.svg";
    
    class EventBus {
      listeners = {};
    
      debug = true;
    
      subscribe(eventName, fn) {
        this.listeners[eventName] = this.listeners[eventName] || [];
        this.listeners[eventName].push(fn);
        return () => {
          if (this.listeners[eventName]) {
            this.listeners[eventName] = this.listeners[eventName].filter(
              listener => listener !== fn
            );
          }
        };
      }
    
      once(eventName, fn) {
        const unsubscribe = this.subscribe(eventName, payload => {
          fn(payload);
          unsubscribe();
        });
      }
    
      publish(eventName, payload) {
        if (this.listeners[eventName]) {
          this.listeners[eventName].forEach(fn => {
            if (this.debug) {
              console.debug(eventName, payload); // eslint-disable-line no-console
            }
            fn(payload);
          });
        }
      }
    }
    
    window.profoto.eventBus = window.profoto.eventBus || new EventBus();
    
</script>

    <script type="text/javascript">
        var appInsights = window.appInsights || function (config) {
                function i(config) { t[config] = function () { var i = arguments; t.queue.push(function () { t[config].apply(t, i) }) } } var t = { config: config }, u = document, e = window, o = "script", s = "AuthenticatedUserContext", h = "start", c = "stop", l = "Track", a = l + "Event", v = l + "Page", y = u.createElement(o), r, f; y.src = config.url || "https://az416426.vo.msecnd.net/scripts/a/ai.0.js"; u.getElementsByTagName(o)[0].parentNode.appendChild(y); try { t.cookie = u.cookie } catch (p) { } for (t.queue = [], t.version = "1.0", r = ["Event", "Exception", "Metric", "PageView", "Trace", "Dependency"]; r.length;) i("track" + r.pop()); return i("set" + s), i("clear" + s), i(h + a), i(c + a), i(h + v), i(c + v), i("flush"), config.disableExceptionTracking || (r = "onerror", i("_" + r), f = e[r], e[r] = function (config, i, u, e, o) { var s = f && f(config, i, u, e, o); return s !== !0 && t["_" + r](config, i, u, e, o), s }), t
        }({
            instrumentationKey: "fdf4d5a8-7757-4ac4-9153-c6f717fd71e6"
        });

        window.appInsights = appInsights;
        appInsights.trackPageView();
    </script>


<meta property="og:title" content="Profoto Stories | Profoto (FR)">
<meta property="og:description">
<meta property="og:type" content="article">
<meta property="og:url" content="https://profoto.com/fr/profoto-stories">
<meta property="og:site_name" content="Profoto">

    <link rel="alternate" hreflang="bg" href="https://profoto.com/bg/profoto-stories" />
    <link rel="alternate" hreflang="cs" href="https://profoto.com/cz/profoto-stories" />
    <link rel="alternate" hreflang="da" href="https://profoto.com/dk/profoto-stories" />
    <link rel="alternate" hreflang="de" href="https://profoto.com/de/profoto-stories" />
    <link rel="alternate" hreflang="de-AT" href="https://profoto.com/at/profoto-stories" />
    <link rel="alternate" hreflang="en-AU" href="https://profoto.com/au/profoto-stories" />
    <link rel="alternate" hreflang="en-CA" href="https://profoto.com/ca/profoto-stories" />
    <link rel="alternate" hreflang="en-GB" href="https://profoto.com/uk/profoto-stories" />
    <link rel="alternate" hreflang="en-IE" href="https://profoto.com/ie/profoto-stories" />
    <link rel="alternate" hreflang="en-IN" href="https://profoto.com/in/profoto-stories" />
    <link rel="alternate" hreflang="en-US" href="https://profoto.com/us/profoto-stories" />
    <link rel="alternate" hreflang="es" href="https://profoto.com/es/profoto-stories" />
    <link rel="alternate" hreflang="es-MX" href="https://profoto.com/mx/profoto-stories" />
    <link rel="alternate" hreflang="et-EE" href="https://profoto.com/ee/profoto-stories" />
    <link rel="alternate" hreflang="fi" href="https://profoto.com/fi/profoto-stories" />
    <link rel="alternate" hreflang="fr" href="https://profoto.com/fr/profoto-stories" />
    <link rel="alternate" hreflang="hr-HR" href="https://profoto.com/hr/profoto-stories" />
    <link rel="alternate" hreflang="it" href="https://profoto.com/it/profoto-stories" />
    <link rel="alternate" hreflang="ja" href="https://profoto.com/jp/profoto-stories" />
    <link rel="alternate" hreflang="ko" href="https://profoto.com/kr/profoto-stories" />
    <link rel="alternate" hreflang="lv-LV" href="https://profoto.com/lv/profoto-stories" />
    <link rel="alternate" hreflang="nl" href="https://profoto.com/nl/profoto-stories" />
    <link rel="alternate" hreflang="nl-BE" href="https://profoto.com/be/profoto-stories" />
    <link rel="alternate" hreflang="pl" href="https://profoto.com/pl/profoto-stories" />
    <link rel="alternate" hreflang="pt-PT" href="https://profoto.com/pt/profoto-stories" />
    <link rel="alternate" hreflang="ru" href="https://profoto.com/ru/profoto-stories" />
    <link rel="alternate" hreflang="sv" href="https://profoto.com/se/profoto-stories" />
    <link rel="alternate" hreflang="x-default" href="https://profoto.com/int/profoto-stories" />
        <link rel="alternate" hreflang="en" href="https://profoto.com/int/profoto-stories" />
    <link rel="alternate" hreflang="zh" href="https://profoto.com/cn/profoto-stories" />

    



<script type="application/ld+json">
{
    "@context": "http://schema.org/",
    "@type": "ItemList",
    "itemListElement": [
         {
             "@type": "ListItem",
             "position": 1,
             "url": "https://profoto.com/fr/profoto-stories/martin-botvidsson-profoto-pro-d3"
         },
         {
             "@type": "ListItem",
             "position": 2,
             "url": "https://profoto.com/fr/profoto-stories/takashi-kamei-x-soft-zoom-reflector"
         },
         {
             "@type": "ListItem",
             "position": 3,
             "url": "https://profoto.com/fr/profoto-stories/share-the-light-spotlight-paula-watts-chases-light"
         },
         {
             "@type": "ListItem",
             "position": 4,
             "url": "https://profoto.com/fr/profoto-stories/share-the-light-spotlight-drew-forsyth-changing-perspectives"
         },
         {
             "@type": "ListItem",
             "position": 5,
             "url": "https://profoto.com/fr/profoto-stories/ab-dm-soft-zoom-reflector"
         },
         {
             "@type": "ListItem",
             "position": 6,
             "url": "https://profoto.com/fr/profoto-stories/michele-laurita"
         },
         {
             "@type": "ListItem",
             "position": 7,
             "url": "https://profoto.com/fr/profoto-stories/share-the-light-spotlight-evely-duis"
         },
         {
             "@type": "ListItem",
             "position": 8,
             "url": "https://profoto.com/fr/profoto-stories/michael-anthony-clic-a-series-wedding"
         },
         {
             "@type": "ListItem",
             "position": 9,
             "url": "https://profoto.com/fr/profoto-stories/ben-chrisman-a2-wedding"
         },
         {
             "@type": "ListItem",
             "position": 10,
             "url": "https://profoto.com/fr/profoto-stories/john-geven"
         }
    ]
}
</script>

    
        <link rel="canonical" href="https://profoto.com/fr/profoto-stories" />


    <link rel="preconnect" href="https://www.google.com">
<link rel="preconnect" href="https://www.gstatic.com" crossorigin>
<script id="g-site-api" data-page-layout="_Block" data-val="6Lf6QLoiAAAAAE-6d10L9E3qgON0Y_JsKCs1TH1K" src="https://www.google.com/recaptcha/api.js?render=6Lf6QLoiAAAAAE-6d10L9E3qgON0Y_JsKCs1TH1K"></script>
<style> .grecaptcha-badge { visibility: hidden;} </style>


</head>

<body class="menu-container">
<div class="loading-indicator hidden" id="loadingIndicator">
    <div class="loading-indicator__dot"></div>
    <div class="loading-indicator__dot"></div>
    <div class="loading-indicator__dot"></div>
</div>


    <a href="#content" class="skip-link sr-only sr-only-focusable">Passer au contenu principal</a>

    




<script>
    window.profoto = window.profoto || {};
    window.profoto.react = window.profoto.react || {};
    window.profoto.react.searchResultAppUrl = "search-results";
</script>


<script type="text/javascript" src="https://cdn.profoto.com/cdn/static/react//header-app-c7d81af6682ce06b1114.js"></script>
<link rel="stylesheet" href="https://cdn.profoto.com/cdn/static/react//header-app-c7d81af6682ce06b1114.css">


<script id="react-header-data" type="application/json">{"linkToNewsletter":"/fr#newsletter","linkToMyProfoto":"/fr/my-profoto","linkToWishlist":"/fr/wishlist","linkToShoppingCart":"/fr/shoppingcart","loginReturnUrl":"/fr/login?ReturnUrl=/fr/profoto-stories","currentUrlSegment":"fr","siteSearchPageUrl":"search-results","menuItems":[{"menuItemName":"Produits","productMenu":{"title":"Tous les produits","popularProducts":{"title":"Produits populaires","inverseColors":true,"links":[{"imageUrl":"https://cdn.profoto.com/cdn/0527fd3/globalassets/startpage/products-menu/profoto-menu-product_a2.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":null,"link":"/fr/a2","title":"A2","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/052e5e1/globalassets/startpage/products-menu/profoto-menu-product_07_a12x.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":null,"link":"/fr/a10","title":"A10","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/052e370/globalassets/startpage/products-menu/b10xer_lisa-2x-b10x.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":null,"link":"/fr/b10x","title":"B10X","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/05253ef/globalassets/startpage/products-menu/product_012x.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":null,"link":"/fr/b1x","title":"B1X","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/05253ef/globalassets/startpage/products-menu/product_042x.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":null,"link":"/fr/d2","title":"D2","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/051b685/globalassets/inspirational/product-pages/pro-11/product-images/901011_c_profoto-pro-11-front_productimage.png","newsAvailabilityText":"","inPromotion":false,"subCategories":null,"link":"/fr/pro-11","title":"Pro-11","hideArrow":false}]},"categories":{"title":"Explorez par catégorie","inverseColors":false,"links":[{"imageUrl":"https://cdn.profoto.com/cdn/052544e/globalassets/startpage/products-menu/menu_lights2x-2.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":[{"link":"/fr/products/lights","title":"Tous","hideArrow":false},{"link":"/fr/products/lights/on-camera-flashes","title":"On-Camera Flashes","hideArrow":false},{"link":"/fr/products/lights/monolights","title":"Monoblocs","hideArrow":false},{"link":"/fr/products/lights/studio-packs","title":"Générateurs studio","hideArrow":false},{"link":"/fr/products/lights/led-lights","title":"LED Lights","hideArrow":false}],"link":"/fr/products/lights","title":"Lumières","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/052544e/globalassets/startpage/products-menu/menu_lightshapingtools2x.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":[{"link":"/fr/products/light-shaping-tools","title":"Tous","hideArrow":false},{"link":"/fr/products/light-shaping-tools/softboxes","title":"Boîtes à lumière","hideArrow":false},{"link":"/fr/products/light-shaping-tools/umbrellas","title":"Parapluies","hideArrow":false},{"link":"/fr/products/light-shaping-tools/beauty-dishes","title":"Bols beauté","hideArrow":false},{"link":"/fr/products/light-shaping-tools/fresnels","title":"Fresnels","hideArrow":false},{"link":"/fr/products/light-shaping-tools/hard-reflectors","title":"Bols réflecteurs","hideArrow":false},{"link":"/fr/products/light-shaping-tools/grids","title":"Nids d’abeilles","hideArrow":false},{"link":"/fr/products/light-shaping-tools/gels","title":"Gélatines","hideArrow":false},{"link":"/fr/products/light-shaping-tools/barndoors","title":"Coupe-flux","hideArrow":false},{"link":"/fr/products/light-shaping-tools/snoots","title":"Snoot","hideArrow":false},{"link":"/fr/products/light-shaping-tools/soft-reflectors","title":"Soft Reflectors","hideArrow":false},{"link":"/fr/products/light-shaping-tools/collapsible-reflectors","title":"Réflecteurs pliables","hideArrow":false},{"link":"/fr/products/light-shaping-tools/adapters","title":"Adaptateurs","hideArrow":false},{"link":"/fr/products/light-shaping-tools/special-effect-tools","title":"Light Shaping Tools spécifiques","hideArrow":false},{"link":"/fr/products/light-shaping-tools/accessories-for-light-shaping-tools","title":"Accessoires pour Light Shaping Tools","hideArrow":false}],"link":"/fr/products/light-shaping-tools","title":"Outils de façonnage de la lumière","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/052544e/globalassets/startpage/products-menu/menu_air2x.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":[{"link":"/fr/products/air-remotes","title":"Tous","hideArrow":false},{"link":"/fr/products/air-remotes/remotes","title":"Air Remotes","hideArrow":false}],"link":"/fr/products/air-remotes","title":"Télécommandes Air","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/0525447/globalassets/startpage/products-menu/menu_accessories2x.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":[{"link":"/fr/products/accessories","title":"Tous","hideArrow":false},{"link":"/fr/products/accessories/bags-and-cases","title":"Sacs et étuis","hideArrow":false},{"link":"/fr/products/accessories/batteries-and-chargers","title":"Batteries et chargeurs","hideArrow":false},{"link":"/fr/products/accessories/cables","title":"Câbles","hideArrow":false},{"link":"/fr/products/accessories/consumables","title":"Consommables","hideArrow":false},{"link":"/fr/products/accessories/stands","title":"Pieds","hideArrow":false},{"link":"/fr/products/accessories/other","title":"Autre","hideArrow":false},{"link":"/fr/products/accessories/merch","title":"Merch","hideArrow":false}],"link":"/fr/products/accessories","title":"Accessoires","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/053282b/globalassets/inspirational/product-pages/vertical/product-in-use/vertical-in-use-new.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":[{"link":"/fr/products/e-com","title":"Tous","hideArrow":false},{"link":"/fr/products/e-com/automated","title":"Automated studio solutions","hideArrow":false},{"link":"/fr/products/e-com/creative-automation-solutions","title":"Creative automation solutions","hideArrow":false},{"link":"/fr/products/e-com/customized","title":"Modular studio solutions","hideArrow":false},{"link":"/fr/products/e-com/mannequins","title":"Mannequins","hideArrow":false}],"link":"/fr/products/e-com/automated","title":"E-commerce studio solutions","hideArrow":false},{"imageUrl":"https://cdn.profoto.com/cdn/05268b2/globalassets/inspirational/category-pages/air-remotes/product-in-use/profoto-air-remotes-in-action-evan-pantiel_06.jpg","newsAvailabilityText":"","inPromotion":false,"subCategories":[{"link":"/fr/demo-units","title":"Demo products","hideArrow":true}],"link":"/fr/demo-units","title":"Produits demo","hideArrow":false},{"imageUrl":"","newsAvailabilityText":"","inPromotion":false,"subCategories":[{"link":"/fr/profoto-control-desktop-app","title":"Profoto Control Desktop","hideArrow":true},{"link":"/fr/profoto-camera","title":"Profoto Camera","hideArrow":true},{"link":"/fr/profoto-control","title":"Profoto Control","hideArrow":true},{"link":"https://prostudioforworkflow.profoto.com","title":"ProStudio Workflow","hideArrow":true},{"link":"https://prostudioforworkflow.profoto.com/","title":"ProStudio suite","hideArrow":true}],"link":"/fr/profoto-control-desktop-app","title":"Software","hideArrow":false}]},"footerLinkDescription":"Vous êtes un nouvel utilisateur Profoto? ","allProductsUrl":"/fr/products","footerLink":{"target":null,"altText":null,"link":"/fr/new-to-profoto","title":"En savoir plus sur nos produits","hideArrow":false}},"submenu":[],"menuItemLink":""},{"menuItemName":"Apprendre","productMenu":null,"submenu":[{"link":"/fr/sharethelight","title":"Share the Light","hideArrow":false},{"link":"/fr/academy","title":"Academy","hideArrow":false},{"link":"/fr/tips","title":"Tips & Tricks","hideArrow":false},{"link":"https://profoto.com/products/academy/personal-lighting-coaching","title":"Personal lighting coach","hideArrow":false},{"link":"/fr/live-shopping","title":"Geared Up","hideArrow":false}],"menuItemLink":""},{"menuItemName":"Inspiration","productMenu":null,"submenu":[{"link":"/fr/profoto-stories","title":"Profoto Stories","hideArrow":false},{"link":"/fr/sharethelight","title":"Share the Light","hideArrow":false},{"link":"/fr/lighters-guild","title":"Lighters' Guild","hideArrow":false}],"menuItemLink":""},{"menuItemName":"Profoto Studio Solutions","productMenu":null,"submenu":[{"link":"/fr/studio-solutions","title":"Discover our Profoto Studio Solutions","hideArrow":false},{"link":"/fr/on-model-photo-and-video","title":"On-model photo and video","hideArrow":false},{"link":"/fr/on-mannequin-photography","title":"On-mannequin photography","hideArrow":false},{"link":"/fr/flat-lay-photography","title":"Flat lay photography","hideArrow":false},{"link":"/fr/footwear-and-accessories","title":"Footwear photo and video","hideArrow":false},{"link":"/fr/prostudio-workflow","title":"ProStudio Workflow","hideArrow":false},{"link":"/fr/customer-stories","title":"Customer stories","hideArrow":false}],"menuItemLink":""},{"menuItemName":"Cinema","productMenu":null,"submenu":[{"link":"/fr/l1600d","title":"L1600D","hideArrow":false}],"menuItemLink":""}],"contactLink":{"link":"/fr/contact","title":"Contactez-nous","hideArrow":false},"supportLink":{"link":"/fr/support","title":"Support","hideArrow":false},"dealerLink":{"link":"/fr/find-dealer-or-rental","title":"Trouver un revendeur ou un magasin de location","hideArrow":false},"financeLink":{"link":"","title":"","hideArrow":false},"myProfotoMenuItems":[{"link":"/fr/my-profoto/account-overview","title":"Vue d’ensemble du compte","hideArrow":false},{"link":"/fr/my-profoto/download-firmware","title":"Télécharger le firmware","hideArrow":false},{"link":"/fr/my-profoto/my-products","title":"Mes produits","hideArrow":false}]}</script>
<header class="header">
    
    <div id="header-app"></div>
    
    <script type="text/javascript">
        var headerData = JSON.parse(document.getElementById('react-header-data').textContent);

        HeaderApp.init({
            data: headerData
        })
    </script>

    
    <div class="js-added-notice-wrapper"></div>
    


    <div class="js-culture-navigation culture-navigation colors--inverse hidden">
        <div class="js-content-navigation container-fluid"></div>
    </div>

    <div class="js-header-infomessage header-information colors--inverse hidden">
        <div class="js-header-infomessage-content container-fluid"></div>
    </div>
</header>



    <main id="content" class="blog-page" tabindex="-1">
        





<div class="js-breadcrumb-container">

<div class="breadcrumbs theme-light is-short-mobile js-breadcrumbs">
    <div class="breadcrumb">
        <nav class="container-fluid">


<div class="breadcrumb-container " itemscope itemtype="http://schema.org/BreadcrumbList">
            <div class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a itemprop="item" href="/fr"><span itemprop="name">Page d’accueil</span></a><meta itemprop="position" content="1"/>
            </div>
            <span class="breadcrumb-item">Profoto stories</span>
</div>


                    </nav>

    </div>
</div>
</div>
<div class="colors--inverse js-stories-block">


    <div class="container-fluid sub-navigation">
        <div class="js-container-width ">

            <ul class="sub-navigation__menu js-navigation-visible">
    <li class="sub-navigation__item js-navigation-item ">
        <a href="/fr/profoto-stories" class="sub-navigation__link js-navigation-link is-active"
           data-category="" data-id="0" data-slug="">
            <span class="sub-navigation__text js-navigation-text">Profoto Stories</span>
        </a>
    </li>
    <li class="sub-navigation__item js-navigation-item ">
        <a href="/fr/tips" class="sub-navigation__link js-navigation-link "
           data-category="" data-id="0" data-slug="">
            <span class="sub-navigation__text js-navigation-text">Profoto Tips &amp; Tricks</span>
        </a>
    </li>
    <li class="sub-navigation__item js-navigation-item ">
        <a href="/fr/events" class="sub-navigation__link js-navigation-link "
           data-category="" data-id="0" data-slug="">
            <span class="sub-navigation__text js-navigation-text">Events</span>
        </a>
    </li>
    <li class="sub-navigation__item js-navigation-item ">
        <a href="/fr/customer-stories" class="sub-navigation__link js-navigation-link "
           data-category="" data-id="0" data-slug="">
            <span class="sub-navigation__text js-navigation-text">Customer Stories</span>
        </a>
    </li>
    <li class="sub-navigation__item js-navigation-item ">
        <a href="/fr/ecommerce-tutorials" class="sub-navigation__link js-navigation-link "
           data-category="" data-id="0" data-slug="">
            <span class="sub-navigation__text js-navigation-text">E-commerce Tips &amp; Tricks</span>
        </a>
    </li>
            </ul>

        </div>
    </div>
    </div>

<div id="article-list-block" />

    </main>


<script type="text/javascript">
    (function(e,t,o,n,p,r,i){e.visitorGlobalObjectAlias=n;e[e.visitorGlobalObjectAlias]=e[e.visitorGlobalObjectAlias]||function(){(e[e.visitorGlobalObjectAlias].q=e[e.visitorGlobalObjectAlias].q||[]).push(arguments)};e[e.visitorGlobalObjectAlias].l=(new Date).getTime();r=t.createElement("script");r.src=o;r.async=true;i=t.getElementsByTagName("script")[0];i.parentNode.insertBefore(r,i)})(window,document,"https://diffuser-cdn.app-us1.com/diffuser/diffuser.js","vgo");
    vgo('setAccount', '253732119');
    vgo('setTrackByDefault', true);
    vgo('process');
</script>

<footer class="footer-container">
    <div class="footer-top">
        <div class="top-links">
            <ul>
                    <li>
                        <a href="/fr/support">
                            Support
                        </a>
                    </li>
                    <li>
                        <a href="/fr/profoto-camera">
                            Camera
                        </a>
                    </li>
                    <li>
                        <a href="/fr/about-us">
                            &#192; propos de Profoto
                        </a>
                    </li>
                    <li>
                        <a href="/fr/contact">
                            Contact
                        </a>
                    </li>
                    <li>
                        <a href="https://career.profoto.com/">
                            Emploi
                        </a>
                    </li>
                    <li>
                        <a href="/fr/news-room">
                            Presse
                        </a>
                    </li>
            </ul>
        </div>

        <div class="social-links">
                <a class="footer-social facebook" href="https://www.facebook.com/profoto/">Facebook</a>
                <a class="footer-social instagram" href="https://www.instagram.com/profoto/">Instagram</a>
                <a class="footer-social youtube" href="https://www.youtube.com/user/ProfotoGlobal">Youtube</a>
                <a class="footer-social twitter" href="https://twitter.com/profoto">Twitter</a>



        </div>
    </div>

    <div class="footer-bottom">
        <div class="footer-logo-container">
            <a href="/fr" class="footer-logo">
                <img class="img-fluid lazyload" alt="Profoto the light shaping company" data-src="https://cdn.profoto.com/cdn/static/img/profoto_tagline_white-6adb4eda75.svg" />
            </a>
        </div>
        <div class="footer-left">
            <div class="footer-legal">
                <div class="footer-legal__information">
                    <p class="footer-legal__license"></p>
                        <ul class="footer-legal__links">
                                <li>
                                    <a href="/fr/cookies">Cookies</a>
                                </li>
                                <li>
                                    <a href="/fr/privacy-policy">Politique de confidentialit&#233;</a>
                                </li>
                                <li>
                                    <a href="/fr/terms-of-use">Conditions d’utilisation</a>
                                </li>
                        </ul>
                </div>
                <p>Copyright (C) 1968-2025 Profoto AB Tous droits r&#233;serv&#233;s.</p>
            </div>
        </div>
    </div>
</footer>




    <div id="survey-modal" class="survey-modal" role="dialog"
         data-api-update-url="/api/survey"
         data-api-tracking-url="/api/track"
         data-api-qualify-url="/api/qualify">
        
        <div class="survey-container ratings-container" role="document">
            <button type="button" class="modal-close" aria-label="Fermer" onclick="window.survey.postRating(null)"></button>
            <h2 class="survey-title survey-title__ratings">Comment &#233;valueriez-vous votre exp&#233;rience avec nous aujourd&#39;hui ?</h2>

            <div class="survey-ratings">
                <div onclick="window.survey.postRating(1)" id="csat_rating_1">1<span>Tr&#232;s m&#233;content</span>
                </div>
                <div onclick="window.survey.postRating(2)" id="csat_rating_2">2</div>
                <div onclick="window.survey.postRating(3)" id="csat_rating_3">3<span>Neutre</span>
                </div>
                <div onclick="window.survey.postRating(4)" id="csat_rating_4">4</div>
                <div onclick="window.survey.postRating(5)" id="csat_rating_5">5<span>Tr&#232;s satisfait</span>
                </div>
            </div>
        </div>
    </div>
    <script type="text/html" id="survey-step-two">
        <div class="new-survey-container feedback-container" role="document">
            <button type="button" class="modal-close" aria-label="Fermer" onclick="window.survey.closeModal()"></button>

            <h2 class="survey-title survey-title__feedback">Merci&#160;!</h2>

            <div class="submit-survey-feedback-container">
                <p class="feedback">Si vous le souhaitez, veuillez d&#233;crire bri&#232;vement votre exp&#233;rience afin que nous puissions nous am&#233;liorer. Votre avis compte !</p>
                <textarea id="survey-feedback" class="survey-feedback-box"></textarea>
                <p class="textarea-help-text colors--inverse">Il s’agit d’un questionnaire anonyme. Si vous souhaitez entrer en contact avec nous, utilisez le <a href="/fr/contact" target="_blank">formulaire de contact</a>.</p>

                <button type="button" class="btn btn-black" onclick="window.survey.postFeedback()">Valider</button>
            </div>
        </div>
    </script>
    <script type="text/javascript">
        var enableSurvey = true;
    </script>


    <script type="text/javascript" src="https://cdn.profoto.com/cdn/static/js/scripts-c3ae58e4aa.js" async></script>

<script type="text/javascript" src="https://cdn.profoto.com/cdn/static/react//react-vendors-c7d81af6682ce06b1114.js" async></script>

    
    <script type="text/javascript" src="https://cdn.profoto.com/cdn/static/react//article-list-c7d81af6682ce06b1114.js"></script>
    <link rel="stylesheet" href="https://cdn.profoto.com/cdn/static/react//article-list-c7d81af6682ce06b1114.css">

    <script type="text/javascript">
        ArticleList.init({
            parentContentReference: "2637",
            customMenuTitle: "Toutes les cat&#233;gories",
            pageSize: "12",
            noMatchesFound: '<p>The combination of categories and filter does not match any Stories articles at this moment.</p><p>Do you want to contribute? Send us an email with your text and images and we will take it from there!</p><p><strong>Contribute</strong>: <a href="mailto:tips@profoto.com">tips@profoto.com</a>&nbsp;</p>',
            categoriesLoadCallback: () => {
                if(profoto?.navigationSubnavigation?.init) profoto.navigationSubnavigation.init(true);
            },
            selector: '#article-list-block',
            apiUrl: '/api/v2/stories',
            filtersUrl: '/api/v2/stories/filters'
        })
    </script>

</body>

</html>
