{"id":46615,"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-08T10:39:40","modified_gmt":"2025-07-08T10:39:40","slug":"como-gravar-videos-em-camera-lenta","status":"publish","type":"post","link":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/","title":{"rendered":"Como filmar em c\u00e2mera lenta"},"content":{"rendered":"\n<p>O v\u00eddeo em c\u00e2mera lenta pode ter diferentes prop\u00f3sitos para um cineasta. A c\u00e2mera lenta \u00e9 frequentemente usada para dramatizar emo\u00e7\u00f5es e criar um clima, mas tamb\u00e9m \u00e9 usada em filmes de a\u00e7\u00e3o e v\u00eddeos de natureza. Por exemplo, a c\u00e2mera lenta proporciona um enorme impacto visual ao fotografar a pirotecnia de uma explos\u00e3o ou o bater de asas de um beija-flor.<\/p>\n\n\n\n<p>Filmar em c\u00e2mera lenta de alta qualidade costumava ser imposs\u00edvel sem c\u00e2meras de cinema caras, mas a democratiza\u00e7\u00e3o da cria\u00e7\u00e3o de conte\u00fado s\u00f3 foi poss\u00edvel porque as c\u00e2meras ficaram mais baratas e r\u00e1pidas. E com o advento do iPhone e seus 240 fps (quadros por segundo), at\u00e9 mesmo a superc\u00e2mera lenta \u00e9 poss\u00edvel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u00a0O que \u00e9 c\u00e2mera lenta?<\/h2>\n\n\n\n<p>V\u00eddeo nada mais \u00e9 do que m\u00faltiplas imagens est\u00e1ticas ou quadros costurados em r\u00e1pida sucess\u00e3o, criando a ilus\u00e3o de movimento. \u00c9 por isso que as <a href="\&quot;https:\/\/artlist.io\/blog\/how-to-use-frame-rates\/\&quot;" target=\"_blank\" rel=\"noopener\">taxas de quadros<\/a>\u00a0s\u00e3o importantes. Os fps s\u00e3o a velocidade com que a c\u00e2mera grava imagens. A maioria dos v\u00eddeos \u00e9 exibida a uma taxa de 24 a 30 quadros por segundo. Pense em uma sequ\u00eancia de v\u00eddeo como um flipbook. Se voc\u00ea virar de 24 a 30 p\u00e1ginas de um livro em um segundo, as imagens parecer\u00e3o estar em movimento.<\/p>\n\n\n\n    <div class=\"clipsContainer\" id=\"69d07ac796dad\"><\/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 ($(\"#69d07ac796dad\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d07ac796dad\");\n                            } else if ($(\"#69d07ac796dad\").length && data.length == 0) {\n                                $(\"#69d07ac796dad\").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 ($(\"#69d07ac796dad\").length && data !== '') {\n                                createClipsGrid(data, \"69d07ac796dad\");\n                            } else if ($(\"#69d07ac796dad\").length && data.length == '') {\n                                $(\"#69d07ac796dad\").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 ($(\"#69d07ac796dad\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d07ac796dad\");\n                            } else if ($(\"#69d07ac796dad\").length && data.length == 0) {\n                                $(\"#69d07ac796dad\").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 ($(\"#69d07ac796dad\").length && data !== '') {\n                                createClipsGrid(data, \"69d07ac796dad\");\n                            } else if ($(\"#69d07ac796dad\").length && data.length == '') {\n                                $(\"#69d07ac796dad\").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 quiser que o movimento pare\u00e7a mais lento, voc\u00ea precisa de mais imagens para compor a cronologia de 24p. Por exemplo, se voc\u00ea gravar 60 quadros por segundo, poder\u00e1 reduzi-lo pela metade; 120 quadros podem ser reprogramados para 25%, e assim por diante. Quanto mais quadros por segundo voc\u00ea gravar, mais detalhada e n\u00edtida sua c\u00e2mera lenta parecer\u00e1. Voc\u00ea pode reduzir 960 fps para 3%, criando uma superc\u00e2mera lenta.<\/p>\n\n\n\n<p>\u00c9 poss\u00edvel diminuir a velocidade de uma filmagem que n\u00e3o foi gravada com fps superior a 30 fps? Tecnicamente, sim, \u00e9 poss\u00edvel, mas n\u00e3o ficar\u00e1 bom. Ficar\u00e1 entrecortado e com falhas. \u00c9 por isso que voc\u00ea precisa prestar aten\u00e7\u00e3o aos fps ao gravar. Geralmente, n\u00e3o \u00e9 um problema que se possa corrigir na p\u00f3s-produ\u00e7\u00e3o!<\/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\":\"Como fotografar em c\u00e2mera lenta com sua c\u00e2mera\",\"description\":\"Filmar em c\u00e2mera lenta pode elevar o apelo visual dos seus v\u00eddeos, adicionando um toque dram\u00e1tico e destacando detalhes que, de outra forma, passariam despercebidos. Aqui est\u00e3o os passos para ajudar voc\u00ea a capturar imagens envolventes em c\u00e2mera lenta:\",\"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\">Como fotografar em c\u00e2mera lenta com sua c\u00e2mera<\/h2><p class=\"uagb-howto-desc-text\">Filmar em c\u00e2mera lenta pode elevar o apelo visual dos seus v\u00eddeos, adicionando um toque dram\u00e1tico e destacando detalhes que, de outra forma, passariam despercebidos. Aqui est\u00e3o os passos para ajudar voc\u00ea a capturar imagens envolventes em c\u00e2mera lenta:<\/p><h4 class=\"uagb-howto-req-steps-text\">Aqui est\u00e3o os passos para ajudar voc\u00ea a capturar imagens atraentes em c\u00e2mera lenta:<\/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\">Escolha o equipamento certo: comece com uma c\u00e2mera que possa gravar em altas taxas de quadros. Voc\u00ea tamb\u00e9m precisar\u00e1 de boa ilumina\u00e7\u00e3o e um trip\u00e9 est\u00e1vel para evitar imagens tremidas.<\/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\">Configura\u00e7\u00f5es de fps: para c\u00e2mera lenta padr\u00e3o, tente usar 60 fps, mas para efeitos mais dram\u00e1ticos, voc\u00ea pode ir at\u00e9 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\">Velocidade do obturador: para melhores resultados, a velocidade do obturador deve dobrar os fps. Se estiver filmando a 60 qps, defina a velocidade do obturador para 1\/120; para 120 qps, defina para 1\/240. Isso ajuda a evitar desfoque de movimento e garante uma reprodu\u00e7\u00e3o em c\u00e2mera lenta mais suave.<\/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>Passo 4<\/strong><\/div><p class=\"uagb-how-to-step-description\">Planeje sua tomada: Imagens em c\u00e2mera lenta podem dar \u00eanfase ao movimento e aos detalhes, ent\u00e3o planeje sua tomada para aproveitar ao m\u00e1ximo esse efeito. Considere como a c\u00e2mera lenta aprimorar\u00e1 sua hist\u00f3ria visual, seja uma cena de a\u00e7\u00e3o din\u00e2mica ou um close detalhado.<\/p><\/div><\/div><\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Dica profissional:<\/h3>\n\n\n\n<p>Criar v\u00eddeos em c\u00e2mera lenta \u00e9 mais do que um processo t\u00e9cnico; \u00e9 uma oportunidade de adicionar profundidade e emo\u00e7\u00e3o aos seus v\u00eddeos. Reserve um tempo para experimentar diferentes taxas de quadros e temas para ver o que funciona melhor para a hist\u00f3ria que voc\u00ea deseja contar.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Como filmar em c\u00e2mera lenta no seu telefone<\/h2>\n\n\n\n<ol>\n<li>Localize as configura\u00e7\u00f5es de fps. Selecione fps de 60 ou superior. Alguns celulares simplesmente indicam a op\u00e7\u00e3o como &#8220;c\u00e2mera lenta&#8221; ou &#8220;c\u00e2mera lenta&#8221;. Lembre-se de que clipes em c\u00e2mera lenta s\u00e3o maiores em tamanho de arquivo, ent\u00e3o \u00e9 melhor limit\u00e1-los a cerca de 10 segundos de dura\u00e7\u00e3o.<\/li>\n\n\n\n<li>Mantenha a c\u00e2mera est\u00e1vel. Voc\u00ea n\u00e3o quer que a c\u00e2mera perca o foco ou borre a imagem devido ao movimento. Planeje a foto com anteced\u00eancia, enquadrando o objeto com precis\u00e3o e, em seguida, toque no quadrado de foco para travar o foco. Pratique fotografar pessoas ou objetos que voc\u00ea pode direcionar e controlar, como cabelos ao vento ou \u00e1gua caindo de uma jarra em um copo. Em seguida, passe a fotografar objetos mais din\u00e2micos, como atletas e animais.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">As melhores c\u00e2meras para filmar em c\u00e2mera lenta<\/h2>\n\n\n\n<p>N\u00e3o importa se voc\u00ea est\u00e1 apenas come\u00e7ando, quer fazer um upgrade ou precisa de equipamento de n\u00edvel profissional, aqui est\u00e3o algumas \u00f3timas c\u00e2meras de c\u00e2mera lenta:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Principiante<\/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\">Uma c\u00e2mera mirrorless compacta que oferece grava\u00e7\u00e3o Full HD a 120 qps. Ideal para criadores de conte\u00fado que precisam de uma op\u00e7\u00e3o econ\u00f4mica com sa\u00edda de imagem de alta qualidade e a flexibilidade de lentes intercambi\u00e1veis.<\/p><p class=\"uagb-rating-author\"><br>Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Qualidade de v\u00eddeo em c\u00e2mera lenta (1080p\/120 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-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>Estabiliza\u00e7\u00e3o (sem 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>Resolu\u00e7\u00e3o para c\u00e2mera lenta (sem 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>Facilidade de uso para criadores<\/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>Resumo<\/strong><\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">A Canon EOS R50 oferece um \u00f3timo ponto de partida para criadores interessados \u200b\u200bem conte\u00fado em c\u00e2mera lenta de alta qualidade. Ela suporta grava\u00e7\u00e3o em Full HD a at\u00e9 120 qps, permitindo reprodu\u00e7\u00e3o suave em c\u00e2mera lenta de 4x ou 5x \u2013 um recurso valioso para vlogs, B-roll e fotos criativas. No entanto, vale ressaltar que a c\u00e2mera lenta \u00e9 limitada \u00e0 resolu\u00e7\u00e3o de 1080p, sem o modo 4K de altos fps, o que pode decepcionar usu\u00e1rios que buscam os visuais mais n\u00edtidos em c\u00e2mera lenta.<br><br>A falta de estabiliza\u00e7\u00e3o de imagem no corpo (IBIS) significa que fotos em c\u00e2mera lenta com a c\u00e2mera na m\u00e3o podem exigir equipamentos de estabiliza\u00e7\u00e3o adicionais ou lentes com estabiliza\u00e7\u00e3o \u00f3ptica para evitar trepida\u00e7\u00f5es. Pelo seu pre\u00e7o, a R50 oferece uma experi\u00eancia de c\u00e2mera lenta envolvente, especialmente para criadores iniciantes.<br><\/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\">Intermedi\u00e1rio<\/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\">Esta pequena c\u00e2mera de a\u00e7\u00e3o \u00e9 perfeita para cinegrafistas de viagem ou vloggers, oferecendo v\u00eddeos em 4K a at\u00e9 120 qps e Full HD a at\u00e9 240 qps. Seu tamanho compacto, recursos dedicados de c\u00e2mera lenta e estabiliza\u00e7\u00e3o por gimbal a tornam uma excelente escolha para capturar v\u00eddeos profissionais em qualquer lugar.<\/p><p class=\"uagb-rating-author\">\u2013 Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Qualidade de v\u00eddeo em c\u00e2mera lenta (4K\/120 fps e 1080p\/240 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-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>Estabiliza\u00e7\u00e3o (Gimbal de 3 eixos)<\/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>Resolu\u00e7\u00e3o para c\u00e2mera lenta (suporte para 4K\/120 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-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>Facilidade de uso para criadores<\/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>Resumo<\/strong><\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">No geral, o DJI Pocket 3 representa uma melhoria substancial em rela\u00e7\u00e3o ao seu antecessor, o DJI Pocket 2. Ele oferece recursos superiores de c\u00e2mera lenta com 4K a 120 fps e 1080p a 240 fps. O gimbal de 3 eixos integrado proporciona imagens extremamente suaves, o que o torna ideal para filmagens em c\u00e2mera lenta com a c\u00e2mera na m\u00e3o. Usu\u00e1rios elogiaram seu desempenho mesmo em condi\u00e7\u00f5es desafiadoras, destacando sua inicializa\u00e7\u00e3o r\u00e1pida e a impressionante qualidade da c\u00e2mera lenta.<br><br>No entanto, embora a Pocket 3 se destaque em muitas \u00e1reas, alguns usu\u00e1rios notaram que obter filmagens em c\u00e2mera lenta ideais requer boas condi\u00e7\u00f5es de ilumina\u00e7\u00e3o, j\u00e1 que altas taxas de quadros podem exigir mais luz. Al\u00e9m disso, embora a c\u00e2mera ofere\u00e7a recursos avan\u00e7ados, ela ainda pode carecer de alguns controles manuais que usu\u00e1rios profissionais podem desejar.<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\"><strong><em>Profissional<\/em><\/strong><\/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\">Reconhecida por sua captura de v\u00eddeo em 8K RAW e at\u00e9 120 fps em 4K, a EOS R5 \u00e9 uma pot\u00eancia na produ\u00e7\u00e3o cinematogr\u00e1fica profissional. Ela oferece flexibilidade de p\u00f3s-produ\u00e7\u00e3o incompar\u00e1vel e rastreamento e foco inteligentes, tornando-se uma ferramenta essencial para cineastas que exigem desempenho de ponta em c\u00e2mera lenta.<\/p><p class=\"uagb-rating-author\">\u2013 Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Qualidade de v\u00eddeo em c\u00e2mera lenta (4K\/120 fps, 10 bits)<\/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>Estabiliza\u00e7\u00e3o (IBIS + lente IS)<\/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>Resolu\u00e7\u00e3o para c\u00e2mera lenta (sem 8K\/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-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>Facilidade de uso para criadores<\/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>Resumo<\/strong><\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">A Canon EOS R5 oferece c\u00e2mera lenta de ponta com impressionantes v\u00eddeos de 10 bits em 4K\/120 qps, excelente foco autom\u00e1tico e poderosa estabiliza\u00e7\u00e3o interna, tornando-a uma \u00f3tima op\u00e7\u00e3o para profissionais criativos. No entanto, o superaquecimento durante sess\u00f5es prolongadas em 4K a 120 qps e a falta de grava\u00e7\u00e3o de \u00e1udio neste modo limitam um pouco sua praticidade para filmagens longas.<br><br>Apesar dessas ressalvas, \u00e9 uma das melhores c\u00e2meras sem espelho para c\u00e2mera lenta cinematogr\u00e1fica de alta qualidade.<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=pt\" 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\/PT-Middle-Banner-get-the-best-creative-assets-for-your-videos-1140-1024x373.jpg\" alt=\"\" class=\"wp-image-35980\" srcset=\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/12\/PT-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\/PT-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\/PT-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\/PT-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\">Como editar filmagens em c\u00e2mera lenta<\/h2>\n\n\n\n<p>Voc\u00ea n\u00e3o precisa mais de um <a href=\"https:\/\/artlist.io\/software\">software de edi\u00e7\u00e3o profissional<\/a> <\/p>\n\n\n\n<p>para lidar com v\u00eddeos em c\u00e2mera lenta, embora possa considerar que os tamanhos dos arquivos ser\u00e3o maiores, e o software profissional oferece a op\u00e7\u00e3o de criar arquivos proxy leves e \u00e9 mais robusto em geral. Para alguns clipes de celular, aproveite os aplicativos integrados para Android e Apple. Para trabalhos profissionais ou v\u00eddeos longos, voc\u00ea vai querer usar softwares de edi\u00e7\u00e3o como Adobe Premiere, Final Cut Pro X, DaVinci Resolve ou Adobe After Effects, para citar alguns.<\/p>\n\n\n\n<p>Ao diminuir a velocidade de uma filmagem na sua cronologia, voc\u00ea precisar\u00e1 fazer um pouco de matem\u00e1tica.<\/p>\n\n\n\n<p>Aqui est\u00e1 uma folha de dicas que descreve as taxas de quadros e suas respectivas dura\u00e7\u00f5es:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Taxa de quadros<\/th><th>Comprimento<\/th><\/tr><\/thead><tbody><tr><td>30 fps<\/td><td>1 segundo<\/td><\/tr><tr><td>60 fps<\/td><td>2 segundos<\/td><\/tr><tr><td>120 fps<\/td><td>4 segundos<\/td><\/tr><tr><td>240 fps<\/td><td>8 segundos<\/td><\/tr><tr><td>480 fps<\/td><td>16 segundos<\/td><\/tr><tr><td>960 fps<\/td><td>32 segundos<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Se a sua cronologia for de 24p, voc\u00ea precisar\u00e1 dividir os fps por 24 para determinar a velocidade com que a filmagem pode ser reduzida. O mesmo vale para a sua cronologia de 30p. Tente dividir igualmente para obter a porcentagem correta de retemporiza\u00e7\u00e3o, ou voc\u00ea pode ter meios-quadros que far\u00e3o com que a filmagem pare\u00e7a entrecortada.<\/p>\n\n\n\n    <div class=\"clipsContainer\" id=\"69d07ac796f8a\"><\/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 ($(\"#69d07ac796f8a\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d07ac796f8a\");\n                            } else if ($(\"#69d07ac796f8a\").length && data.length == 0) {\n                                $(\"#69d07ac796f8a\").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 ($(\"#69d07ac796f8a\").length && data !== '') {\n                                createClipsGrid(data, \"69d07ac796f8a\");\n                            } else if ($(\"#69d07ac796f8a\").length && data.length == '') {\n                                $(\"#69d07ac796f8a\").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 ($(\"#69d07ac796f8a\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d07ac796f8a\");\n                            } else if ($(\"#69d07ac796f8a\").length && data.length == 0) {\n                                $(\"#69d07ac796f8a\").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 ($(\"#69d07ac796f8a\").length && data !== '') {\n                                createClipsGrid(data, \"69d07ac796f8a\");\n                            } else if ($(\"#69d07ac796f8a\").length && data.length == '') {\n                                $(\"#69d07ac796f8a\").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>A \u00fanica corre\u00e7\u00e3o que voc\u00ea pode fazer na p\u00f3s-produ\u00e7\u00e3o \u00e9 a interpola\u00e7\u00e3o temporal. \u00c9 uma configura\u00e7\u00e3o que permite alterar os fps do clipe, aproveitando o fluxo \u00f3ptico para interpolar quadros ausentes. Isso pode parecer bastante complicado, mas experimente e voc\u00ea ver\u00e1. A alternativa \u00e0 configura\u00e7\u00e3o de fluxo \u00f3ptico \u00e9 a mesclagem de quadros, que mescla dois quadros vizinhos para reduzir a trepida\u00e7\u00e3o, essencialmente esticando a filmagem. Use a mesclagem de quadros para clipes com velocidade de 50% ou superior.<\/p>\n\n\n\n<p>Se voc\u00ea filmou em c\u00e2mera lenta para poder usar rampas de velocidade, aqui vai uma dica profissional: aplique desfoque de movimento. Plugins de desfoque de movimento para FCPX funcionam bem para adicionar um toque de desfoque e suavizar as transi\u00e7\u00f5es. Portanto, se voc\u00ea estiver filmando um surfista subindo uma onda e quiser diminuir a velocidade assim que ele pegar ar, aplique desfoque de movimento nessa transi\u00e7\u00e3o de 100% para 50% ou menos. \u00c9 uma maneira f\u00e1cil de adicionar um toque profissional e elevar a qualidade da sua filmagem.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclus\u00e3o<\/h2>\n\n\n\n<p>Aproveite os efeitos dram\u00e1ticos e o impacto visual de filmar em c\u00e2mera lenta, preste aten\u00e7\u00e3o aos fps tanto durante a filmagem quanto na edi\u00e7\u00e3o, e n\u00e3o se esque\u00e7a de incluir v\u00eddeos do amplo acervo da Artlist. Voc\u00ea encontrar\u00e1 diversos videoclipes em c\u00e2mera lenta e super c\u00e2mera lenta, de cachoeiras enevoadas a experimentos em est\u00fadios cient\u00edficos.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>O v\u00eddeo em c\u00e2mera lenta pode ter diferentes prop\u00f3sitos para um cineasta. A c\u00e2mera lenta \u00e9 frequentemente usada para dramatizar emo\u00e7\u00f5es e criar um clima, mas tamb\u00e9m \u00e9 usada em filmes de a\u00e7\u00e3o e v\u00eddeos de natureza. Por exemplo, a c\u00e2mera lenta proporciona um enorme impacto visual ao fotografar a pirotecnia de uma explos\u00e3o ou [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":32680,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"categories":[951],"tags":[1435,1436,1437],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Como gravar v\u00eddeos em c\u00e2mera lenta | Artlist<\/title>\n<meta name=\"description\" content=\"Aprenda a fazer v\u00eddeos c\u00e2mera lenta. Das c\u00e2meras para c\u00e2mera lenta, dos FPS \u00e0 edi\u00e7\u00e3o, siga os passos para criar seu pr\u00f3prio v\u00eddeo em c\u00e2mera lenta.\" \/>\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\/pt\/como-gravar-videos-em-camera-lenta\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Como gravar v\u00eddeos em c\u00e2mera lenta | Artlist\" \/>\n<meta property=\"og:description\" content=\"Aprenda a fazer v\u00eddeos c\u00e2mera lenta. Das c\u00e2meras para c\u00e2mera lenta, dos FPS \u00e0 edi\u00e7\u00e3o, siga os passos para criar seu pr\u00f3prio v\u00eddeo em c\u00e2mera lenta.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/\" \/>\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-08T10:39:40+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=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jessica Peterson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/\"},\"author\":{\"name\":\"Jessica Peterson\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/#\/schema\/person\/4cf1dcfc0b9a842464a579b686cbfe19\"},\"headline\":\"Como filmar em c\u00e2mera lenta\",\"datePublished\":\"2024-03-25T08:21:34+00:00\",\"dateModified\":\"2025-07-08T10:39:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/\"},\"wordCount\":1944,\"publisher\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/#organization\"},\"keywords\":[\"#camera\",\"frame rate\",\"Slow Motion\"],\"articleSection\":[\"Produ\u00e7\u00e3o e cinematografia\"],\"inLanguage\":\"pt\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/\",\"name\":\"Como gravar v\u00eddeos em c\u00e2mera lenta | Artlist\",\"isPartOf\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/#website\"},\"datePublished\":\"2024-03-25T08:21:34+00:00\",\"dateModified\":\"2025-07-08T10:39:40+00:00\",\"description\":\"Aprenda a fazer v\u00eddeos c\u00e2mera lenta. Das c\u00e2meras para c\u00e2mera lenta, dos FPS \u00e0 edi\u00e7\u00e3o, siga os passos para criar seu pr\u00f3prio v\u00eddeo em c\u00e2mera lenta.\",\"breadcrumb\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/#breadcrumb\"},\"inLanguage\":\"pt\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Produ\u00e7\u00e3o e cinematografia\",\"item\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/producao-e-cinematografia\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Como filmar em c\u00e2mera lenta\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/#website\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/\",\"name\":\"Artlist Blog\",\"description\":\"Just artlist blog website\",\"publisher\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"pt\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/#organization\",\"name\":\"Artlist Blog\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/#\/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\/pt\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/pt\/#\/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\/pt\/author\/jessica-peterson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Como gravar v\u00eddeos em c\u00e2mera lenta | Artlist","description":"Aprenda a fazer v\u00eddeos c\u00e2mera lenta. Das c\u00e2meras para c\u00e2mera lenta, dos FPS \u00e0 edi\u00e7\u00e3o, siga os passos para criar seu pr\u00f3prio v\u00eddeo em c\u00e2mera lenta.","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\/pt\/como-gravar-videos-em-camera-lenta\/","og_locale":"pt_PT","og_type":"article","og_title":"Como gravar v\u00eddeos em c\u00e2mera lenta | Artlist","og_description":"Aprenda a fazer v\u00eddeos c\u00e2mera lenta. Das c\u00e2meras para c\u00e2mera lenta, dos FPS \u00e0 edi\u00e7\u00e3o, siga os passos para criar seu pr\u00f3prio v\u00eddeo em c\u00e2mera lenta.","og_url":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/","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-08T10:39:40+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":{"Written by":"Jessica Peterson","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/#article","isPartOf":{"@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/"},"author":{"name":"Jessica Peterson","@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/#\/schema\/person\/4cf1dcfc0b9a842464a579b686cbfe19"},"headline":"Como filmar em c\u00e2mera lenta","datePublished":"2024-03-25T08:21:34+00:00","dateModified":"2025-07-08T10:39:40+00:00","mainEntityOfPage":{"@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/"},"wordCount":1944,"publisher":{"@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/#organization"},"keywords":["#camera","frame rate","Slow Motion"],"articleSection":["Produ\u00e7\u00e3o e cinematografia"],"inLanguage":"pt"},{"@type":"WebPage","@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/","url":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/","name":"Como gravar v\u00eddeos em c\u00e2mera lenta | Artlist","isPartOf":{"@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/#website"},"datePublished":"2024-03-25T08:21:34+00:00","dateModified":"2025-07-08T10:39:40+00:00","description":"Aprenda a fazer v\u00eddeos c\u00e2mera lenta. Das c\u00e2meras para c\u00e2mera lenta, dos FPS \u00e0 edi\u00e7\u00e3o, siga os passos para criar seu pr\u00f3prio v\u00eddeo em c\u00e2mera lenta.","breadcrumb":{"@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/#breadcrumb"},"inLanguage":"pt","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/como-gravar-videos-em-camera-lenta\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/new-blog.artlist.io\/blog\/pt\/"},{"@type":"ListItem","position":2,"name":"Produ\u00e7\u00e3o e cinematografia","item":"https:\/\/new-blog.artlist.io\/blog\/pt\/producao-e-cinematografia\/"},{"@type":"ListItem","position":3,"name":"Como filmar em c\u00e2mera lenta"}]},{"@type":"WebSite","@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/#website","url":"https:\/\/new-blog.artlist.io\/blog\/pt\/","name":"Artlist Blog","description":"Just artlist blog website","publisher":{"@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/new-blog.artlist.io\/blog\/pt\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"pt"},{"@type":"Organization","@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/#organization","name":"Artlist Blog","url":"https:\/\/new-blog.artlist.io\/blog\/pt\/","logo":{"@type":"ImageObject","inLanguage":"pt","@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/#\/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\/pt\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/new-blog.artlist.io\/blog\/pt\/#\/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\/pt\/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\/pt\/author\/jessica-peterson\/"},"uagb_comment_info":0,"uagb_excerpt":"O v\u00eddeo em c\u00e2mera lenta pode ter diferentes prop\u00f3sitos para um cineasta. A c\u00e2mera lenta \u00e9 frequentemente usada para dramatizar emo\u00e7\u00f5es e criar um clima, mas tamb\u00e9m \u00e9 usada em filmes de a\u00e7\u00e3o e v\u00eddeos de natureza. Por exemplo, a c\u00e2mera lenta proporciona um enorme impacto visual ao fotografar a pirotecnia de uma explos\u00e3o ou&hellip;","_links":{"self":[{"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/posts\/46615"}],"collection":[{"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/comments?post=46615"}],"version-history":[{"count":3,"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/posts\/46615\/revisions"}],"predecessor-version":[{"id":46620,"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/posts\/46615\/revisions\/46620"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/media\/32680"}],"wp:attachment":[{"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/media?parent=46615"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/categories?post=46615"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/pt\/wp-json\/wp\/v2\/tags?post=46615"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}