-
Updated
May 16, 2020 - Swift
dsp
Here are 725 public repositories matching this topic...
As code on master is Python3 only depndency on six should be removed and affected code needs to be adapted to use Python3 constructs.
- Consolidate Python examples notebook merging more examples from https://github.com/MTG/essentia-tutorial.
Also consider:
- TensorFlow auto-tagging and classification examples
- Audio problems algorithms examples
- Monophonic pitch detection
- SuperFlux
- Visualize various onset detection functions
- Constant-Q
- Real time analysis of an audio stream
Having read the Faust documentation, it is unclear what is the best way to get host tempo (BPM, speed etc) into a plugin DSP.
I am referring to DSP code that is compiled with the faust2/plugin/ scripts.
Can this be made clearer in the documentation?
I would like to propose the below adjustments to the installation guide.
Building on Debian-based distros
git clone git://github.com/jgaeddert/liquid-dsp.git
cd liquid-dsp
./bootstrap.sh
./configure
make
sudo make install
cd ..
sudo apt-get install qt5-default libfftw3-dev cmake pkg-config
mkdir build
cd build
cmake ..
cd ..
make
sudo make install
Tks
Motivations from this issue from Sporth.
dmetro has a few shortcomings which should be specified in the documentation.
Mainly, the things I wish to bring up:
- sample accuracy vs sample precision (and how the latter is more important in this context)
- why dmetro adds one sample to the duration in the seconds to
-
Updated
Jun 25, 2020 - C++
-
Features. Update page. Among other things, add audio backends and formats. -
Upgrading. Add new "Upgrading" section. Provide instruction for upgrading from 0.1 to 0.2 (URIs, options, API). -
Network protocols. Add "Formats" section with links to RFCs for URIs (base, file, network) and SDP. Add RTCP and RTSP to the "Protocols" section. -
Data flow. Update "sender pipeli
Pressing the right click button a windows keyboard when editing the name of a new node, creates a dark grey box that glitches out when moving nodes around over it and doesn't disappear.
Edit: Added pictures for clarity

 when resolved.
-
Updated
Jun 5, 2017 - Objective-C
-
Updated
Jun 6, 2020 - SuperCollider
-
Updated
Jan 29, 2020 - C
-
Updated
Jun 7, 2020 - TypeScript
-
Updated
May 7, 2020 - HTML
-
Updated
Jul 13, 2020 - C++
Better DDoc
Now that we have auto-generated doc with http://dplug.dpldocs.info/dplug.html the docs should be more welcoming.
-
Updated
Jul 5, 2020 - C++
-
Updated
Jul 11, 2020 - C++
-
Updated
Apr 29, 2020 - C++
-
Updated
Mar 3, 2020 - Python
Install location?
Expected behavior
Readme or installer or website does not mention where amsynth is installed to when users run the automatic packaged installer. I cannot find it.
Actual behavior
Running the Mac .pkg installer works, the installer completes successfully. However, I can't find the amsynth binary. There is no binary amsynth in /Applications or in home directory or in /usr or
Preset navigator
Improve this page
Add a description, image, and links to the dsp topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the dsp topic, visit your repo's landing page and select "manage topics."


Description
STFT allocates an output buffer, but sometimes you might want to have it compute directly into an existing buffer. For example, in griffin-lim, the method alternates stft/istft for each iterate, which is then discarded. It would be better if we could give it an
out=variable, which it would use instead of allocating a new buffer; this way, we could cut down on redundant mem