The finding things in stuff package.
Project description
ftis - finding things in stuff
ftis
is a framework for data manipulation, management, creation and munging in Python 3.8+. It is designed for creative use, mainly for my own preoccupations with segmenting, analysing, organising, discovering structure within, and composing with audio corpora.
Architecture
The overall architecture can be conceived in two parts; 'analysers' and 'processes'. A ftis
'process' can house any number of 'analysers' that can be chained and connected in different ways. A python script can house any number of processes and therefore you can compose multiple processes. Inside of a process, ftis
makes connections between a source, the analysers and an output.
Installation
You can install ftis
using pip install ftis
. This will pull down the necessary dependencies so that all of the analysers that ship with ftis
work straight away.
You can also fork this repository and clone
it to your machine.
Workflow
The simplest setup is to have a virtual environment setup with ftis installed as a module. cd
to the clone of your fork of ftis
and enter the module (the directory containing setup.py
). Once there run pip install -e .
to install ftis
to your activated virtual environment. Once you've designed your script you can easily run it with python mycoolscript.py
. Of course if you have used pip
to install ftis
then none of the previous advice applies.
There are some good examples of scripts in the examples directory of this repository. Otherwise the basic structure looks like this:
# import ftis modules that we need
from ftis.analyser.slicing import FluidNoveltyslice # novelty slicing
from ftis.process import FTISProcess # a ftis 'process'
from ftis.corpus import Corpus # a corpus object
src = Corpus("~/corpus-folder/corpus1") # corpus object collects audio files at this directory
out = "~/corpus-folder/slicing" # set an output folder
process = FTISProcess( # instantiate an instance of the process
source=src, # provide the source and the output to the process
folder=out
)
process.add( # now add different 'analysers' to the process
FluidNoveltyslice(threshold=0.35, feature=1),
ExplodeAudio()
)
if __name__ == "__main__":
process.run() # and run (inside this block for multiprocessing to work)
and thats it! For more information read the full documentation.
Contributing
If you feel up to contributing plumbing code or your own analysers please feel free to do via github.
- Fork this repository
- Checkout a branch with your new feature
- Implement feature
- Make a pull request!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file ftis-1.0.6.tar.gz
.
File metadata
- Download URL: ftis-1.0.6.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e89b2c3bdcb7eb3522b0b80006aed7ccd77c3076cf3d1231692fd50111d15c1f |
|
MD5 | e45488340ad20fbe5c69fa2454f7e6b9 |
|
BLAKE2b-256 | 3eb2fd4c30dcb65a59ec21b11aa3c7089d2b92a08b9f733110798a701cc8a42c |