{"id":3394,"date":"2024-03-25T08:21:34","date_gmt":"2024-03-25T08:21:34","guid":{"rendered":"https:\/\/new-blog.artlist.io\/?p=3394"},"modified":"2025-09-02T08:25:59","modified_gmt":"2025-09-02T08:25:59","slug":"shooting-slow-motion-videos","status":"publish","type":"post","link":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/","title":{"rendered":"How to shoot in slow-motion"},"content":{"rendered":"\n<p>Slow-motion video can accomplish different things for a filmmaker. Slo-mo is often used to dramatize emotion and set a mood, but it&#8217;s also used in action films and nature videos. For example, there&#8217;s a huge visual impact in slow-motion of an explosion\u2019s pyrotechnics or the wingbeat of a hummingbird.<\/p>\n\n\n\n<p>Shooting high-quality slow-motion used to be impossible without expensive cinema cameras, but the democratization of content creation has only been possible because cameras have gotten cheaper and faster. And with the advent of the iPhone and its 240 fps (frames per second), even super slo-mo is possible.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is slow-motion?<\/h2>\n\n\n\n<p>Video is nothing more than multiple still images or frames stitched together in quick succession, creating the illusion of motion. This is why <a href="\&quot;https:\/\/artlist.io\/blog\/how-to-use-frame-rates\/\&quot;" target=\"_blank\" rel=\"noopener\">frame rates<\/a>&nbsp;matter. The frame rate is the rate at which the camera records images. Most video is displayed at 24 to 30 frames per second. You can think of a video sequence like a flipbook. If you flip 24 to 30 pages of a book in one second, the images appear to be in motion.<\/p>\n\n\n\n    <div class=\"clipsContainer\" id=\"69d07a3531f2b\"><\/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 ($(\"#69d07a3531f2b\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d07a3531f2b\");\n                            } else if ($(\"#69d07a3531f2b\").length && data.length == 0) {\n                                $(\"#69d07a3531f2b\").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 ($(\"#69d07a3531f2b\").length && data !== '') {\n                                createClipsGrid(data, \"69d07a3531f2b\");\n                            } else if ($(\"#69d07a3531f2b\").length && data.length == '') {\n                                $(\"#69d07a3531f2b\").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 ($(\"#69d07a3531f2b\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d07a3531f2b\");\n                            } else if ($(\"#69d07a3531f2b\").length && data.length == 0) {\n                                $(\"#69d07a3531f2b\").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 ($(\"#69d07a3531f2b\").length && data !== '') {\n                                createClipsGrid(data, \"69d07a3531f2b\");\n                            } else if ($(\"#69d07a3531f2b\").length && data.length == '') {\n                                $(\"#69d07a3531f2b\").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>If you want that motion to appear slower, you need more images to make up the 24p timeline. For example, if you record 60 frames per second, you can slow it down by half; 120 frames can be retimed to 25%, and so on. The more frames per second you can record, the more detailed and sharp your slow-motion will appear. You can slow 960 fps down to 3%, creating super slow motion.<\/p>\n\n\n\n<p>Can you slow down footage that wasn&#8217;t shot in a frame rate higher than 30 fps? Technically, yes, you can, but it won&#8217;t look good. It will look choppy and stuttered. That&#8217;s why you need to pay attention to frame rate when shooting. It&#8217;s not usually a problem you can fix in post!<\/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\":\"How to shoot slow-motion on your camera\",\"description\":\"Shooting in slow motion can elevate the visual appeal of your videos, adding dramatic flair and highlighting details that might otherwise go unnoticed. \",\"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\">How to shoot slow-motion on your camera<\/h2><p class=\"uagb-howto-desc-text\">Shooting in slow motion can elevate the visual appeal of your videos, adding dramatic flair and highlighting details that might otherwise go unnoticed. <\/p><h4 class=\"uagb-howto-req-steps-text\">Here are the steps to help you capture compelling slow-motion footage:<\/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>Step 1<\/strong><\/div><p class=\"uagb-how-to-step-description\">Choose the Right Equipment: Start with a camera that can shoot at high frame rates. You&#8217;ll also need good lighting and a stable tripod to prevent shaky footage.<\/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>Step 2<\/strong><\/div><p class=\"uagb-how-to-step-description\">Frame Rate Settings: For standard slow motion, aim for 60fps, but for more dramatic effects, you can go up to 1,000fps.<\/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>Step 3<\/strong><\/div><p class=\"uagb-how-to-step-description\">Shutter Speed: For the best results, your shutter speed should double your frame rate. If you&#8217;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.<br><\/p><\/div><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-how-to-step uagb-how-to-step-wrap uagb-block-bd81b6bb\"><div class=\"uagb-step-image-content-wrap uag-image-position-above-title\"><div class=\"uagb-step-content-wrap\"><div class=\"uagb-how-to-step-name\"><strong>Step 4<\/strong><\/div><p class=\"uagb-how-to-step-description\">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&#8217;s a dynamic action scene or a detailed close-up.<\/p><\/div><\/div><\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Pro tip:<\/h3>\n\n\n\n<p>Creating slow-motion footage is more than just a technical process; it&#8217;s an opportunity to add depth and emotion to your videos. Take the time to experiment with different frame rates and subjects to see what works best for the story you want to tell.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to shoot slow-motion on your phone<\/h2>\n\n\n\n<ol>\n<li>&nbsp;Locate the frame rate settings. Select a frame rate of 60 fps or higher. Some phones simply indicate the option as &#8220;slo-mo&#8221; or &#8220;slow motion.&#8221; Keep in mind that slo-mo clips are bigger in file size, so it&#8217;s better to limit them to 10 or so seconds in length.<\/li>\n\n\n\n<li>Keep the camera steady. You don&#8217;t want to cause the camera to lose focus or blur your image through motion. Plan your shot beforehand, framing your subject precisely, then tap the focus square to lock focus. Practice shooting people or objects you can direct and control, such as hair blowing in the wind or water pouring out of a pitcher into a glass. Then, move on to shooting more dynamic subjects like athletes and animals.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">The best cameras for slow-motion<\/h2>\n\n\n\n<p>Whether you\u2019re just starting out, looking to upgrade, or need professional-grade equipment \u2014 here are some great slow-motion cameras:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Beginner<\/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\">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.<br><\/p><p class=\"uagb-rating-author\"><br>Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Slow-motion video quality (1080p\/120fps)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-daf40eed-0-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-daf40eed-0-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-daf40eed-0-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-daf40eed-0-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-daf40eed-0-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-daf40eed-0-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Stabilization (No 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>Resolution for slow-mo (No 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>Ease of use for creators<\/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\">Summary<\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">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.<br><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.<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\">Intermediate<\/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\">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.<\/p><p class=\"uagb-rating-author\">\u2013 Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Slow-motion video quality (4K\/120fps &amp; 1080p\/240fps)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-59e76c18-0-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-59e76c18-0-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-59e76c18-0-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-59e76c18-0-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-0-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-59e76c18-0-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Stabilization (3-Axis Gimbal)<\/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>Resolution for slow-mo (4K\/120fps supported)<\/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>Ease of use for creators<\/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\">Summary<\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">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.<br><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<br><br><\/p><div class=\"uagb_review_average\"><span class=\"uagb_review_rating\">4.3<\/span><div class=\"uagb_review_average_stars\" style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-59e76c18-average-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-59e76c18-average-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-59e76c18-average-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-59e76c18-average-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-59e76c18-average-4\"><rect height=\"150\" width=\"37.5\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-59e76c18-average-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><\/div><\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Professional<\/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\">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.<\/p><p class=\"uagb-rating-author\">\u2013 Josh Edwards<\/p><div class=\"uagb_review_entry\"><div>Slow-motion video quality (4K\/120fps, 10-bit)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-0-4\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-35d5b5fd-0-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Stabilization (IBIS + Lens 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>Resolution for slow-mo (No 8K\/60fps)<\/div><div style=\"margin-left:auto;min-width:120px\"><div style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-0\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star0\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-0)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-1\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star1\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-1)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-2\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star2\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-2)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-3\"><rect height=\"150\" width=\"150\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star3\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-3)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-35d5b5fd-2-4\"><rect height=\"150\" width=\"0\" y=\"0\" x=\"0\" fill=\"#fff\"><\/rect><\/mask><\/defs><path fill=\"#888888\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><path class=\"star\" id=\"star4\" mask=\"url(#uagb_review_star_filter-35d5b5fd-2-4)\" fill=\"#eeee00\" stroke-width=\"2.5\" d=\"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z\" stroke=\"#000000\"><\/path><\/svg><\/div><\/div><\/div><div class=\"uagb_review_entry\"><div>Ease of use for creators<\/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\">Summary<\/p><div class=\"uagb_review_overall_value\"><p class=\"uagb_review_summary_desc\">The Canon EOS R5 offers top-tier slow-motion with stunning 4K\/120fps 10-bit video, excellent autofocus, and powerful in-body stabilization, making it a really strong choice for professional creatives. However, overheating during extended 4K 120fps sessions and the lack of audio recording in this mode do slightly limit its practicality for long shoots.\u00a0<br><br>Despite those caveats, it&#8217;s one of the best mirrorless cameras for high-quality, cinematic slow motion.<br><br><\/p><div class=\"uagb_review_average\"><span class=\"uagb_review_rating\">4.3<\/span><div class=\"uagb_review_average_stars\" style=\"display:flex;flex-direction:flex-row\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"20\" width=\"20\" viewBox=\"0 0 150 150\"><defs><mask id=\"uagb_review_star_filter-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\n\n<h2 class=\"wp-block-heading\">How to edit slo-mo footage<\/h2>\n\n\n\n<p>You don&#8217;t need pro <a href=\"https:\/\/artlist.io\/software\">editing software<\/a> anymore to handle slo-mo video, though you may want to consider that file sizes will be heftier, and pro software gives you the option to create lightweight proxy files and is all-around more robust. For a few phone clips, take advantage of built-in Android and Apple apps. For pro work or long-form, you&#8217;ll want to use editing software like Adobe Premiere, Final Cut Pro X, DaVinci Resolve, or Adobe After Effects, to name a few.<\/p>\n\n\n\n<p>When slowing down footage in your timeline, you&#8217;ll need to do a bit of math.<\/p>\n\n\n\n<p>Here&#8217;s a cheat sheet that spells out frame rates and their respective lengths:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Frame rate<\/th><th>Length<\/th><\/tr><\/thead><tbody><tr><td>30 fps<\/td><td>1 second<\/td><\/tr><tr><td>60 fps<\/td><td>2 seconds<\/td><\/tr><tr><td>120 fps<\/td><td>4 seconds<\/td><\/tr><tr><td>240 fps<\/td><td>8 seconds<\/td><\/tr><tr><td>480 fps<\/td><td>16 seconds<\/td><\/tr><tr><td>960 fps<\/td><td>32 seconds<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>If your timeline is 24p, you\u2019ll need to evenly divide your recorded frame rate by 24 to determine the speed at which your footage can be reduced. Same thing if your timeline is 30p. Try to evenly divide to get the correct retiming percentage, or you may have half-frames that cause the footage to look choppy.<\/p>\n\n\n\n    <div class=\"clipsContainer\" id=\"69d07a353207d\"><\/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 ($(\"#69d07a353207d\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d07a353207d\");\n                            } else if ($(\"#69d07a353207d\").length && data.length == 0) {\n                                $(\"#69d07a353207d\").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 ($(\"#69d07a353207d\").length && data !== '') {\n                                createClipsGrid(data, \"69d07a353207d\");\n                            } else if ($(\"#69d07a353207d\").length && data.length == '') {\n                                $(\"#69d07a353207d\").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 ($(\"#69d07a353207d\").length && data.length > 0) {\n                                createClipsGrid(data, \"69d07a353207d\");\n                            } else if ($(\"#69d07a353207d\").length && data.length == 0) {\n                                $(\"#69d07a353207d\").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 ($(\"#69d07a353207d\").length && data !== '') {\n                                createClipsGrid(data, \"69d07a353207d\");\n                            } else if ($(\"#69d07a353207d\").length && data.length == '') {\n                                $(\"#69d07a353207d\").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>The one little bit of fixing you can do in post is time interpolation. It\u2019s a setting that allows you to change the clip\u2019s frame rate by leveraging optical flow to interpolate missing frames. That may sound quite complicated, but experiment with it, and you\u2019ll see. The alternative to the optical flow setting is frame blending, which merges two neighboring frames to reduce stutter, essentially stretching out the footage. Stick to frame blending for clips that are at 50% speed or higher.<\/p>\n\n\n\n<p>If you\u2019ve shot slo-mo so you can employ speed ramps, here\u2019s a pro tip: apply motion blur. Motion blur plugins for FCPX work well to add a touch of blur to smooth out transitions. So, if you\u2019re shooting a surfer cresting a wave and want to ramp down the speed just as he catches air, apply motion blur in that transition from 100% speed to 50% or less. It\u2019s an easy way to add a pro touch and elevate the quality of your footage.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Take advantage of the dramatic effects and visual impact of shooting slo-mo, pay attention to frame rate both while you shoot and edit, and don\u2019t forget to include stock footage from Artlist\u2019s extensive library. You\u2019ll find various slo-mo and super slo-mo video clips, from misty waterfalls to science studio experiments.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Slow-motion video can accomplish different things for a filmmaker. Slo-mo is often used to dramatize emotion and set a mood, but it&#8217;s also used in action films and nature videos. For example, there&#8217;s a huge visual impact in slow-motion of an explosion\u2019s pyrotechnics or the wingbeat of a hummingbird. Shooting high-quality slow-motion used to be [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":25816,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"categories":[5],"tags":[550,237,236,128],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to shoot slow motion videos | Artlist<\/title>\n<meta name=\"description\" content=\"Learn how to make slow motion videos. From lighting to cameras for slow motion, frame rate to editing, take all the necessary steps for creating your own stunning slo-mo.\" \/>\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\/shooting-slow-motion-videos\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to shoot slow motion videos | Artlist\" \/>\n<meta property=\"og:description\" content=\"Learn how to make slow motion videos. From lighting to cameras for slow motion, frame rate to editing, take all the necessary steps for creating your own stunning slo-mo.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/\" \/>\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-09-02T08:25:59+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=\"6 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\/shooting-slow-motion-videos\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/\"},\"author\":{\"name\":\"Jessica Peterson\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/person\/4cf1dcfc0b9a842464a579b686cbfe19\"},\"headline\":\"How to shoot in slow-motion\",\"datePublished\":\"2024-03-25T08:21:34+00:00\",\"dateModified\":\"2025-09-02T08:25:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/\"},\"wordCount\":1577,\"publisher\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#organization\"},\"keywords\":[\"#camera\",\"frame rate\",\"Slow Motion\",\"video gear\"],\"articleSection\":[\"Production &amp; Filmmaking\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/\",\"name\":\"How to shoot slow motion videos | Artlist\",\"isPartOf\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#website\"},\"datePublished\":\"2024-03-25T08:21:34+00:00\",\"dateModified\":\"2025-09-02T08:25:59+00:00\",\"description\":\"Learn how to make slow motion videos. From lighting to cameras for slow motion, frame rate to editing, take all the necessary steps for creating your own stunning slo-mo.\",\"breadcrumb\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/new-blog.artlist.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Production &amp; Filmmaking\",\"item\":\"https:\/\/new-blog.artlist.io\/blog\/production-filmmaking\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to shoot in slow-motion\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#website\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/\",\"name\":\"Artlist Blog\",\"description\":\"Just artlist blog website\",\"publisher\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/new-blog.artlist.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#organization\",\"name\":\"Artlist Blog\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#\/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\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#\/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\/author\/jessica-peterson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to shoot slow motion videos | Artlist","description":"Learn how to make slow motion videos. From lighting to cameras for slow motion, frame rate to editing, take all the necessary steps for creating your own stunning slo-mo.","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\/shooting-slow-motion-videos\/","og_locale":"en_US","og_type":"article","og_title":"How to shoot slow motion videos | Artlist","og_description":"Learn how to make slow motion videos. From lighting to cameras for slow motion, frame rate to editing, take all the necessary steps for creating your own stunning slo-mo.","og_url":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/","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-09-02T08:25:59+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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/#article","isPartOf":{"@id":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/"},"author":{"name":"Jessica Peterson","@id":"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/person\/4cf1dcfc0b9a842464a579b686cbfe19"},"headline":"How to shoot in slow-motion","datePublished":"2024-03-25T08:21:34+00:00","dateModified":"2025-09-02T08:25:59+00:00","mainEntityOfPage":{"@id":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/"},"wordCount":1577,"publisher":{"@id":"https:\/\/new-blog.artlist.io\/blog\/#organization"},"keywords":["#camera","frame rate","Slow Motion","video gear"],"articleSection":["Production &amp; Filmmaking"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/","url":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/","name":"How to shoot slow motion videos | Artlist","isPartOf":{"@id":"https:\/\/new-blog.artlist.io\/blog\/#website"},"datePublished":"2024-03-25T08:21:34+00:00","dateModified":"2025-09-02T08:25:59+00:00","description":"Learn how to make slow motion videos. From lighting to cameras for slow motion, frame rate to editing, take all the necessary steps for creating your own stunning slo-mo.","breadcrumb":{"@id":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/new-blog.artlist.io\/blog\/shooting-slow-motion-videos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/new-blog.artlist.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Production &amp; Filmmaking","item":"https:\/\/new-blog.artlist.io\/blog\/production-filmmaking\/"},{"@type":"ListItem","position":3,"name":"How to shoot in slow-motion"}]},{"@type":"WebSite","@id":"https:\/\/new-blog.artlist.io\/blog\/#website","url":"https:\/\/new-blog.artlist.io\/blog\/","name":"Artlist Blog","description":"Just artlist blog website","publisher":{"@id":"https:\/\/new-blog.artlist.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/new-blog.artlist.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/new-blog.artlist.io\/blog\/#organization","name":"Artlist Blog","url":"https:\/\/new-blog.artlist.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new-blog.artlist.io\/blog\/#\/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\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/new-blog.artlist.io\/blog\/#\/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\/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\/author\/jessica-peterson\/"},"uagb_comment_info":0,"uagb_excerpt":"Slow-motion video can accomplish different things for a filmmaker. Slo-mo is often used to dramatize emotion and set a mood, but it&#8217;s also used in action films and nature videos. For example, there&#8217;s a huge visual impact in slow-motion of an explosion\u2019s pyrotechnics or the wingbeat of a hummingbird. Shooting high-quality slow-motion used to be&hellip;","_links":{"self":[{"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/posts\/3394"}],"collection":[{"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/comments?post=3394"}],"version-history":[{"count":50,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/posts\/3394\/revisions"}],"predecessor-version":[{"id":44229,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/posts\/3394\/revisions\/44229"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/media\/25816"}],"wp:attachment":[{"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/media?parent=3394"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/categories?post=3394"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/tags?post=3394"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}