{"id":38302,"date":"2025-08-16T09:24:44","date_gmt":"2025-08-16T16:24:44","guid":{"rendered":"https:\/\/cloudinary.com\/blog\/?p=38302"},"modified":"2025-08-16T09:24:45","modified_gmt":"2025-08-16T16:24:45","slug":"how-to-convert-a-video-into-still-images-automatically-with-url-examples","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/","title":{"rendered":"How to Convert a Video into Still Images (Automatically, with URL Examples)"},"content":{"rendered":"\n<p>Need to pull thumbnails, preview frames, or scene-specific stills from a video? Whether you&#8217;re building a media gallery, generating product snapshots, or just improving UX, converting video to images is a common requirement. But doing it manually is time-consuming. Let\u2019s explore how to automate the process and extract high-quality still images programmatically and efficiently.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Question:<\/strong><\/h2>\n\n\n\n<p>Hey everyone,<\/p>\n\n\n\n<p>I\u2019m working on a content site where users upload short videos. I\u2019d like to generate still images from each video for use as preview thumbnails or static placeholders.<\/p>\n\n\n\n<p>So here\u2019s my question: How can I convert a video into still images? Specifically, I\u2019m looking for:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A way to grab a single frame (e.g., at 2 seconds in)<\/li>\n\n\n\n<li>Bonus if I can extract multiple frames or use AI to pick a good one<\/li>\n\n\n\n<li>Ideally, something fast, dynamic, and automatable (not just FFmpeg scripting)<\/li>\n<\/ul>\n\n\n\n<p>I\u2019m already using Cloudinary for image delivery. Can I do this with their platform?<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Answer:<\/strong><\/h2>\n\n\n\n<p>Yes, and you don\u2019t need to write custom FFmpeg scripts or run a batch job to do it.<\/p>\n\n\n\n<p>With Cloudinary, you can dynamically extract still images from any video file using URL-based transformations. No extra setup, no processing delays, just clean, CDN-delivered images, right when you need them.<\/p>\n\n\n\n<p>Let\u2019s walk through it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Does &#8220;Converting Video to Still Images&#8221; Mean?<\/strong><\/h2>\n\n\n\n<p>It typically refers to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Extracting a single frame<\/strong> as a thumbnail or poster<\/li>\n\n\n\n<li><strong>Generating a series of frames<\/strong> for galleries or previews<\/li>\n\n\n\n<li><strong>Capturing keyframes<\/strong> for visual summaries<\/li>\n\n\n\n<li><strong>Using AI to pick meaningful frames<\/strong> (with face detection)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Extracting a Still Image from a Video with Cloudinary<\/strong><\/h2>\n\n\n\n<p>Cloudinary lets you extract a still frame at a specific timestamp using the so (start offset) transformation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Example: Get a still at 2 seconds<\/strong><\/h3>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml shcb-wrap-lines\">HTML\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">img<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/so_2\/sample.jpg\"<\/span> <span class=\"hljs-attr\">alt<\/span>=<span class=\"hljs-string\">\"Video Thumbnail\"<\/span> \/&gt;<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<ul class=\"wp-block-list\">\n<li><code>so_2<\/code> \u2192 Start offset at 2 seconds<\/li>\n\n\n\n<li>The <code>.jpg<\/code> extension tells Cloudinary to render it as an image<\/li>\n\n\n\n<li>Cloudinary automatically picks a high-quality still from that moment<\/li>\n<\/ul>\n\n\n\n<p><a href=\"https:\/\/cloudinary.com\/documentation\/video_manipulation_and_delivery#generating_images_from_videos\">Image from video docs \u2192<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Want a thumbnail at a specific size?<\/strong><\/h3>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml shcb-wrap-lines\">HTML\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">img<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/so_2,w_600,h_400,c_fill\/sample.jpg\"<\/span> \/&gt;<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<ul class=\"wp-block-list\">\n<li><code>w_600<\/code>,<code>h_400<\/code>,<code>c_fill<\/code> \u2192 Resize and crop the image<\/li>\n\n\n\n<li>Use <code>g_auto<\/code> or <code>g_face<\/code> to focus on key regions<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Multiple Thumbnails \/ Keyframe Extraction<\/strong><\/h3>\n\n\n\n<p>Need a series of thumbnails? Use the Cloudinary API to request multiple frames from different timestamps.<\/p>\n\n\n\n<p>Example using the Upload API:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript shcb-wrap-lines\">Shell\nPOST \/video\/upload\n\n{\n\n\u00a0\u00a0<span class=\"hljs-string\">\"public_id\"<\/span>: <span class=\"hljs-string\">\"product_demo\"<\/span>,\n\n\u00a0\u00a0<span class=\"hljs-string\">\"eager\"<\/span>: &#91;\n\n\u00a0\u00a0\u00a0\u00a0{ <span class=\"hljs-string\">\"format\"<\/span>: <span class=\"hljs-string\">\"jpg\"<\/span>, <span class=\"hljs-string\">\"transformation\"<\/span>: &#91; { <span class=\"hljs-string\">\"start_offset\"<\/span>: <span class=\"hljs-string\">\"3\"<\/span> } ] },\n\n\u00a0\u00a0\u00a0\u00a0{ <span class=\"hljs-string\">\"format\"<\/span>: <span class=\"hljs-string\">\"jpg\"<\/span>, <span class=\"hljs-string\">\"transformation\"<\/span>: &#91; { <span class=\"hljs-string\">\"start_offset\"<\/span>: <span class=\"hljs-string\">\"5\"<\/span> } ] },\n\n\u00a0\u00a0\u00a0\u00a0{ <span class=\"hljs-string\">\"format\"<\/span>: <span class=\"hljs-string\">\"jpg\"<\/span>, <span class=\"hljs-string\">\"transformation\"<\/span>: &#91; { <span class=\"hljs-string\">\"start_offset\"<\/span>: <span class=\"hljs-string\">\"10\"<\/span> } ] }\n\n\u00a0\u00a0]\n\n}<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\"><strong>Bonus: Auto-Detect Faces or Focus Points<\/strong><\/h2>\n\n\n\n<p>Want your stills to center on a face or main subject? Just add <code>g_face<\/code> or <code>g_auto<\/code>:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml shcb-wrap-lines\">HTML\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">img<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/so_2,c_crop,w_300,h_300,g_face\/sample.jpg\"<\/span> \/&gt;<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<ul class=\"wp-block-list\">\n<li>Cloudinary will scan the frame and crop around the detected face<\/li>\n\n\n\n<li>Great for profile videos, product closeups, or testimonials<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Use Cases for Video-to-Image Conversion<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Use Case<\/strong><\/td><td><strong>How Cloudinary Helps<\/strong><\/td><\/tr><tr><td><strong>Product previews<\/strong><\/td><td>Extract key frame from demo videos<\/td><\/tr><tr><td><strong>Hero banners<\/strong><\/td><td>Capture high-res still for header images<\/td><\/tr><tr><td><strong>Thumbnail grids<\/strong><\/td><td>Generate stills in consistent size<\/td><\/tr><tr><td><strong>Social cards<\/strong><\/td><td>Overlay text on extracted frame<\/td><\/tr><tr><td><strong>Visual search<\/strong><\/td><td>Tag extracted stills with AI<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>TL;DR: How to Convert a Video into Still Images<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Task<\/strong><\/td><td><strong>Cloudinary Solution<\/strong><\/td><\/tr><tr><td><strong>Extract one frame<\/strong><\/td><td>Add <code>so_2<\/code> to the video URL and use <code>.jpg<\/code> extension<\/td><\/tr><tr><td><strong>Resize\/crop thumbnail<\/strong><\/td><td>Use <code>w_<\/code>, <code>h_<\/code>, <code>c_<\/code>, <code>g_<\/code> parameters<\/td><\/tr><tr><td><strong>Get multiple frames<\/strong><\/td><td>Use <code>eager<\/code> transformations via Upload API<\/td><\/tr><tr><td><strong>Auto-detect subject<\/strong><\/td><td>Use <code>g_face<\/code> or <code>g_auto<\/code> in crop<\/td><\/tr><tr><td><strong>Optimize delivery<\/strong><\/td><td>Delivered via global CDN as optimized image<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Cloudinary makes it easy to extract, transform, and deliver still images from video dynamically, without manual editing or heavy scripts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Learn More<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\ud83d\udd17<a href=\"https:\/\/cloudinary.com\/documentation\/video_manipulation_and_delivery#generating_images_from_videos\"> Video-to-Image Docs<\/a><\/li>\n\n\n\n<li>\ud83d\udd17<a href=\"https:\/\/cloudinary.com\/documentation\/image_transformation_reference\"> Image Transformation Reference<\/a><\/li>\n<\/ul>\n\n\n\n<p>Generate and customize video thumbnails with just a few clicks. <a href=\"https:\/\/cloudinary.com\/users\/register_free\">Sign up with Cloudinary<\/a> to easily enhance the visuals of your videos.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Need to pull thumbnails, preview frames, or scene-specific stills from a video? Whether you&#8217;re building a media gallery, generating product snapshots, or just improving UX, converting video to images is a common requirement. But doing it manually is time-consuming. Let\u2019s explore how to automate the process and extract high-quality still images programmatically and efficiently. Question: [&hellip;]<\/p>\n","protected":false},"author":112,"featured_media":38303,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[423],"class_list":["post-38302","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-questions"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v26.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Convert a Video into Still Images (Automatically, with URL Examples)<\/title>\n<meta name=\"description\" content=\"Need to pull thumbnails, preview frames, or scene-specific stills from a video? Whether you&#039;re building a media gallery, generating product snapshots, or\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Convert a Video into Still Images (Automatically, with URL Examples)\" \/>\n<meta property=\"og:description\" content=\"Need to pull thumbnails, preview frames, or scene-specific stills from a video? Whether you&#039;re building a media gallery, generating product snapshots, or\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-16T16:24:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-16T16:24:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"jeromehidalgosanz\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/\"},\"author\":{\"name\":\"jeromehidalgosanz\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/87d542a9f3b665a624072d59748ecce1\"},\"headline\":\"How to Convert a Video into Still Images (Automatically, with URL Examples)\",\"datePublished\":\"2025-08-16T16:24:44+00:00\",\"dateModified\":\"2025-08-16T16:24:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/\"},\"wordCount\":561,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA\",\"keywords\":[\"Questions\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2025\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/\",\"url\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/\",\"name\":\"How to Convert a Video into Still Images (Automatically, with URL Examples)\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA\",\"datePublished\":\"2025-08-16T16:24:44+00:00\",\"dateModified\":\"2025-08-16T16:24:45+00:00\",\"description\":\"Need to pull thumbnails, preview frames, or scene-specific stills from a video? Whether you're building a media gallery, generating product snapshots, or\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Convert a Video into Still Images (Automatically, with URL Examples)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"name\":\"Cloudinary Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudinary.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\",\"name\":\"Cloudinary Blog\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"width\":312,\"height\":60,\"caption\":\"Cloudinary Blog\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/87d542a9f3b665a624072d59748ecce1\",\"name\":\"jeromehidalgosanz\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/21bd8bba3087dbeff42280210669b975ea98b59ca9f427e828f4b59c4bae58dd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/21bd8bba3087dbeff42280210669b975ea98b59ca9f427e828f4b59c4bae58dd?s=96&d=mm&r=g\",\"caption\":\"jeromehidalgosanz\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Convert a Video into Still Images (Automatically, with URL Examples)","description":"Need to pull thumbnails, preview frames, or scene-specific stills from a video? Whether you're building a media gallery, generating product snapshots, or","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:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/","og_locale":"en_US","og_type":"article","og_title":"How to Convert a Video into Still Images (Automatically, with URL Examples)","og_description":"Need to pull thumbnails, preview frames, or scene-specific stills from a video? Whether you're building a media gallery, generating product snapshots, or","og_url":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/","og_site_name":"Cloudinary Blog","article_published_time":"2025-08-16T16:24:44+00:00","article_modified_time":"2025-08-16T16:24:45+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA","type":"image\/jpeg"}],"author":"jeromehidalgosanz","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/"},"author":{"name":"jeromehidalgosanz","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/87d542a9f3b665a624072d59748ecce1"},"headline":"How to Convert a Video into Still Images (Automatically, with URL Examples)","datePublished":"2025-08-16T16:24:44+00:00","dateModified":"2025-08-16T16:24:45+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/"},"wordCount":561,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA","keywords":["Questions"],"inLanguage":"en-US","copyrightYear":"2025","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/","url":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/","name":"How to Convert a Video into Still Images (Automatically, with URL Examples)","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA","datePublished":"2025-08-16T16:24:44+00:00","dateModified":"2025-08-16T16:24:45+00:00","description":"Need to pull thumbnails, preview frames, or scene-specific stills from a video? Whether you're building a media gallery, generating product snapshots, or","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-convert-a-video-into-still-images-automatically-with-url-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Convert a Video into Still Images (Automatically, with URL Examples)"}]},{"@type":"WebSite","@id":"https:\/\/cloudinary.com\/blog\/#website","url":"https:\/\/cloudinary.com\/blog\/","name":"Cloudinary Blog","description":"","publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudinary.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudinary.com\/blog\/#organization","name":"Cloudinary Blog","url":"https:\/\/cloudinary.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","width":312,"height":60,"caption":"Cloudinary Blog"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/87d542a9f3b665a624072d59748ecce1","name":"jeromehidalgosanz","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/21bd8bba3087dbeff42280210669b975ea98b59ca9f427e828f4b59c4bae58dd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/21bd8bba3087dbeff42280210669b975ea98b59ca9f427e828f4b59c4bae58dd?s=96&d=mm&r=g","caption":"jeromehidalgosanz"}}]}},"jetpack_featured_media_url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1755360750\/How_to_convert_a_video_into_still_images\/How_to_convert_a_video_into_still_images.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/38302","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/users\/112"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/comments?post=38302"}],"version-history":[{"count":1,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/38302\/revisions"}],"predecessor-version":[{"id":38304,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/38302\/revisions\/38304"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/38303"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=38302"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=38302"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=38302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}