<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Video to Images and back in ffmpeg!]]></title><description><![CDATA[<p dir="auto">I used this today to try and find a frame showing a blinking error dialog, but wasnt successful, anyways here it is!</p>
<pre><code class="language-sh">ffmpeg -i video.mp4 -r 30 frame%d.png
</code></pre>
<ul>
<li>-r is the FPS</li>
<li>the %d is a nice iterator, works in fish and bash apparently</li>
</ul>
<h2>Images to video</h2>
<p dir="auto">Useful for timelapses!</p>
<pre><code class="language-sh">#!/bin/sh

fps=10

ffmpeg \
	-framerate $fps \
	-pattern_type glob \
	-i '*.jpg' \
	-c:v libsvtav1 \
	-crf 20 -preset 6 \
	-vf "scale=-2:1080" \
	timelapse.mp4
</code></pre>
]]></description><link>https://forum.ieu.app/topic/c7239d9c-bebb-4991-b73c-babee16520ca/video-to-images-and-back-in-ffmpeg</link><generator>RSS for Node</generator><lastBuildDate>Sat, 05 Sep 2026 17:38:10 GMT</lastBuildDate><atom:link href="https://forum.ieu.app/topic/c7239d9c-bebb-4991-b73c-babee16520ca.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 03 Sep 2026 00:49:59 GMT</pubDate><ttl>60</ttl></channel></rss>