From 7453415bebe42d6b4244daa58f68e97b299e40a9 Mon Sep 17 00:00:00 2001 From: tillvit Date: Wed, 10 Jul 2024 11:20:27 -0700 Subject: [PATCH] More wiki spacing issues --- guide/auto-sync.md | 4 ++++ guide/scripting.md | 2 ++ 2 files changed, 6 insertions(+) diff --git a/guide/auto-sync.md b/guide/auto-sync.md index de04c863..6df82347 100644 --- a/guide/auto-sync.md +++ b/guide/auto-sync.md @@ -83,11 +83,13 @@ usually work well, but these can be tweaked for specific situations. ### Onsets **FFT Step** + The FFT step represents the amount of audio to analyze around a block. A higher value results in a more frequency-accurate, but a less time-accurate spectrogram. Additionally, a higher value will take longer to analyze. **Window Step** + The window step changes the number of blocks per second of audio. A lower value results in more time-accurate spectrograms, but may take more time and mess up tempo analysis. This value must be less than **FFT Step**. @@ -95,11 +97,13 @@ but may take more time and mess up tempo analysis. This value must be less than ### Tempogram **FFT Step** + The FFT step represents the amount of the onset graph to analyze around a block. A higher value results in more accurate tempos, but less accurate timings. Additionally, a higher value will take longer to analyze. **Window Step** + The window step changes the number of blocks per second of audio. A lower value results in more time-accurate tempograms, but may take more time. This value must be less than **FFT Step**. diff --git a/guide/scripting.md b/guide/scripting.md index 272bac2c..cd8d92fd 100644 --- a/guide/scripting.md +++ b/guide/scripting.md @@ -103,6 +103,8 @@ function stutterStops(beat, length, factor = 2) { ```