5 <meta name="viewport" content="width=device-width" />
6 <link rel="icon" href="/favicon.svg" />
7 <title>ayo reis</title>
13 font-feature-settings: "ss07", "ss08";
14 src: url("/inter.woff2");
20 font-feature-settings: "ss07", "ss08";
21 src: url("/inter-italic.woff2");
25 box-sizing: border-box;
36 text-transform: lowercase;
37 background-color: #f77ee5;
40 :where(h2, h3, p, pre, ul):not(:first-child) {
49 white-space: pre-wrap;
58 list-style-position: inside;
67 background-color: black;
73 border-top: 4px dashed black;
75 > article > header > h3 {
83 <p>Hey there, I'm Ayo!</p>
84 <p>Here are some projects I'm working on: <a href="https://git.ayoreis.com" target="_blank">git.ayoreis.com</a>.</p>
85 <p>(the background colour is #f77ee5 btw :3)</p>
90 <time>17 September 2025</time>
91 <h3>Speed up video in FFmpeg</h3>
94 <pre><code>ffmpeg -i input.mkv -vf "setpts=PTS/60" -an output.mp4</code></pre>
97 <li><code>-i input.mkv</code> input file</li>
98 <li><code>-vf "setpts=PTS/60"</code> video filter, set <a href="https://en.wikipedia.org/wiki/Presentation_timestamp" target="_blank">presentation timespamp</a></li>
99 <li><code>-an</code> no audio (unless you speed up audio too, the output's length will stay the same)</li>
100 <li><code>output.mp4</code> output file and format</li>