Coder Social home page Coder Social logo

sjaehn / blow Goto Github PK

View Code? Open in Web Editor NEW
17.0 4.0 1.0 1.65 MB

Blows out low sounds from below to spice up your music production with a special flavour.

License: GNU General Public License v3.0

Makefile 13.15% C++ 86.85%
lv2 plugin audio sampler

blow's Introduction

B.Low

B.Low is the unique sample-based sound generator plugin you always waited for. It blows out low sounds from below to spice up your music production with a special flavour. The high quality samples were gratefully provided by numerous international artists (see b-low).

screenshot

Released on April 1, 2022

Installation

Choose one of the following options:

a) Install the blow package for your system (once established)

b) Use the latest provided binaries

Unpack the provided blow-*.zip or blow-*.tar.xz from the latest release and copy the BLow.lv2 folder to your lv2 directory (depending on your system settings, ~/.lv2/, /usr/lib/lv2/, /usr/local/lib/lv2/, or ...).

c) Build your own binaries in the following three steps.

Step 1: Download the latest published version of Low. Or clone or download the master of this repository including the submodules. For git cloning use:

git clone --recurse-submodules https://github.com/sjaehn/BLow.git

Step 2: Install pkg-config and the development packages for x11, cairo, soundfile, and lv2 if not done yet. If you don't have already got the build tools (compilers, make, libraries) then install them too.

On Debian-based systems you may run:

sudo apt-get install build-essential
sudo apt-get install pkg-config libx11-dev libcairo2-dev libsndfile-dev lv2-dev

On Arch-based systems you may run:

sudo pacman -S base-devel
sudo pacman -S pkg-config libx11 cairo libsndfile lv2

Step 3: Building and installing into the default lv2 directory (/usr/local/lib/lv2/) is easy using make and make install. Simply call:

make
sudo make install

Optional: Standard make and make install parameters are supported. You may build a debugging version using make CXXFLAGS+=-g. For installation into an alternative directory (e.g., /usr/lib/lv2/), change the variable PREFIX while installing: sudo make install PREFIX=/usr. If you want to freely choose the install target directory, change the variable LV2DIR (e.g., make install LV2DIR=~/.lv2).

Running

After the installation Ardour, Carla, and any other LV2 host should automatically detect B.Low.

If jalv is installed, you can also call it using one of the graphical jalv executables (like jalv.gtk, or jalv.gtk3, or jalv.qt4, or jalv.qt5, depending on what is installed), like

jalv.gtk https://www.jahnichen.de/plugins/lv2/BLow

to run it stand-alone and connect it to the JACK system.

Acknowledgments

Samples provided by:

blow's People

Contributors

schnitzeltony avatar sjaehn avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

schnitzeltony

blow's Issues

Doesn't build on i386

Build BLow.lv2 GUI...../../src/BLow_GUI.cpp: In static member function 'static void BLow_GUI::valueChangedCallback(BEvents::Event*)':
../../src/BLow_GUI.cpp:192:53: error: no matching function for call to 'min(unsigned int, long unsigned int)'
  192 |      float value = std::min (vt->getValue() - 1, 9ul);
      |                                                     ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/string:40,
                 from ../../src/../BWidgets/BUtilities/to_string.hpp:21,
                 from ../../src/BLow_GUI.cpp:6:
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: candidate: 'template<class _Tp> const _Tp& std::min(const _Tp&, const _Tp&)'
  230 |     min(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:230:5: note:   template argument deduction/substitution failed:
../../src/BLow_GUI.cpp:192:53: note:   deduced conflicting types for parameter 'const _Tp' ('unsigned int' and 'long unsigned int')
  192 |      float value = std::min (vt->getValue() - 1, 9ul);
      |                                                     ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/string:40,
                 from ../../src/../BWidgets/BUtilities/to_string.hpp:21,
                 from ../../src/BLow_GUI.cpp:6:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: candidate: 'template<class _Tp, class _Compare> const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
  278 |     min(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:278:5: note:   template argument deduction/substitution failed:
../../src/BLow_GUI.cpp:192:53: note:   deduced conflicting types for parameter 'const _Tp' ('unsigned int' and 'long unsigned int')
  192 |      float value = std::min (vt->getValue() - 1, 9ul);
      |                                                     ^
In file included from /usr/include/c++/10/algorithm:62,
                 from ../../src/../BWidgets/BWidgets/Supports/Linkable.hpp:21,
                 from ../../src/../BWidgets/BWidgets/Widget.hpp:25,
                 from ../../src/../BWidgets/BWidgets/Window.hpp:25,
                 from ../../src/BLow_GUI.cpp:7:
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: candidate: 'template<class _Tp> _Tp std::min(std::initializer_list<_Tp>)'
 3468 |     min(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3468:5: note:   template argument deduction/substitution failed:
../../src/BLow_GUI.cpp:192:53: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned int'
  192 |      float value = std::min (vt->getValue() - 1, 9ul);
      |                                                     ^
In file included from /usr/include/c++/10/algorithm:62,
                 from ../../src/../BWidgets/BWidgets/Supports/Linkable.hpp:21,
                 from ../../src/../BWidgets/BWidgets/Widget.hpp:25,
                 from ../../src/../BWidgets/BWidgets/Window.hpp:25,
                 from ../../src/BLow_GUI.cpp:7:
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: candidate: 'template<class _Tp, class _Compare> _Tp std::min(std::initializer_list<_Tp>, _Compare)'
 3474 |     min(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3474:5: note:   template argument deduction/substitution failed:
../../src/BLow_GUI.cpp:192:53: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned int'
  192 |      float value = std::min (vt->getValue() - 1, 9ul);
      |                                                     ^
make[1]: *** [makefile:97: BLow_GUI.so] Error 1
make[1]: Leaving directory '/build/blow-1.2.0+20220709'

Frequencies below 40Hz missing

Hello and thanks for this mind-blowing plugin.

Is it only me, or does it miss the frequency range b.low 40 Hz? Maybe I m affected by hearing loss, could be possible.

And how can I contribute to additional blow samples? Is there an upload repository for this?

kind regards

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.