Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
jsfxr [2023/12/04 01:24] – created renick | jsfxr [2024/08/04 21:38] (current) – renick | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== jsfxr: synthesizing sounds in the browser ====== | ====== jsfxr: synthesizing sounds in the browser ====== | ||
- | https:// | + | Access this browser-based synthesizer here: https:// |
- | Sfxr, programmed by [[http:// | + | Sfxr was programmed by [[http:// |
+ | |||
+ | <color # | ||
+ | |||
+ | <color # | ||
+ | |||
+ | The concept is to pass the output of a basic oscillator through an envelope and a few effects to generate a sound. Every time you change a parameter, the sound will be played so that you can audition it. | ||
Parameters and functions provided in jsfxr: | Parameters and functions provided in jsfxr: | ||
Line 18: | Line 24: | ||
- serialize/ | - serialize/ | ||
- Buttons (mutate, random, etc.) | - Buttons (mutate, random, etc.) | ||
+ | |||
+ | ===== Generator column (on the left) ===== | ||
+ | |||
+ | The random button randomizes all of the parameter settings, likely creating a totally new sound. | ||
+ | |||
+ | This column contains buttons for presets, which load parameter settings for sounds that correspond to the labels. After loading them, you can adjust the parameters to customize the sound. | ||
+ | |||
+ | The mutate button slightly changes all of the parameter settings, creating a variation of the previous settings. | ||
+ | |||
+ | ===== manual settings ===== | ||
+ | |||
+ | This section of the interface allows you to really customize the sound and control the parameters of synthesis. | ||
+ | |||
+ | ===== serialize/ | ||
+ | |||
+ | Use these to get the settings as text. Once they are there, you can modify them. This is good if you want to put in a specific value. Then you can load settings from text using the deserialize button. One way to use this is to make a sound, serialize it, and send it to your friend. Then your friend can paste it in and deserialize it to get the same sound as you. In this way, you can work on the same sound or variations together with a friend remotely. | ||
+ | |||
+ | ===== base waveform ===== | ||
+ | |||
+ | The base waveform at the top of the interface describes what initial oscillator will be used. This decides the original characteristic of the sound. | ||
+ | |||
+ | - square https:// | ||
+ | - sawtooth https:// | ||
+ | - sine https:// | ||
+ | - noise https:// | ||
+ | |||
+ | ===== Envelope ===== | ||
+ | |||
+ | [[envelopes|We' | ||
+ | |||
+ | ===== Frequency ===== | ||
+ | |||
+ | There are four frequency parameters: | ||
+ | - start frequency | ||
+ | - min freq. cutoff | ||
+ | - slide | ||
+ | - delta slide | ||
+ | |||
+ | ===== vibrato ===== | ||
+ | |||
+ | Vibrato is a kind of wobble to the frequency. https:// | ||
+ | |||
+ | Vibrato has two parameters, and you'll need to raise both to hear this effect: | ||
+ | - depth | ||
+ | - speed | ||
+ | |||
+ | ===== arpeggiation ===== | ||
+ | |||
+ | Arpeggiation repeats the sound at a new frequency, delayed in time. Most musical arpeggiators will repeat many times, but this one only adds one repeat. | ||
+ | |||
+ | Arpeggiation has two parameters: | ||
+ | - frequency mult | ||
+ | - change speed | ||
+ | |||
+ | ===== duty cycle ===== | ||
+ | |||
+ | [[https:// | ||
+ | - duty cycle as a percentage; you may feel that the higher the percentage, the " | ||
+ | - sweep as a percentage per second; the same seems to be true here: the higher the percentage, the fatter the sound. the lower the percentage, the more high-end details emerge. | ||
+ | |||
+ | ===== Retrigger ===== | ||
+ | |||
+ | Retrigger is a buggy one, I think. It's supposed to make the sound repeat many times quickly. I could only get it to work from around 10.8 Hz and above. Retrigger has only one parameter: | ||
+ | - rate, expressed in Hz; the higher the rate, the more quickly it retriggers | ||
+ | |||
+ | ===== flanger ===== | ||
+ | |||
+ | A [[https:// | ||
+ | |||
+ | Flanger has two parameters: | ||
+ | - offset: the bigger the offset, the more pronounced the effect becomes. | ||
+ | - sweep: introduces change over time, so that you get that "jet crossing the sky" effect particularly at around 4 msec/sec. | ||
+ | |||
+ | ===== low-pass filter ===== | ||
+ | |||
+ | A low-pass filter cuts high frequencies. The low-pass filter has three parameters: | ||
+ | - cutoff frequency: sounds below this frequency are preserved; sounds above it are reduced | ||
+ | - cutoff sweep: creates an envelope on the cutoff frequency, reducing it over time. The time specified is how long it takes the cutoff frequency to fall to its minimum value. Keep in mind the amplitude envelope; long values here may not be audible if the amplitude envelope is short. | ||
+ | - resonance: how strongly the frequency range near the cutoff frequency is boosted | ||
+ | |||
+ | ===== high-pass filter ===== | ||
+ | |||
+ | A high-pass filter cuts low frequencies. The high-pass filter has two parameters: | ||
+ | - cutoff frequency: sounds above this frequency are preserved; sounds below it are reduced | ||
+ | - cutoff sweep: creates an envelope on the cutoff frequency, reducing it over time. The time specified is how long it takes the cutoff frequency to fall to its minimum value. Keep in mind the amplitude envelope; long values here may not be audible if the amplitude envelope is short. | ||