Skip to main content

A wrapper around the partial-tracking library Loris

Project description

LORISTRCK

loristrck is a wrapper for the C++ partial-tracking library Loris.

It is written in cython and targets python 3 (>= 3.8 at the moment). The source of the library is included as part of the project and does not need to be installed previously.

C++ Library Dependencies:
Additional Python Module Dependencies:
  • Cython

  • NumPy

  • pysndfile + libsndfile

  • sounddevice to be able to play samples (see loristrck_play)

Optional dependencies:
  • csound (in order to play .mtx files, as generated by loristrck_pack)


Documentation

https://loristrck.readthedocs.io


Installation

macOS

brew install fftw
pip install loristrck

Linux

apt install libfftw3-dev libsndfile1-dev
pip install loristrck

Windows

pip install loristrck

Install from source in Windows

You need to have Visual Studio installed

# From a Developer Powershell
python scripts/prepare_windows_build.py

# From a normal prompt
pip install .

Usage

import loristrck as lt

samples, sr = lt.sndreadmono("/path/to/sndfile.wav")
partials = lt.analyze(samples, sr, resolution=60)
# partials is a python list of numpy arrays
# select a subset of most significant partials
selected, noise = lt.select(partials, mindur=0.02, maxfreq=12000, minamp=-60, minbp=2)
# print each partial as data
for partial in selected:
    print(partial)
# plot selected partials
lt.plot_partials(selected)
# now resynthesize both parts separately
lt.partials_render(selected, outfile="selected.wav")
lt.partials_render(noise, outfile="noise.wav")

Each partial will be a numpy array of shape = (numbreakpoints, 5) with the columns:

time, frequency, amplitude, phase, bandwidth

See the example scripts in bin for more complete examples

See also

sndtrck: https://github.com/gesellkammer/sndtrck

Author

eduardo dot moguillansky @ gmail dot com

License

GPL

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

loristrck-1.2.3.tar.gz (1.0 MB view hashes)

Uploaded Source

Built Distributions

loristrck-1.2.3-cp39-cp39-win_amd64.whl (2.5 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

loristrck-1.2.3-cp39-cp39-win32.whl (2.4 MB view hashes)

Uploaded CPython 3.9 Windows x86

loristrck-1.2.3-cp39-cp39-manylinux2010_x86_64.whl (3.0 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

loristrck-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl (1.1 MB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

loristrck-1.2.3-cp38-cp38-manylinux2010_x86_64.whl (3.0 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

loristrck-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl (1.1 MB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page