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;
71 background-color: black;
77 border-top: 4px dashed black;
79 > article > header > h3 {
87 <p>Hey there, I'm Ayo!</p>
88 <p>Here are some projects I'm working on: <a href="https://git.ayoreis.com" target="_blank">git.ayoreis.com</a>.</p>
89 <p>(the background colour is #f77ee5 btw :3)</p>
94 <p><time datetime="2025-09-17">17 September 2025</time> (updated <time datetime="2025-09-18">18 September 2025</time>)</p>
95 <h3>Speed up video in FFmpeg</h3>
98 <pre><code>ffmpeg -i input.mkv -r 60 -vf "setpts=PTS/60" -an output.mp4</code></pre>
101 <li><code>-i input.mkv</code> input file</li>
102 <li><code>-r 60</code> frame rate</li>
103 <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>
104 <li><code>-an</code> no audio (unless you speed up audio too, the output's length will stay the same)</li>
105 <li><code>output.mp4</code> output file and format</li>