Files
2025-12-07 22:04:44 -05:00

171 lines
8.1 KiB
HTML

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Begin Jekyll SEO tag v2.8.0 -->
<title>stutter_pro</title>
<meta name="generator" content="Jekyll v3.10.0" />
<meta property="og:title" content="stutter_pro" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="The friendly multilateral video toolkit built for artists by artists." />
<meta property="og:description" content="The friendly multilateral video toolkit built for artists by artists." />
<link rel="canonical" href="http://localhost:4000/videobeaux/programs/effects/stutter_pro.html" />
<meta property="og:url" content="http://localhost:4000/videobeaux/programs/effects/stutter_pro.html" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="stutter_pro" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","description":"The friendly multilateral video toolkit built for artists by artists.","headline":"stutter_pro","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/videobeaux/assets/img/videobeaux.png"}},"url":"http://localhost:4000/videobeaux/programs/effects/stutter_pro.html"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/videobeaux/assets/css/style.css?v=5e23701ed3967d38bab12937d79f95fae74b2a53">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
<!-- Setup Google Analytics -->
<!-- You can set your favicon here -->
<!-- link rel="shortcut icon" type="image/x-icon" href="/videobeaux/favicon.ico" -->
<!-- end custom head snippets -->
</head>
<body>
<div class="wrapper">
<header>
<h1><a href="http://localhost:4000/videobeaux/">videobeaux</a></h1>
<img src="/videobeaux/assets/img/videobeaux.png" alt="Logo" />
<p>The friendly multilateral video toolkit built for artists by artists.</p>
<p class="view"><a href="https://github.com/schwwaaa/videobeaux">View the Project on GitHub <small>schwwaaa/videobeaux</small></a></p>
</header>
<section>
<h1 id="stutter_pro">stutter_pro</h1>
<h2 id="description">Description</h2>
<p>Applies a customizable frame-stutter effect where playback cadence is intentionally disrupted according to a user-defined stutter intensity.<br />
<code class="language-plaintext highlighter-rouge">stutter_pro</code> offers far more control than the simpler <code class="language-plaintext highlighter-rouge">nostalgic_stutter</code> or <code class="language-plaintext highlighter-rouge">overexposed_stutter</code> modules, allowing the editor to tune how aggressively the timeline “hiccups.”</p>
<h2 id="purpose">Purpose</h2>
<p><code class="language-plaintext highlighter-rouge">stutter_pro</code> is designed for creators who want:</p>
<ul>
<li>precise and adjustable frame stuttering,</li>
<li>rhythmic or tempo-based visual cadence disruption,</li>
<li>glitch-style jitter that can be subtle or extreme,</li>
<li>stylized motion breakdowns for music videos or experimental edits,</li>
<li>deterministic stutter behavior tied to a single argument.</li>
</ul>
<h2 id="how-it-works">How It Works</h2>
<ol>
<li><strong>Frame Retention / Skipping</strong><br />
Based on the <code class="language-plaintext highlighter-rouge">stutter</code> value, certain frames are duplicated or dropped.</li>
<li><strong>Pattern Generation</strong><br />
The effect may repeat, hold, or jitter frames depending on stutter intensity.</li>
<li><strong>Temporal Distortion</strong><br />
Motion becomes erratic, producing:
<ul>
<li>choppy sequences,</li>
<li>step-motion effects,</li>
<li>rhythmic pulse-style stutters.</li>
</ul>
</li>
<li><strong>Encoding</strong><br />
Output is encoded using Videobeaux global codec, pixel format, and CRF settings.</li>
</ol>
<h2 id="program-template">Program Template</h2>
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>videobeaux <span class="nt">-P</span> stutter_pro <span class="se">\</span>
<span class="nt">-i</span> input.mp4 <span class="se">\</span>
<span class="nt">-o</span> output.mp4 <span class="se">\</span>
<span class="nt">--stutter</span> VALUE
</code></pre></div></div>
<h2 id="arguments">Arguments</h2>
<ul>
<li><strong>stutter</strong> — Controls the intensity of the effect.<br />
Higher values produce more extreme frame skipping / duplication.</li>
</ul>
<h2 id="real-world-example">Real World Example</h2>
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>videobeaux <span class="nt">-P</span> stutter_pro <span class="se">\</span>
<span class="nt">-i</span> myvideo.mp4 <span class="se">\</span>
<span class="nt">-o</span> stutter_pro_styled.mp4 <span class="se">\</span>
<span class="nt">--stutter</span> EXAMPLE
</code></pre></div></div>
<h2 id="program-output">Program Output</h2>
<video controls="" preload="metadata" style="max-width:100%; border-radius:8px; margin:1em 0;">
<source src="https://github.com/schwwaaa/videobeaux/assets/7625379/03e234fb-d0fe-4d72-a11c-dff1bc59fa83" type="video/mp4" />
Your browser does not support the video tag.
</video>
<video controls="" preload="metadata" style="max-width:100%; border-radius:8px; margin:1em 0;">
<source src="https://github.com/schwwaaa/videobeaux/assets/7625379/e6d8c14a-9f20-4365-bb1f-5f473289a855" type="video/mp4" />
Your browser does not support the video tag.
</video>
<video controls="" preload="metadata" style="max-width:100%; border-radius:8px; margin:1em 0;">
<source src="https://github.com/schwwaaa/videobeaux/assets/7625379/864835ba-dc9d-4392-aa77-2cc062e2b700" type="video/mp4" />
Your browser does not support the video tag.
</video>
<h2 id="technical-notes">Technical Notes</h2>
<ul>
<li>High stutter values can dramatically change perceived rhythm and pacing.</li>
<li>Ideal for matching beat-synchronized edits by dialing stutter to musical subdivisions.</li>
<li>Heavy stuttering may result in harsh judder depending on the source frame rate.</li>
<li>Works well when paired with effects that react to cadence disruption, like <code class="language-plaintext highlighter-rouge">lsd_feedback</code>.</li>
</ul>
<h2 id="recommended-usage">Recommended Usage</h2>
<ul>
<li>Music videos requiring beat-sync visual pulses.</li>
<li>Experimental collage sequences with mechanical or robotic movement.</li>
<li>Hyper-stylized glitch breakdowns.</li>
<li>Rapid-cut montage moments needing added temporal chaos.</li>
<li>Loop creation when combined with <code class="language-plaintext highlighter-rouge">reverse</code> or <code class="language-plaintext highlighter-rouge">looper_pro</code>.</li>
</ul>
<h2 id="quality-tips">Quality Tips</h2>
<ul>
<li>Lower CRF retains crisp edges through stutter jumps.</li>
<li>Slight blur (<code class="language-plaintext highlighter-rouge">blur_pix</code>) can soften the harshness for dreamy styles.</li>
<li>Combine with <code class="language-plaintext highlighter-rouge">overexposed_stutter</code> for chaotic shockwave motion.</li>
<li>Use <code class="language-plaintext highlighter-rouge">speed</code> together with stutter to build complex rhythmic motion systems.</li>
<li>Preprocess with <code class="language-plaintext highlighter-rouge">frame_interpolate</code> if you want smoother slow-motion stutter artifacts.</li>
</ul>
</section>
<footer>
<p>This project is maintained by <a href="https://github.com/schwwaaa">schwwaaa</a></p>
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="/videobeaux/assets/js/scale.fix.js"></script>
</body>
</html>