{"id":46647,"date":"2024-03-25T08:21:34","date_gmt":"2024-03-25T08:21:34","guid":{"rendered":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/"},"modified":"2025-07-08T13:19:33","modified_gmt":"2025-07-08T13:19:33","slug":"come-girare-in-slow-motion","status":"publish","type":"post","link":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/","title":{"rendered":"Come girare in slow-motion"},"content":{"rendered":"\n<p>Il video in slow motion pu\u00f2 avere diversi scopi per un filmmaker. Lo slow motion \u00e8 spesso usato per enfatizzare le emozioni e creare atmosfera, ma \u00e8 molto presente anche nei film d\u2019azione e nei documentari naturalistici. Ad esempio, un\u2019esplosione al rallentatore o il battito d\u2019ali di un colibr\u00ec hanno un impatto visivo straordinario.<\/p>\n\n\n\n<p>Realizzare slow motion di alta qualit\u00e0 un tempo era impossibile senza costose cineprese, ma oggi la creazione di contenuti si \u00e8 democratizzata grazie a fotocamere sempre pi\u00f9 economiche e potenti. Con l\u2019arrivo dell\u2019iPhone e i suoi 240 fps (fotogrammi al secondo), \u00e8 possibile ottenere anche il super slow motion.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cos\u2019\u00e8 lo slow motion?<\/h2>\n\n\n\n<p>Il video non \u00e8 altro che una serie di immagini fisse (fotogrammi) messe in sequenza rapida per creare l\u2019illusione del movimento. Per questo motivo, il <a href="\&quot;https:\/\/artlist.io\/blog\/how-to-use-frame-rates\/\&quot;" target=\"_blank\" rel=\"noopener\">frame rate<\/a>\u00a0\u00e8 fondamentale. Il frame rate indica la velocit\u00e0 con cui la fotocamera registra le immagini. La maggior parte dei video viene riprodotta a 24 o 30 fotogrammi al secondo. Puoi pensare a una sequenza video come a un flipbook: se sfogli 24-30 pagine in un secondo, le immagini sembrano muoversi.<\/p>\n\n\n\n    <div class=\"clipsContainer\" id=\"69d059e411c40\"><\/div>\n\n    <script>\n        jQuery(document).ready(function($) {\n\n            if(\"footage\" == 'footage') {\n                if(\"\" == '') { \/\/ if this is a request for multiple clips by attributes\n                    $.ajax({\n                        method: \"POST\",\n                        url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                        contentType: \"application\/json\",\n                        data: JSON.stringify({\n                            query: `query ClipList($page: Int, $sortType: Int, $categoryIds: String, $searchTerm: String) {\n\t\t\t\t\t\t\t\tclipList(page: $page, sortType: $sortType, categoryIds: $categoryIds, searchTerm: $searchTerm) {\n\t\t\t\t\t\t\t\t  exactResults  {\n\t\t\t\t\t\t\t\t\tclipPath\n\t\t\t\t\t\t\t\t\tclipNameForUrl\n\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\tisNew\n\t\t\t\t\t\t\t\t\tfilmMakerDisplayName\n\t\t\t\t\t\t\t\t\timageUrl\n\t\t\t\t\t\t\t\t\tthumbnailUrl\n\t\t\t\t\t\t\t\t\twidth\n\t\t\t\t\t\t\t\t\tvideoUrl\n\t\t\t\t\t\t\t\t\trawFileExt\n\t\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}`,\n                            variables: `{\n\t\t\t\t\t\t\t\t\"page\": 1,\n\t\t\t\t\t\t\t\t\"sortType\": 1,\n\t\t\t\t\t\t\t\t\"categoryIds\": null,\n\t\t\t\t\t\t\t\t\"searchTerm\": \"slow motion\"\n\t\t\t\t\t\t\t}`,\n                        })\n                    }).done(function (res) {\n                        if(res == '') {\n                            console.log('none');\n                        } else {\n                            console.log('footage list: ', res);\n                            var data = res.data.clipList.exactResults;\n                            if ($(\"#69d059e411c40\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d059e411c40\");\n                            } else if ($(\"#69d059e411c40\").length && data.length == 0) {\n                                $(\"#69d059e411c40\").empty().append('<div class=\"noClipsError\">No clips were found.<\/div>');\n                            }\n                        }\n                    });\n                } else if(\"\" !== '') { \/\/ if this is a request for a specific clip by id\n                    $.ajax({\n                        method: \"POST\",\n                        url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                        contentType: \"application\/json\",\n                        data: JSON.stringify({\n                            query: `query Clip($clipId: Int!) {\n\t\t\t\t\t\t\t\tclip(id: $clipId) {\n\t\t\t\t\t\t\t\t\tclipPath\n\t\t\t\t\t\t\t\t\tclipNameForUrl\n\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\tisNew\n\t\t\t\t\t\t\t\t\tfilmMakerDisplayName\n\t\t\t\t\t\t\t\t\timageUrl\n\t\t\t\t\t\t\t\t\tthumbnailUrl\n\t\t\t\t\t\t\t\t\twidth\n\t\t\t\t\t\t\t\t\tvideoUrl\n\t\t\t\t\t\t\t\t\trawFileExt\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}`,\n                            variables: `{\n\t\t\t\t\t\t\t\t\"clipId\": \t\t\t\t\t\t\t}`,\n                        })\n                    }).done(function (res) {\n                        if(res == '') {\n                            console.log('none');\n                        } else {\n                            console.log('specific footage: ', res);\n                            var data = res.data.clip;\n                            if ($(\"#69d059e411c40\").length && data !== '') {\n                                createClipsGrid(data, \"69d059e411c40\");\n                            } else if ($(\"#69d059e411c40\").length && data.length == '') {\n                                $(\"#69d059e411c40\").empty().append('<div class=\"noClipsError\">No clips were found.<\/div>');\n                            }\n                        }\n                    });\n                }\n            } else if(\"footage\" == 'templates') {\n                if(\"\" === '') {\n                    $.ajax({\n                        method: \"POST\",\n                        url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                        contentType: \"application\/json\",\n                        data: JSON.stringify({\n                            query: `query TemplatesList($payload: TemplatesByTermSearchPayload!) {\n                                templatesList(payload: $payload) {\n                                    nameForUrl\n                                    id\n                                    name\n                                    isNew\n                                    artistName\n                                    thumbnailUrl\n                                    previewVideoFileUrl\n                                }\n                            }`,\n                            variables: `{\n                                \"payload\": {\n                                    \"page\": 1,\n                                    \"take\": 4,\n                                    \"sortBy\": \"1\",\n                                    \"categories\": null,\n                                    \"searchTerms\": \"slow motion\"\n                                }\n                            }`,\n                        })\n                    }).done(function (res) {\n                        if(res == '') {\n                            console.log('none');\n                        } else {\n                            console.log('templates list: ', res);\n                            var data = res.data.templatesList;\n                            if ($(\"#69d059e411c40\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d059e411c40\");\n                            } else if ($(\"#69d059e411c40\").length && data.length == 0) {\n                                $(\"#69d059e411c40\").empty().append('<div class=\"noClipsError\">No clips were found.<\/div>');\n                            }\n                        }\n                    });\n                    } else if(\"\" !== '') {\n                    $.ajax({\n                        method: \"POST\",\n                        url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                        contentType: \"application\/json\",\n                        data: JSON.stringify({\n                            query: `query Template($ids: [String!]!, $page: Int!, $take: Int!) {\n\t\t\t\t\t\t\t\ttemplatesByIds(ids: $ids, page: $page, take: $take) {\n\t\t\t\t\t\t\t\t\tnameForUrl\n                                    id\n                                    name\n                                    isNew\n                                    artistName\n                                    thumbnailUrl\n                                    previewVideoFileUrl\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}`,\n                            variables: `{\n                                \"ids\": [\"\"],\n                                \"page\": 1,\n                                \"take\": 1\n\t\t\t\t\t\t\t}`,\n                        })\n                    }).done(function (res) {\n                        if(res == '') {\n                            console.log('none');\n                        } else {\n                            console.log('specific template: ', res);\n                            var data = res.data.templatesByIds[0];\n                            if ($(\"#69d059e411c40\").length && data !== '') {\n                                createClipsGrid(data, \"69d059e411c40\");\n                            } else if ($(\"#69d059e411c40\").length && data.length == '') {\n                                $(\"#69d059e411c40\").empty().append('<div class=\"noClipsError\">No clips were found.<\/div>');\n                            }\n                        }\n                    });\n                }\n            }\n\n            function createClipsGrid(data, clipsContainerId){\n                const container = $(\"#\" + clipsContainerId);\n                let playerSrc = '';\n\n                $.each(data, function(index, clip) {\n                    if(\"\" !== '') { \/\/ if this is a request for a specific clip by id - then the data is not an array of clips but only one clip and that's why the \"clip\" variable is actually the \"data\"\n                        index = 0\n                        clip = data;\n                    }\n                    if ((index) < 4) {\n                        \/\/ clip container\n                        const clipContainer = $(\"<div>\").addClass(\"clipContainer \");\n                        \/\/ new badge\n                        if (clip.isNew) {\n                            clipContainer.append('<span class=\"isNewBadge\">NEW<\/span>');\n                        }\n                        \/\/ video\n                        let videoElement = document.createElement('video');\n                        videoElement.setAttribute('playsinline', '');\n                        videoElement.setAttribute('webkit-playsinline', '');\n                        videoElement.setAttribute('x5-playsinline', '');\n                        videoElement.setAttribute('preload', 'auto');\n                        \n                        clipContainer.append(videoElement);\n                        \/\/ clip name and artist name\n                        let clipName = '';\n                        let artistName = '';\n                        if(\"footage\" == 'footage') {\n                            clipName = clip.clipNameForUrl;\n                            clipName = clipName.replace(\/-\/g, \", \");\n                            clipName = $(\"<a>\").addClass(\"clipName\").attr(\"href\", \"https:\/\/artlist.io\/stock-footage\/clip\/\" + clip.clipNameForUrl + \"\/\" + clip.id + \"?download=1&utm_source=blog\").attr(\"target\", \"_blank\").text(clipName);\n                            artistName = $(\"<div>\").addClass(\"artistName\").text('By ' + clip.filmMakerDisplayName + '');\n                        } else if(\"footage\" == 'templates') {\n                            clipName = $(\"<a>\").addClass(\"clipName\").attr(\"href\", \"https:\/\/artlist.io\/video-templates\/\" + clip.nameForUrl + \"\/\" + clip.id + \"?download=1&utm_source=blog\").attr(\"target\", \"_blank\").text(clip.name);\n                            artistName = $(\"<div>\").addClass(\"artistName\").text('By ' + clip.artistName + '');\n                        }\n                        const clipNames = $(\"<span>\").addClass(\"clipNames\").append(clipName, artistName);\n                        \/\/ download button\n                        let clipDownload = '';\n                        if(\"footage\" == 'footage') {\n                            clipDownload = $(\"<a>\").addClass(\"clipDownload\").attr(\"href\", \"https:\/\/artlist.io\/stock-footage\/clip\/\" + clip.clipNameForUrl + \"\/\" + clip.id + \"?download=1&utm_source=blog\").attr(\"target\", \"_blank\").html('<i class=\"icon download white\"><\/i>');\n                        } else if(\"footage\" == 'templates') {\n                            clipDownload = $(\"<a>\").addClass(\"clipDownload\").attr(\"href\", \"https:\/\/artlist.io\/video-templates\/\" + clip.nameForUrl + \"\/\" + clip.id + \"?download=1&utm_source=blog\").attr(\"target\", \"_blank\").html('<i class=\"icon download white\"><\/i>');\n                        }\n                        \/\/ overlay\n                        const overlay = $(\"<div>\").addClass(\"overlay\");\n                        overlay.append(clipNames, clipDownload);\n\n                        \/\/ APPEND ALL ELEMENTS INTO AUDIO PLAYER CONTAINER\n                        clipContainer.append(videoElement, overlay);\n\n                        \/\/ if this is a preview of only one specific clip (by id)\n                        if(\"\" !== '') {\n                            $(container).addClass(\"clipContainerSingular\")\n                        }\n\n                        \/\/ append audio player container into main playlist container\n                        container.append(clipContainer[0]);\n\n                        if(\"footage\" == 'footage') {\n                            playerSrc =  clip.clipPath;\n                        } else if(\"footage\" == 'templates') {\n                            playerSrc =  clip.previewVideoFileUrl;\n                        }\n                        const player = videojs(videoElement, {\n                            muted: true,\n                            autoplay: true,\n                        });\n\n                        player.src({\n                            src: playerSrc,\n                            type: 'application\/x-mpegURL'\n                        });\n\n                        \/* SEGMENT EVENTS *\/\n                        const special_data = getProps();\n\n                        \/* media played *\/\n                        var $videoElement = $(videoElement);\n                        $videoElement.on('play', function() {\n                            var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                            var assetId = clip.id;\n                            var artist = clip.filmMakerDisplayName || clip.artistName;\n                            var asset_type = null;\n                            if(\"footage\" == 'footage') {\n                                asset_type = 'footage';\n                            } else if(\"footage\" == 'templates') {\n                                asset_type = 'template';\n                            }\n                            analytics.track(\"media played\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        });\n\n                        \/* media paused *\/\n                        var $videoElement = $(videoElement);\n                        $videoElement.on('pause', function() {\n                            var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                            var assetId = clip.id;\n                            var artist = clip.filmMakerDisplayName || clip.artistName;\n                            var asset_type = null;\n                            if(\"footage\" == 'footage') {\n                                asset_type = 'footage';\n                            } else if(\"footage\" == 'templates') {\n                                asset_type = 'template';\n                            }\n                            analytics.track(\"media paused\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        });\n\n                        \/* media viewed *\/\n                        const observer = new IntersectionObserver(entries => {\n                            entries.forEach(entry => {\n                                if (entry.isIntersecting) {\n                                    var assetId = clip.id;\n                                    var artist = clip.filmMakerDisplayName || clip.artistName;\n                                    var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                                    var asset_type = null;\n                                    if(\"footage\" == 'footage') {\n                                        asset_type = 'footage';\n                                    } else if(\"footage\" == 'templates') {\n                                        asset_type = 'template';\n                                    }\n                                    analytics.track(\"media viewed\", {\n                                        asset_id: assetId || null,\n                                        asset_type: asset_type || null,\n                                        click_source: 'player',\n                                        artist: artist || null,\n                                        title: title || null,\n                                        genre: null,\n                                        ...special_data,\n                                    });\n                                    observer.unobserve(entry.target);\n                                }\n                            });\n                        }, {\n                            threshold: 0.5\n                        });\n                        observer.observe($videoElement[0]);\n\n                        \/* media downloaded *\/\n                        $videoElement.closest('.clipContainer').find('.clipName').on('click', function() {\n                            var assetId = clip.id;\n                            var artist = clip.filmMakerDisplayName || clip.artistName;\n                            var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                            var asset_type = null;\n                            if(\"footage\" == 'footage') {\n                                asset_type = 'footage';\n                            } else if(\"footage\" == 'templates') {\n                                asset_type = 'template';\n                            }\n                            analytics.track(\"media downloaded\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        });\n                        $videoElement.closest('.clipContainer').find('.clipDownload').on('click', function() {\n                            var assetId = clip.id;\n                            var artist = clip.filmMakerDisplayName || clip.artistName;\n                            var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                            var asset_type = null;\n                            if(\"footage\" == 'footage') {\n                                asset_type = 'footage';\n                            } else if(\"footage\" == 'templates') {\n                                asset_type = 'template';\n                            }\n                            analytics.track(\"media downloaded\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        });\n\n                        \/\/ check screen size\n                        var mobileScreen = window.matchMedia('(max-width: 767px)');\n                        if (mobileScreen.matches) { \/\/ mobile\n                            const observer = new IntersectionObserver(function(entries) {\n                                entries.forEach(entry => {\n                                    if (entry.isIntersecting) {\n                                        player.play(); \/\/ Play the video when it enters the viewport\n                                    } else {\n                                        player.pause(); \/\/ Pause the video when it goes out of the viewport\n                                    }\n                                });\n                            });\n                            observer.observe(videoElement);\n                        } else { \/\/ desktop\n                            clipContainer.on('mouseenter', function() {\n                                player.play();\n                            });\n\n                            clipContainer.on('mouseleave', function() {\n                                player.pause();\n                            });\n                        }\n\n                    }\n                    if(\"\" !== '') { \/\/ if this is a request for a specific clip by id - then break out of loop after first time bc it's not an array\n                        return false;\n                    }\n                });\n            }\n\n        });\n    <\/script>\n\n    \n\n\n\n<p>Se vuoi che quel movimento appaia pi\u00f9 lento, servono pi\u00f9 immagini per comporre la timeline a 24 fps. Ad esempio, se registri a 60 fps, puoi rallentare il video del 50%; con 120 fps puoi rallentarlo al 25% e cos\u00ec via. Pi\u00f9 alto \u00e8 il numero di fotogrammi al secondo, pi\u00f9 fluido e dettagliato sar\u00e0 l\u2019effetto slow motion. Con 960 fps puoi rallentare un\u2019azione fino al 3%, creando un super slow motion.<\/p>\n\n\n\n<p>\u00c8 possibile rallentare un video girato a meno di 30 fps? Tecnicamente s\u00ec, ma il risultato non sar\u00e0 buono. Il video apparir\u00e0 scattoso e poco fluido. Ecco perch\u00e9 \u00e8 importante fare attenzione al frame rate durante le riprese: non \u00e8 un errore che si pu\u00f2 correggere facilmente in post-produzione!<\/p>\n\n\n\n<div class=\"wp-block-uagb-how-to uagb-block-f4d6eb1d uagb-how-to-main-wrap\"><script type=\"application\/ld+json\">{\"@context\":\"https:\/\/schema.org\",\"@type\":\"HowTo\",\"name\":\"Come girare video in slow motion con la tua fotocamera\",\"description\":\"Girare in slow motion pu\u00f2 aumentare l\u2019impatto visivo dei tuoi video, aggiungendo un tocco drammatico e mettendo in risalto dettagli che altrimenti passerebbero inosservati.\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"\",\"height\":\"406\",\"width\":\"305\"},\"totalTime\":\"\",\"estimatedCost\":[],\"tool\":[],\"supply\":[],\"step\":[{\"@type\":\"HowToStep\",\"url\":\"\",\"name\":\"&lt;strong>Step 1&lt;\/strong>\",\"text\":\"Choose the Right Equipment: Start with a camera that can shoot at high frame rates. You'll also need good lighting and a stable tripod to prevent shaky footage.\",\"image\":\"\"},{\"@type\":\"HowToStep\",\"url\":\"\",\"name\":\"&lt;strong>Step 2&lt;\/strong>\",\"text\":\"Frame Rate Settings: For standard slow motion, aim for 60fps, but for more dramatic effects, you can go up to 1,000fps.\",\"image\":\"\"},{\"@type\":\"HowToStep\",\"url\":\"\",\"name\":\"&lt;strong>Step 3&lt;\/strong>\",\"text\":\"Shutter Speed: For the best results, your shutter speed should double your frame rate. If you're shooting at 60fps, set your shutter speed to 1\/120; for 120fps, set it to 1\/240. This helps prevent motion blur and ensures smoother slow-motion playback.&lt;br>\",\"image\":\"\"},{\"@type\":\"HowToStep\",\"url\":\"\",\"name\":\"&lt;strong>Step 4&lt;\/strong>\",\"text\":\"Plan Your Shot: Slow-motion footage can dramatize movement and detail, so plan your shot to make the most of this effect. Consider how the slow motion will enhance your visual story, whether it's a dynamic action scene or a detailed close-up.\",\"image\":\"\"}]}<\/script><h2 class=\"uagb-howto-heading-text\">Come girare video in slow motion con la tua fotocamera<\/h2><p class=\"uagb-howto-desc-text\">Girare in slow motion pu\u00f2 aumentare l\u2019impatto visivo dei tuoi video, aggiungendo un tocco drammatico e mettendo in risalto dettagli che altrimenti passerebbero inosservati.<\/p><h4 class=\"uagb-howto-req-steps-text\">Ecco i passaggi per catturare riprese slow motion efficaci:<\/h4>\n<div class=\"wp-block-uagb-how-to-step uagb-how-to-step-wrap uagb-block-ae136700\"><div class=\"uagb-step-image-content-wrap uag-image-position-above-title\"><div class=\"uagb-step-content-wrap\"><div class=\"uagb-how-to-step-name\"><strong>Passo 1<\/strong><\/div><p class=\"uagb-how-to-step-description\">Scegli l\u2019attrezzatura giusta: Inizia con una fotocamera capace di registrare ad alti frame rate. Servono anche una buona illuminazione e un treppiede stabile per evitare riprese mosse.<\/p><\/div><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-how-to-step uagb-how-to-step-wrap uagb-block-9671184c\"><div class=\"uagb-step-image-content-wrap uag-image-position-above-title\"><div class=\"uagb-step-content-wrap\"><div class=\"uagb-how-to-step-name\"><strong>Passo 2<\/strong><\/div><p class=\"uagb-how-to-step-description\">Impostazioni del frame rate: Per uno slow motion standard, punta a 60 fps; per effetti pi\u00f9 drammatici puoi arrivare fino a 1.000 fps.<\/p><\/div><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-how-to-step uagb-how-to-step-wrap uagb-block-e332246d\"><div class=\"uagb-step-image-content-wrap uag-image-position-above-title\"><div class=\"uagb-step-content-wrap\"><div class=\"uagb-how-to-step-name\"><strong>Passo 3<\/strong><\/div><p class=\"uagb-how-to-step-description\">Velocit\u00e0 dell\u2019otturatore: Per ottenere il massimo, imposta la velocit\u00e0 dell\u2019otturatore al doppio del frame rate. Se stai girando a 60 fps, imposta l\u2019otturatore su 1\/120; se usi 120 fps, imposta 1\/240. Questo riduce il motion blur e rende pi\u00f9 fluida la riproduzione.<br><\/p><\/div><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-how-to-step uagb-how-to-step-wrap uagb-block-bd81b6bb\"><div class=\"uagb-step-image-content-wrap uag-image-position-above-title\"><div class=\"uagb-step-content-wrap\"><div class=\"uagb-how-to-step-name\"><strong><strong>Passo <\/strong>4<\/strong><\/div><p class=\"uagb-how-to-step-description\">Pianifica lo scatto: Lo slow motion enfatizza i movimenti e i dettagli. Pianifica in anticipo: considera come il rallentatore potr\u00e0 migliorare la tua narrazione visiva, sia in una scena d\u2019azione che in un primo piano ricco di dettagli.<\/p><\/div><\/div><\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Pro tip:<\/h3>\n\n\n\n<p>Girare in slow motion non \u00e8 solo una questione tecnica: \u00e8 un modo per aggiungere emozione e profondit\u00e0 ai tuoi video. Sperimenta con frame rate diversi e soggetti vari per capire cosa funziona meglio per la tua storia.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Come girare video in slow motion con lo smartphone<\/h2>\n\n\n\n<ol>\n<li>Trova le impostazioni del frame rate. Seleziona un frame rate di almeno 60 fps. Su alcuni smartphone, l\u2019opzione \u00e8 indicata semplicemente come \u201cslo-mo\u201d o \u201cslow motion\u201d. Tieni presente che i video in slow motion occupano pi\u00f9 spazio in memoria; quindi, \u00e8 consigliabile limitarli a circa 10 secondi.<\/li>\n\n\n\n<li>Mantieni la fotocamera stabile. Evita movimenti che possano causare sfocature o perdita di messa a fuoco. Pianifica lo scatto in anticipo, inquadra il soggetto con precisione e tocca lo schermo per bloccare la messa a fuoco. Inizia esercitandoti con soggetti controllabili, come capelli mossi dal vento o acqua che scorre da una caraffa in un bicchiere. Poi passa a soggetti pi\u00f9 dinamici, come atleti o animali in movimento.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Le migliori fotocamere per slow motion<\/h2>\n\n\n\n<p>Che tu sia un principiante, voglia fare un upgrade o abbia bisogno di attrezzatura professionale, ecco alcune ottime fotocamere per lo slow motion:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Per principianti<\/h3>\n\n\n\n<div class=\"wp-block-uagb-review uagb-ratings__outer-wrap uagb-block-daf40eed\"><script type=\"application\/ld+json\">{\"@context\":\"https:\/\/schema.org\/\",\"@type\":\"Review\",\"reviewBody\":\"The Canon EOS R50 offers a strong entry point for creators interested in high-quality slow-motion content. It supports Full HD recording at up to 120fps, allowing for smooth 4x or 5x slow-motion playback \u2013 a valuable feature for vlogs, B-roll, and creative shots. However, it\u2019s worth noting slow-motion is limited to 1080p resolution with no 4K high frame rate mode, which may disappoint users seeking the sharpest slow-motion visuals.&lt;br>&lt;br>The lack of in-body image stabilization (IBIS) means handheld slow-motion shots may require additional stabilization gear or lenses with optical IS to avoid shakiness. For its price, the R50 delivers a compelling slow-motion experience, especially for newer creators.&lt;br>\",\"description\":\"A compact mirrorless camera that offers Full HD shooting at 120 fps. It\u2019s ideal for content creators who need a budget-friendly option with high-quality image output and the flexibility of interchangeable lenses.&lt;br>\",\"itemReviewed\":{\"@type\":\"Product\",\"name\":\"Canon EOS R50\",\"description\":\"A compact mirrorless camera that offers Full HD shooting at 120 fps. It\u2019s ideal for content creators who need a budget-friendly option with high-quality image output and the flexibility of interchangeable lenses.&lt;br>\",\"image\":\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/plugins\/ultimate-addons-for-gutenberg\/\/admin\/assets\/images\/placeholder.png\",\"sku\":\"\",\"brand\":{\"@type\":\"Brand\",\"name\":\"\"},\"offers\":{\"@type\":\"Offer\",\"price\":0,\"url\":\"https:\/\/www.usa.canon.com\/shop\/p\/eos-r50?color=Black&amp;type=New\",\"priceValidUntil\":\"Dec 19 2020\",\"priceCurrency\":\"USD\",\"availability\":\"\"},\"gtin\":\"\"},\"reviewRating\":{\"@type\":\"Rating\",\"ratingValue\":3,\"worstRating\":\"0\",\"bestRating\":5},\"author\":{\"@type\":\"Person\",\"name\":\"&lt;br>Josh Edwards\"},\"publisher\":\"\",\"datePublished\":\"Dec 19 2020\",\"url\":\"https:\/\/www.usa.canon.com\/shop\/p\/eos-r50?color=Black&amp;type=New\"}<\/script><div class=\"uagb_review_block\"><a href=\"https:\/\/www.usa.canon.com\/shop\/p\/eos-r50?color=Black&amp;type=New\" class=\"uagb-rating-link-wrapper\" target=\"_blank\" rel=\"noopener noreferrer\"><h3 class=\"uagb-rating-title\">Canon EOS R50<\/h3><\/a><p class=\"uagb-rating-desc\">Una fotocamera mirrorless compatta che registra in Full HD a 120 fps. \u00c8 ideale per i content creator che cercano un\u2019opzione economica ma con una qualit\u00e0 d\u2019immagine elevata e la versatilit\u00e0 degli obiettivi intercambiabili.<\/p><p class=\"uagb-rating-author\"><br>Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Qualit\u00e0 video in slow motion (1080p\/120fps)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-daf40eed-0-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-daf40eed-0-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-daf40eed-0-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-daf40eed-0-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-daf40eed-0-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Stabilizzazione (Nessun IBIS)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-1-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-daf40eed-1-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-1-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-daf40eed-1-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-1-2\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-daf40eed-1-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-1-3\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-daf40eed-1-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-1-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-daf40eed-1-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Risoluzione per slow motion (Nessun 4K\/60+fps)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-2-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-daf40eed-2-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-2-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-daf40eed-2-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-2-2\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-daf40eed-2-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-2-3\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-daf40eed-2-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-2-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-daf40eed-2-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Facilit\u00e0 d\u2019uso per i creator<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-3-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-daf40eed-3-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-3-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-daf40eed-3-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-3-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-daf40eed-3-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-3-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-daf40eed-3-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-3-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-daf40eed-3-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_summary\"><p class=\"uagb_review_summary_title\"><strong>Riepilogo<\/strong><\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">La Canon EOS R50 rappresenta un\u2019ottima scelta iniziale per i creator interessati a contenuti slow motion di alta qualit\u00e0. Supporta la registrazione in Full HD fino a 120 fps, permettendo una riproduzione fluida al rallentatore 4x o 5x \u2013 una caratteristica molto utile per vlog, B-roll e riprese creative. Tuttavia, \u00e8 importante notare che lo slow motion \u00e8 limitato alla risoluzione 1080p e non include modalit\u00e0 in 4K a frame rate elevati, il che potrebbe deludere chi cerca una resa visiva ancora pi\u00f9 nitida.<br><br>L\u2019assenza di stabilizzazione interna (IBIS) significa che per ottenere riprese slow motion fluide a mano libera potrebbe essere necessario usare attrezzature aggiuntive o obiettivi con stabilizzazione ottica (IS). Considerando il prezzo, la R50 offre un\u2019esperienza slow motion molto valida, soprattutto per chi \u00e8 alle prime armi.<\/p><div class=\"uagb_review_average\"><span class=\"uagb_review_rating\">3<\/span><div class=\"uagb_review_average_stars\" style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-average-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-daf40eed-average-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-average-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-daf40eed-average-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-average-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-daf40eed-average-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-average-3\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-daf40eed-average-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-average-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-daf40eed-average-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><\/div><\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Livello intermedio<\/h3>\n\n\n\n<div class=\"wp-block-uagb-review uagb-ratings__outer-wrap uagb-block-59e76c18\"><script type=\"application\/ld+json\">{\"@context\":\"https:\/\/schema.org\/\",\"@type\":\"Review\",\"reviewBody\":\"Overall, the DJI Pocket 3 is a substantial upgrade over its predecessor, the DJI Pocket 2. It offers superior slow-motion capabilities with 4K at 120fps, and 1080p at 240fps. The built-in 3-axis gimbal provides buttery-smooth footage, which makes it ideal for handheld slow-motion shots. Users have praised its performance even in challenging conditions, noting its quick startup and impressive slow-motion quality.&lt;br>&lt;br>However, while the Pocket 3 excels in many areas, some users have noted that achieving optimal slow-motion footage requires good lighting conditions, as high frame rates can demand more light. Additionally, although the camera offers advanced features, it may still lack some manual controls that professional users might desire&lt;br>&lt;br>\",\"description\":\"This tiny action camera is perfect for travel videographers or vloggers, offering 4K video at up to 120 fps and Full HD at up to 240 fps. Its compact size, dedicated slow-motion features, and gimbal stabilization make it an excellent choice for capturing pro-grade videos on the go.\",\"itemReviewed\":{\"@type\":\"Product\",\"name\":\"DJI Pocket 3\",\"description\":\"This tiny action camera is perfect for travel videographers or vloggers, offering 4K video at up to 120 fps and Full HD at up to 240 fps. Its compact size, dedicated slow-motion features, and gimbal stabilization make it an excellent choice for capturing pro-grade videos on the go.\",\"image\":\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/plugins\/ultimate-addons-for-gutenberg\/\/admin\/assets\/images\/placeholder.png\",\"sku\":\"\",\"brand\":{\"@type\":\"Brand\",\"name\":\"\"},\"offers\":{\"@type\":\"Offer\",\"price\":0,\"url\":\"https:\/\/www.dji.com\/osmo-pocket-3\",\"priceValidUntil\":\"Dec 19 2020\",\"priceCurrency\":\"USD\",\"availability\":\"\"},\"gtin\":\"\"},\"reviewRating\":{\"@type\":\"Rating\",\"ratingValue\":4.25,\"worstRating\":\"0\",\"bestRating\":5},\"author\":{\"@type\":\"Person\",\"name\":\"\u2013 Josh Edwards\"},\"publisher\":\"\",\"datePublished\":\"Dec 19 2020\",\"url\":\"https:\/\/www.dji.com\/osmo-pocket-3\"}<\/script><div class=\"uagb_review_block\"><a href=\"https:\/\/www.dji.com\/osmo-pocket-3\" class=\"uagb-rating-link-wrapper\" target=\"_blank\" rel=\"noopener noreferrer\"><h3 class=\"uagb-rating-title\">DJI Pocket 3<\/h3><\/a><p class=\"uagb-rating-desc\">Questa mini action cam \u00e8 perfetta per videomaker in viaggio o vlogger, offrendo video in 4K fino a 120 fps e in Full HD fino a 240 fps. Le sue dimensioni compatte, le funzioni dedicate allo slow motion e la stabilizzazione tramite gimbal la rendono un\u2019ottima scelta per creare video di livello professionale ovunque ti trovi.<\/p><p class=\"uagb-rating-author\">\u2013 Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Qualit\u00e0 video in slow motion (4K\/120fps e 1080p\/240fps)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-59e76c18-0-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-59e76c18-0-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-59e76c18-0-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-59e76c18-0-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-59e76c18-0-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Stabilizzazione (Gimbal a 3 assi)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-1-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-59e76c18-1-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-1-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-59e76c18-1-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-1-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-59e76c18-1-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-1-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-59e76c18-1-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-1-4\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-59e76c18-1-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Risoluzione per slow motion (Supporta 4K\/120fps)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-2-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-59e76c18-2-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-2-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-59e76c18-2-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-2-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-59e76c18-2-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-2-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-59e76c18-2-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-2-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-59e76c18-2-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Facilit\u00e0 d\u2019uso per i creator<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-3-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-59e76c18-3-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-3-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-59e76c18-3-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-3-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-59e76c18-3-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-3-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-59e76c18-3-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-3-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-59e76c18-3-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_summary\"><p class=\"uagb_review_summary_title\"><strong>Riepilogo<\/strong><\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">In generale, il DJI Pocket 3 rappresenta un netto miglioramento rispetto al suo predecessore, il DJI Pocket 2.Offre capacit\u00e0 slow motion superiori con 4K a 120 fps e 1080p a 240 fps. Il gimbal integrato a 3 assi garantisce riprese estremamente fluide, rendendolo ideale per video slow motion a mano libera. Gli utenti ne apprezzano le prestazioni anche in condizioni difficili, sottolineando l\u2019avvio rapido e la qualit\u00e0 dello slow motion.<br><br>Tuttavia, sebbene il Pocket 3 eccella in molti aspetti, alcuni utenti hanno notato che per ottenere riprese slow motion ottimali sono necessarie buone condizioni di luce, poich\u00e9 frame rate elevati richiedono pi\u00f9 illuminazione. Inoltre, nonostante la fotocamera offra funzioni avanzate, potrebbe mancare di alcuni controlli manuali desiderati dai professionisti.<br><br><\/p><div class=\"uagb_review_average\"><span class=\"uagb_review_rating\">4.3<\/span><div class=\"uagb_review_average_stars\" style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-59e76c18-average-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-59e76c18-average-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-59e76c18-average-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-59e76c18-average-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-4\"><rect height=\"150\" width=\"37.5\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-59e76c18-average-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><\/div><\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Professionale<\/h3>\n\n\n\n<div class=\"wp-block-uagb-review uagb-ratings__outer-wrap uagb-block-35d5b5fd\"><script type=\"application\/ld+json\">{\"@context\":\"https:\/\/schema.org\/\",\"@type\":\"Review\",\"reviewBody\":\"The Canon EOS R5 offers top-tier slow-motion with stunning 4K\/120fps 10-bit video, excellent autofocus, and powerful in-body stabilization, making it a really strong choice for professional creatives. However, overheating during extended 4K 120fps sessions and the lack of audio recording in this mode do slightly limit its practicality for long shoots.\u00a0&lt;br>&lt;br>Despite those caveats, it's one of the best mirrorless cameras for high-quality, cinematic slow motion.&lt;br>&lt;br>\",\"description\":\"Renowned for its 8K RAW video capture and up to 120 fps in 4K, the EOS R5 is a powerhouse in professional filmmaking. It provides unparalleled post-production flexibility and intelligent tracking and focusing, making it an essential tool for filmmakers requiring top-tier slow-motion performance.\",\"itemReviewed\":{\"@type\":\"Product\",\"name\":\"Canon EOS R5\",\"description\":\"Renowned for its 8K RAW video capture and up to 120 fps in 4K, the EOS R5 is a powerhouse in professional filmmaking. It provides unparalleled post-production flexibility and intelligent tracking and focusing, making it an essential tool for filmmakers requiring top-tier slow-motion performance.\",\"image\":\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/plugins\/ultimate-addons-for-gutenberg\/\/admin\/assets\/images\/placeholder.png\",\"sku\":\"\",\"brand\":{\"@type\":\"Brand\",\"name\":\"\"},\"offers\":{\"@type\":\"Offer\",\"price\":0,\"url\":\"https:\/\/www.usa.canon.com\/shop\/p\/eos-r5?color=Black&amp;type=New\",\"priceValidUntil\":\"Dec 19 2020\",\"priceCurrency\":\"USD\",\"availability\":\"\"},\"gtin\":\"\"},\"reviewRating\":{\"@type\":\"Rating\",\"ratingValue\":4.25,\"worstRating\":\"0\",\"bestRating\":5},\"author\":{\"@type\":\"Person\",\"name\":\"\u2013 Josh Edwards\"},\"publisher\":\"\",\"datePublished\":\"Dec 19 2020\",\"url\":\"https:\/\/www.usa.canon.com\/shop\/p\/eos-r5?color=Black&amp;type=New\"}<\/script><div class=\"uagb_review_block\"><a href=\"https:\/\/www.usa.canon.com\/shop\/p\/eos-r5?color=Black&amp;type=New\" class=\"uagb-rating-link-wrapper\" target=\"_blank\" rel=\"noopener noreferrer\"><h3 class=\"uagb-rating-title\">Canon EOS R5<\/h3><\/a><p class=\"uagb-rating-desc\">The Canon EOS R5 offers top-tier slow-motion with stunning 4K\/120fps 10-bit video, excellent autofocus, and powerful in-body stabilization, making it a really strong choice for professional creatives. However, overheating during extended 4K 120fps sessions and the lack of audio recording in this mode do slightly limit its practicality for long shoot.<\/p><p class=\"uagb-rating-author\">\u2013 Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Qualit\u00e0 video in slow motion (4K\/120fps, 10-bit)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-4\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Stabilizzazione (IBIS + stabilizzazione obiettivo)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-1-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-35d5b5fd-1-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-1-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-35d5b5fd-1-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-1-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-35d5b5fd-1-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-1-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-35d5b5fd-1-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-1-4\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-35d5b5fd-1-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Risoluzione per slow motion (No 8K\/60fps)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Facilit\u00e0 d\u2019uso per i creator<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-3-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-35d5b5fd-3-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-3-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-35d5b5fd-3-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-3-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-35d5b5fd-3-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-3-3\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-35d5b5fd-3-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-3-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-35d5b5fd-3-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_summary\"><p class=\"uagb_review_summary_title\"><strong>Riepilogo<\/strong><\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">La Canon EOS R5 offre slow motion di altissimo livello con video 4K\/120fps a 10 bit, un autofocus eccellente e una potente stabilizzazione interna, rendendola una scelta molto valida per creativi professionisti. Tuttavia, il surriscaldamento durante le riprese prolungate in 4K a 120fps e la mancanza di registrazione audio in questa modalit\u00e0 ne limitano leggermente la praticit\u00e0 per sessioni lunghe.<br><br>Nonostante queste piccole limitazioni, \u00e8 una delle migliori mirrorless per slow motion cinematografico di alta qualit\u00e0.<br><\/p><div class=\"uagb_review_average\"><span class=\"uagb_review_rating\">4.3<\/span><div class=\"uagb_review_average_stars\" style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-average-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-35d5b5fd-average-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-average-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-35d5b5fd-average-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-average-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-35d5b5fd-average-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-average-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-35d5b5fd-average-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-average-4\"><rect height=\"150\" width=\"37.5\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-35d5b5fd-average-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><\/div><\/div><\/div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/artlist.io\/stock-footage?utm_source=blog&amp;utm_medium=sidebanner&amp;utm_campaign=it\" target=\"_blank\" rel=\"noreferrer noopener\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"373\" src=\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/12\/IT-Middle-Banner-get-the-best-creative-assets-for-your-videos-1140-1024x373.jpg\" alt=\"\" class=\"wp-image-35941\" srcset=\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/12\/IT-Middle-Banner-get-the-best-creative-assets-for-your-videos-1140-1024x373.jpg 1024w, https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/12\/IT-Middle-Banner-get-the-best-creative-assets-for-your-videos-1140-300x109.jpg 300w, https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/12\/IT-Middle-Banner-get-the-best-creative-assets-for-your-videos-1140-768x280.jpg 768w, https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/12\/IT-Middle-Banner-get-the-best-creative-assets-for-your-videos-1140.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Come montare video slow motion<\/h2>\n\n\n\n<p>Oggi non serve pi\u00f9 un <a href=\"https:\/\/artlist.io\/software\">software professionale<\/a> per lavorare con video slow motion, anche se bisogna considerare che i file saranno pi\u00f9 pesanti. I software professionali, per\u00f2, permettono di creare file proxy pi\u00f9 leggeri e offrono strumenti pi\u00f9 robusti. Per qualche clip girata con lo smartphone, sfrutta le app native di Android o Apple. Per lavori professionali o video lunghi, invece, usa software come Adobe Premiere, Final Cut Pro X, DaVinci Resolve o Adobe After Effects, solo per citarne alcuni.<\/p>\n\n\n\n<p>Quando rallenti una clip nella timeline, devi fare un po\u2019 di calcoli.<\/p>\n\n\n\n<p>Ecco una tabella riassuntiva con i frame rate e la loro durata equivalente:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Frame rate<\/th><th>Durata<\/th><\/tr><\/thead><tbody><tr><td>30 fps<\/td><td>1 secondo<\/td><\/tr><tr><td>60 fps<\/td><td>2 secondi<\/td><\/tr><tr><td>120 fps<\/td><td>4 secondi<\/td><\/tr><tr><td>240 fps<\/td><td>8 secondi<\/td><\/tr><tr><td>480 fps<\/td><td>16 secondi<\/td><\/tr><tr><td>960 fps<\/td><td>32 secondi<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Se la tua timeline \u00e8 a 24p, devi dividere il frame rate di registrazione per 24 per calcolare la velocit\u00e0 a cui rallentare il video. Lo stesso vale se la timeline \u00e8 a 30p. Cerca di dividere in modo uniforme per ottenere la percentuale corretta di rallentamento, altrimenti potresti avere fotogrammi \u201cmezzi\u201d che rendono il video scattoso.<\/p>\n\n\n\n    <div class=\"clipsContainer\" id=\"69d059e411e08\"><\/div>\n\n    <script>\n        jQuery(document).ready(function($) {\n\n            if(\"footage\" == 'footage') {\n                if(\"\" == '') { \/\/ if this is a request for multiple clips by attributes\n                    $.ajax({\n                        method: \"POST\",\n                        url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                        contentType: \"application\/json\",\n                        data: JSON.stringify({\n                            query: `query ClipList($page: Int, $sortType: Int, $categoryIds: String, $searchTerm: String) {\n\t\t\t\t\t\t\t\tclipList(page: $page, sortType: $sortType, categoryIds: $categoryIds, searchTerm: $searchTerm) {\n\t\t\t\t\t\t\t\t  exactResults  {\n\t\t\t\t\t\t\t\t\tclipPath\n\t\t\t\t\t\t\t\t\tclipNameForUrl\n\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\tisNew\n\t\t\t\t\t\t\t\t\tfilmMakerDisplayName\n\t\t\t\t\t\t\t\t\timageUrl\n\t\t\t\t\t\t\t\t\tthumbnailUrl\n\t\t\t\t\t\t\t\t\twidth\n\t\t\t\t\t\t\t\t\tvideoUrl\n\t\t\t\t\t\t\t\t\trawFileExt\n\t\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}`,\n                            variables: `{\n\t\t\t\t\t\t\t\t\"page\": 1,\n\t\t\t\t\t\t\t\t\"sortType\": 1,\n\t\t\t\t\t\t\t\t\"categoryIds\": null,\n\t\t\t\t\t\t\t\t\"searchTerm\": \"slow motion\"\n\t\t\t\t\t\t\t}`,\n                        })\n                    }).done(function (res) {\n                        if(res == '') {\n                            console.log('none');\n                        } else {\n                            console.log('footage list: ', res);\n                            var data = res.data.clipList.exactResults;\n                            if ($(\"#69d059e411e08\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d059e411e08\");\n                            } else if ($(\"#69d059e411e08\").length && data.length == 0) {\n                                $(\"#69d059e411e08\").empty().append('<div class=\"noClipsError\">No clips were found.<\/div>');\n                            }\n                        }\n                    });\n                } else if(\"\" !== '') { \/\/ if this is a request for a specific clip by id\n                    $.ajax({\n                        method: \"POST\",\n                        url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                        contentType: \"application\/json\",\n                        data: JSON.stringify({\n                            query: `query Clip($clipId: Int!) {\n\t\t\t\t\t\t\t\tclip(id: $clipId) {\n\t\t\t\t\t\t\t\t\tclipPath\n\t\t\t\t\t\t\t\t\tclipNameForUrl\n\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\tisNew\n\t\t\t\t\t\t\t\t\tfilmMakerDisplayName\n\t\t\t\t\t\t\t\t\timageUrl\n\t\t\t\t\t\t\t\t\tthumbnailUrl\n\t\t\t\t\t\t\t\t\twidth\n\t\t\t\t\t\t\t\t\tvideoUrl\n\t\t\t\t\t\t\t\t\trawFileExt\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}`,\n                            variables: `{\n\t\t\t\t\t\t\t\t\"clipId\": \t\t\t\t\t\t\t}`,\n                        })\n                    }).done(function (res) {\n                        if(res == '') {\n                            console.log('none');\n                        } else {\n                            console.log('specific footage: ', res);\n                            var data = res.data.clip;\n                            if ($(\"#69d059e411e08\").length && data !== '') {\n                                createClipsGrid(data, \"69d059e411e08\");\n                            } else if ($(\"#69d059e411e08\").length && data.length == '') {\n                                $(\"#69d059e411e08\").empty().append('<div class=\"noClipsError\">No clips were found.<\/div>');\n                            }\n                        }\n                    });\n                }\n            } else if(\"footage\" == 'templates') {\n                if(\"\" === '') {\n                    $.ajax({\n                        method: \"POST\",\n                        url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                        contentType: \"application\/json\",\n                        data: JSON.stringify({\n                            query: `query TemplatesList($payload: TemplatesByTermSearchPayload!) {\n                                templatesList(payload: $payload) {\n                                    nameForUrl\n                                    id\n                                    name\n                                    isNew\n                                    artistName\n                                    thumbnailUrl\n                                    previewVideoFileUrl\n                                }\n                            }`,\n                            variables: `{\n                                \"payload\": {\n                                    \"page\": 1,\n                                    \"take\": 2,\n                                    \"sortBy\": \"1\",\n                                    \"categories\": null,\n                                    \"searchTerms\": \"slow motion\"\n                                }\n                            }`,\n                        })\n                    }).done(function (res) {\n                        if(res == '') {\n                            console.log('none');\n                        } else {\n                            console.log('templates list: ', res);\n                            var data = res.data.templatesList;\n                            if ($(\"#69d059e411e08\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d059e411e08\");\n                            } else if ($(\"#69d059e411e08\").length && data.length == 0) {\n                                $(\"#69d059e411e08\").empty().append('<div class=\"noClipsError\">No clips were found.<\/div>');\n                            }\n                        }\n                    });\n                    } else if(\"\" !== '') {\n                    $.ajax({\n                        method: \"POST\",\n                        url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                        contentType: \"application\/json\",\n                        data: JSON.stringify({\n                            query: `query Template($ids: [String!]!, $page: Int!, $take: Int!) {\n\t\t\t\t\t\t\t\ttemplatesByIds(ids: $ids, page: $page, take: $take) {\n\t\t\t\t\t\t\t\t\tnameForUrl\n                                    id\n                                    name\n                                    isNew\n                                    artistName\n                                    thumbnailUrl\n                                    previewVideoFileUrl\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}`,\n                            variables: `{\n                                \"ids\": [\"\"],\n                                \"page\": 1,\n                                \"take\": 1\n\t\t\t\t\t\t\t}`,\n                        })\n                    }).done(function (res) {\n                        if(res == '') {\n                            console.log('none');\n                        } else {\n                            console.log('specific template: ', res);\n                            var data = res.data.templatesByIds[0];\n                            if ($(\"#69d059e411e08\").length && data !== '') {\n                                createClipsGrid(data, \"69d059e411e08\");\n                            } else if ($(\"#69d059e411e08\").length && data.length == '') {\n                                $(\"#69d059e411e08\").empty().append('<div class=\"noClipsError\">No clips were found.<\/div>');\n                            }\n                        }\n                    });\n                }\n            }\n\n            function createClipsGrid(data, clipsContainerId){\n                const container = $(\"#\" + clipsContainerId);\n                let playerSrc = '';\n\n                $.each(data, function(index, clip) {\n                    if(\"\" !== '') { \/\/ if this is a request for a specific clip by id - then the data is not an array of clips but only one clip and that's why the \"clip\" variable is actually the \"data\"\n                        index = 0\n                        clip = data;\n                    }\n                    if ((index) < 2) {\n                        \/\/ clip container\n                        const clipContainer = $(\"<div>\").addClass(\"clipContainer \");\n                        \/\/ new badge\n                        if (clip.isNew) {\n                            clipContainer.append('<span class=\"isNewBadge\">NEW<\/span>');\n                        }\n                        \/\/ video\n                        let videoElement = document.createElement('video');\n                        videoElement.setAttribute('playsinline', '');\n                        videoElement.setAttribute('webkit-playsinline', '');\n                        videoElement.setAttribute('x5-playsinline', '');\n                        videoElement.setAttribute('preload', 'auto');\n                        \n                        clipContainer.append(videoElement);\n                        \/\/ clip name and artist name\n                        let clipName = '';\n                        let artistName = '';\n                        if(\"footage\" == 'footage') {\n                            clipName = clip.clipNameForUrl;\n                            clipName = clipName.replace(\/-\/g, \", \");\n                            clipName = $(\"<a>\").addClass(\"clipName\").attr(\"href\", \"https:\/\/artlist.io\/stock-footage\/clip\/\" + clip.clipNameForUrl + \"\/\" + clip.id + \"?download=1&utm_source=blog\").attr(\"target\", \"_blank\").text(clipName);\n                            artistName = $(\"<div>\").addClass(\"artistName\").text('By ' + clip.filmMakerDisplayName + '');\n                        } else if(\"footage\" == 'templates') {\n                            clipName = $(\"<a>\").addClass(\"clipName\").attr(\"href\", \"https:\/\/artlist.io\/video-templates\/\" + clip.nameForUrl + \"\/\" + clip.id + \"?download=1&utm_source=blog\").attr(\"target\", \"_blank\").text(clip.name);\n                            artistName = $(\"<div>\").addClass(\"artistName\").text('By ' + clip.artistName + '');\n                        }\n                        const clipNames = $(\"<span>\").addClass(\"clipNames\").append(clipName, artistName);\n                        \/\/ download button\n                        let clipDownload = '';\n                        if(\"footage\" == 'footage') {\n                            clipDownload = $(\"<a>\").addClass(\"clipDownload\").attr(\"href\", \"https:\/\/artlist.io\/stock-footage\/clip\/\" + clip.clipNameForUrl + \"\/\" + clip.id + \"?download=1&utm_source=blog\").attr(\"target\", \"_blank\").html('<i class=\"icon download white\"><\/i>');\n                        } else if(\"footage\" == 'templates') {\n                            clipDownload = $(\"<a>\").addClass(\"clipDownload\").attr(\"href\", \"https:\/\/artlist.io\/video-templates\/\" + clip.nameForUrl + \"\/\" + clip.id + \"?download=1&utm_source=blog\").attr(\"target\", \"_blank\").html('<i class=\"icon download white\"><\/i>');\n                        }\n                        \/\/ overlay\n                        const overlay = $(\"<div>\").addClass(\"overlay\");\n                        overlay.append(clipNames, clipDownload);\n\n                        \/\/ APPEND ALL ELEMENTS INTO AUDIO PLAYER CONTAINER\n                        clipContainer.append(videoElement, overlay);\n\n                        \/\/ if this is a preview of only one specific clip (by id)\n                        if(\"\" !== '') {\n                            $(container).addClass(\"clipContainerSingular\")\n                        }\n\n                        \/\/ append audio player container into main playlist container\n                        container.append(clipContainer[0]);\n\n                        if(\"footage\" == 'footage') {\n                            playerSrc =  clip.clipPath;\n                        } else if(\"footage\" == 'templates') {\n                            playerSrc =  clip.previewVideoFileUrl;\n                        }\n                        const player = videojs(videoElement, {\n                            muted: true,\n                            autoplay: true,\n                        });\n\n                        player.src({\n                            src: playerSrc,\n                            type: 'application\/x-mpegURL'\n                        });\n\n                        \/* SEGMENT EVENTS *\/\n                        const special_data = getProps();\n\n                        \/* media played *\/\n                        var $videoElement = $(videoElement);\n                        $videoElement.on('play', function() {\n                            var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                            var assetId = clip.id;\n                            var artist = clip.filmMakerDisplayName || clip.artistName;\n                            var asset_type = null;\n                            if(\"footage\" == 'footage') {\n                                asset_type = 'footage';\n                            } else if(\"footage\" == 'templates') {\n                                asset_type = 'template';\n                            }\n                            analytics.track(\"media played\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        });\n\n                        \/* media paused *\/\n                        var $videoElement = $(videoElement);\n                        $videoElement.on('pause', function() {\n                            var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                            var assetId = clip.id;\n                            var artist = clip.filmMakerDisplayName || clip.artistName;\n                            var asset_type = null;\n                            if(\"footage\" == 'footage') {\n                                asset_type = 'footage';\n                            } else if(\"footage\" == 'templates') {\n                                asset_type = 'template';\n                            }\n                            analytics.track(\"media paused\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        });\n\n                        \/* media viewed *\/\n                        const observer = new IntersectionObserver(entries => {\n                            entries.forEach(entry => {\n                                if (entry.isIntersecting) {\n                                    var assetId = clip.id;\n                                    var artist = clip.filmMakerDisplayName || clip.artistName;\n                                    var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                                    var asset_type = null;\n                                    if(\"footage\" == 'footage') {\n                                        asset_type = 'footage';\n                                    } else if(\"footage\" == 'templates') {\n                                        asset_type = 'template';\n                                    }\n                                    analytics.track(\"media viewed\", {\n                                        asset_id: assetId || null,\n                                        asset_type: asset_type || null,\n                                        click_source: 'player',\n                                        artist: artist || null,\n                                        title: title || null,\n                                        genre: null,\n                                        ...special_data,\n                                    });\n                                    observer.unobserve(entry.target);\n                                }\n                            });\n                        }, {\n                            threshold: 0.5\n                        });\n                        observer.observe($videoElement[0]);\n\n                        \/* media downloaded *\/\n                        $videoElement.closest('.clipContainer').find('.clipName').on('click', function() {\n                            var assetId = clip.id;\n                            var artist = clip.filmMakerDisplayName || clip.artistName;\n                            var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                            var asset_type = null;\n                            if(\"footage\" == 'footage') {\n                                asset_type = 'footage';\n                            } else if(\"footage\" == 'templates') {\n                                asset_type = 'template';\n                            }\n                            analytics.track(\"media downloaded\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        });\n                        $videoElement.closest('.clipContainer').find('.clipDownload').on('click', function() {\n                            var assetId = clip.id;\n                            var artist = clip.filmMakerDisplayName || clip.artistName;\n                            var title = clip.clipNameForUrl ? clip.clipNameForUrl.replace(\/-\/g, \", \") : clip.name;\n                            var asset_type = null;\n                            if(\"footage\" == 'footage') {\n                                asset_type = 'footage';\n                            } else if(\"footage\" == 'templates') {\n                                asset_type = 'template';\n                            }\n                            analytics.track(\"media downloaded\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        });\n\n                        \/\/ check screen size\n                        var mobileScreen = window.matchMedia('(max-width: 767px)');\n                        if (mobileScreen.matches) { \/\/ mobile\n                            const observer = new IntersectionObserver(function(entries) {\n                                entries.forEach(entry => {\n                                    if (entry.isIntersecting) {\n                                        player.play(); \/\/ Play the video when it enters the viewport\n                                    } else {\n                                        player.pause(); \/\/ Pause the video when it goes out of the viewport\n                                    }\n                                });\n                            });\n                            observer.observe(videoElement);\n                        } else { \/\/ desktop\n                            clipContainer.on('mouseenter', function() {\n                                player.play();\n                            });\n\n                            clipContainer.on('mouseleave', function() {\n                                player.pause();\n                            });\n                        }\n\n                    }\n                    if(\"\" !== '') { \/\/ if this is a request for a specific clip by id - then break out of loop after first time bc it's not an array\n                        return false;\n                    }\n                });\n            }\n\n        });\n    <\/script>\n\n    \n\n\n\n<p>L\u2019unica correzione che puoi fare in post \u00e8 l\u2019interpolazione del tempo. \u00c8 una funzione che permette di cambiare il frame rate della clip sfruttando l\u2019optical flow per ricreare i fotogrammi mancanti. Pu\u00f2 sembrare complicato, ma provandola ti accorgerai della differenza. L\u2019alternativa all\u2019optical flow \u00e8 il frame blending, che unisce due fotogrammi vicini per ridurre gli scatti, allungando di fatto la clip. Usa il frame blending per clip rallentate al 50% o pi\u00f9.<\/p>\n\n\n\n<p>Se hai girato in slow motion per applicare speed ramps, ecco un consiglio da professionista: usa il motion blur. I plugin di motion blur per FCPX sono ottimi per aggiungere una sfocatura che rende pi\u00f9 fluide le transizioni. Per esempio, se stai filmando un surfista che prende il volo sulla cresta di un\u2019onda e vuoi rallentare la velocit\u00e0 proprio mentre salta, applica il motion blur durante la transizione dal 100% al 50% o meno. \u00c8 un modo semplice per dare un tocco professionale e migliorare la qualit\u00e0 delle tue riprese.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusione<\/h2>\n\n\n\n<p>Sfrutta gli effetti drammatici e l\u2019impatto visivo dello slow motion, fai attenzione al frame rate durante le riprese e il montaggio, e non dimenticare di arricchire i tuoi video con i contenuti stock della vasta libreria di Artlist. Troverai tanti clip slow e super slow motion, da cascate nebbiose a esperimenti scientifici in studio.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Il video in slow motion pu\u00f2 avere diversi scopi per un filmmaker. Lo slow motion \u00e8 spesso usato per enfatizzare le emozioni e creare atmosfera, ma \u00e8 molto presente anche nei film d\u2019azione e nei documentari naturalistici. Ad esempio, un\u2019esplosione al rallentatore o il battito d\u2019ali di un colibr\u00ec hanno un impatto visivo straordinario. Realizzare [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":32678,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"categories":[724],"tags":[1450,1451,1452],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Come girare video in slow motion | Artlist<\/title>\n<meta name=\"description\" content=\"Scopri come realizzare video in slow motion: luci, videocamere, frame rate e montaggio per creare effetti rallentati sorprendenti.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Come girare video in slow motion | Artlist\" \/>\n<meta property=\"og:description\" content=\"Scopri come realizzare video in slow motion: luci, videocamere, frame rate e montaggio per creare effetti rallentati sorprendenti.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/\" \/>\n<meta property=\"og:site_name\" content=\"Artlist Blog\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/Globalgirltravels\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-25T08:21:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-08T13:19:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1721\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jessica Peterson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/ggirltravels\" \/>\n<meta name=\"twitter:label1\" content=\"Scritto da\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jessica Peterson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/\"},\"author\":{\"name\":\"Jessica Peterson\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#\/schema\/person\/4cf1dcfc0b9a842464a579b686cbfe19\"},\"headline\":\"Come girare in slow-motion\",\"datePublished\":\"2024-03-25T08:21:34+00:00\",\"dateModified\":\"2025-07-08T13:19:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/\"},\"wordCount\":1622,\"publisher\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#organization\"},\"keywords\":[\"#camera\",\"frame rate\",\"Slow Motion\"],\"articleSection\":[\"Produzione e realizzazione cinematografica\"],\"inLanguage\":\"it-IT\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/\",\"name\":\"Come girare video in slow motion | Artlist\",\"isPartOf\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#website\"},\"datePublished\":\"2024-03-25T08:21:34+00:00\",\"dateModified\":\"2025-07-08T13:19:33+00:00\",\"description\":\"Scopri come realizzare video in slow motion: luci, videocamere, frame rate e montaggio per creare effetti rallentati sorprendenti.\",\"breadcrumb\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/new-blog.artlist.io\/blog\/it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Produzione e realizzazione cinematografica\",\"item\":\"https:\/\/new-blog.artlist.io\/blog\/it\/produzione-e-realizzazione-cinematografica\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Come girare in slow-motion\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#website\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/it\/\",\"name\":\"Artlist Blog\",\"description\":\"Just artlist blog website\",\"publisher\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/new-blog.artlist.io\/blog\/it\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#organization\",\"name\":\"Artlist Blog\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/it\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/10\/artlist-blog-logo.svg\",\"contentUrl\":\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/10\/artlist-blog-logo.svg\",\"width\":143,\"height\":28,\"caption\":\"Artlist Blog\"},\"image\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/it\/#\/schema\/person\/4cf1dcfc0b9a842464a579b686cbfe19\",\"name\":\"Jessica Peterson\",\"description\":\"Jessica Peterson is a travel and documentary filmmaker with a background in journalism and marketing. She runs Purple Noon Productions from sunny Los Angeles. She has 20 years of experience producing content in 114 cities and 25 countries. In 2016, she directed and produced her own documentary about her then-home of Guam. Her clients include CNN, United Airlines, Southwest Airlines, Matador Network, and Tastemade.\",\"sameAs\":[\"https:\/\/www.facebook.com\/Globalgirltravels\",\"https:\/\/instagram.com\/globalgirltravels\",\"https:\/\/www.linkedin.com\/in\/jessica-peterson-21a0a63b\",\"https:\/\/twitter.com\/https:\/\/twitter.com\/ggirltravels\",\"https:\/\/www.youtube.com\/channel\/UCuQsQU7nDCPc6mDUVwsiLtA\"],\"url\":\"https:\/\/new-blog.artlist.io\/blog\/it\/author\/jessica-peterson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Come girare video in slow motion | Artlist","description":"Scopri come realizzare video in slow motion: luci, videocamere, frame rate e montaggio per creare effetti rallentati sorprendenti.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/","og_locale":"it_IT","og_type":"article","og_title":"Come girare video in slow motion | Artlist","og_description":"Scopri come realizzare video in slow motion: luci, videocamere, frame rate e montaggio per creare effetti rallentati sorprendenti.","og_url":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/","og_site_name":"Artlist Blog","article_author":"https:\/\/www.facebook.com\/Globalgirltravels","article_published_time":"2024-03-25T08:21:34+00:00","article_modified_time":"2025-07-08T13:19:33+00:00","og_image":[{"width":1721,"height":600,"url":"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL.jpg","type":"image\/jpeg"}],"author":"Jessica Peterson","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/ggirltravels","twitter_misc":{"Scritto da":"Jessica Peterson","Tempo di lettura stimato":"8 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/#article","isPartOf":{"@id":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/"},"author":{"name":"Jessica Peterson","@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#\/schema\/person\/4cf1dcfc0b9a842464a579b686cbfe19"},"headline":"Come girare in slow-motion","datePublished":"2024-03-25T08:21:34+00:00","dateModified":"2025-07-08T13:19:33+00:00","mainEntityOfPage":{"@id":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/"},"wordCount":1622,"publisher":{"@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#organization"},"keywords":["#camera","frame rate","Slow Motion"],"articleSection":["Produzione e realizzazione cinematografica"],"inLanguage":"it-IT"},{"@type":"WebPage","@id":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/","url":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/","name":"Come girare video in slow motion | Artlist","isPartOf":{"@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#website"},"datePublished":"2024-03-25T08:21:34+00:00","dateModified":"2025-07-08T13:19:33+00:00","description":"Scopri come realizzare video in slow motion: luci, videocamere, frame rate e montaggio per creare effetti rallentati sorprendenti.","breadcrumb":{"@id":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/new-blog.artlist.io\/blog\/it\/come-girare-in-slow-motion\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/new-blog.artlist.io\/blog\/it\/"},{"@type":"ListItem","position":2,"name":"Produzione e realizzazione cinematografica","item":"https:\/\/new-blog.artlist.io\/blog\/it\/produzione-e-realizzazione-cinematografica\/"},{"@type":"ListItem","position":3,"name":"Come girare in slow-motion"}]},{"@type":"WebSite","@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#website","url":"https:\/\/new-blog.artlist.io\/blog\/it\/","name":"Artlist Blog","description":"Just artlist blog website","publisher":{"@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/new-blog.artlist.io\/blog\/it\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#organization","name":"Artlist Blog","url":"https:\/\/new-blog.artlist.io\/blog\/it\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#\/schema\/logo\/image\/","url":"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/10\/artlist-blog-logo.svg","contentUrl":"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/10\/artlist-blog-logo.svg","width":143,"height":28,"caption":"Artlist Blog"},"image":{"@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/new-blog.artlist.io\/blog\/it\/#\/schema\/person\/4cf1dcfc0b9a842464a579b686cbfe19","name":"Jessica Peterson","description":"Jessica Peterson is a travel and documentary filmmaker with a background in journalism and marketing. She runs Purple Noon Productions from sunny Los Angeles. She has 20 years of experience producing content in 114 cities and 25 countries. In 2016, she directed and produced her own documentary about her then-home of Guam. Her clients include CNN, United Airlines, Southwest Airlines, Matador Network, and Tastemade.","sameAs":["https:\/\/www.facebook.com\/Globalgirltravels","https:\/\/instagram.com\/globalgirltravels","https:\/\/www.linkedin.com\/in\/jessica-peterson-21a0a63b","https:\/\/twitter.com\/https:\/\/twitter.com\/ggirltravels","https:\/\/www.youtube.com\/channel\/UCuQsQU7nDCPc6mDUVwsiLtA"],"url":"https:\/\/new-blog.artlist.io\/blog\/it\/author\/jessica-peterson\/"}]}},"uagb_featured_image_src":{"full":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL.jpg",1721,600,false],"thumbnail":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL-150x150.jpg",150,150,true],"medium":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL-300x105.jpg",300,105,true],"medium_large":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL-768x268.jpg",768,268,true],"large":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL-1024x357.jpg",1024,357,true],"1536x1536":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL-1536x536.jpg",1536,536,true],"2048x2048":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/03\/How-to-shoot-in-slow-motion-XXL.jpg",1721,600,false]},"uagb_author_info":{"display_name":"Jessica Peterson","author_link":"https:\/\/new-blog.artlist.io\/blog\/it\/author\/jessica-peterson\/"},"uagb_comment_info":0,"uagb_excerpt":"Il video in slow motion pu\u00f2 avere diversi scopi per un filmmaker. Lo slow motion \u00e8 spesso usato per enfatizzare le emozioni e creare atmosfera, ma \u00e8 molto presente anche nei film d\u2019azione e nei documentari naturalistici. Ad esempio, un\u2019esplosione al rallentatore o il battito d\u2019ali di un colibr\u00ec hanno un impatto visivo straordinario. Realizzare&hellip;","_links":{"self":[{"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/posts\/46647"}],"collection":[{"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/comments?post=46647"}],"version-history":[{"count":2,"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/posts\/46647\/revisions"}],"predecessor-version":[{"id":46715,"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/posts\/46647\/revisions\/46715"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/media\/32678"}],"wp:attachment":[{"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/media?parent=46647"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/categories?post=46647"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/it\/wp-json\/wp\/v2\/tags?post=46647"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}