This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A simple limiter | |
from sounddevice import Stream, CallbackStop | |
from time import sleep | |
from numpy import array, random, zeros | |
import matplotlib.pyplot as plt | |
################################### Constants ################################## | |
fs = 44100 # Hz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <cmath> | |
#include <memory> | |
#include <vector> | |
#include <cassert> | |
namespace sp { | |
/** |
NewerOlder