Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justinsalamon/scaper
A library for soundscape synthesis and augmentation
https://github.com/justinsalamon/scaper
audio audio-processing data-augmentation machine-learning machine-listening soundscape soundscape-synthesis sox synthesis
Last synced: 1 day ago
JSON representation
A library for soundscape synthesis and augmentation
- Host: GitHub
- URL: https://github.com/justinsalamon/scaper
- Owner: justinsalamon
- License: bsd-3-clause
- Created: 2016-04-19T18:03:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-05-04T10:23:27.000Z (over 2 years ago)
- Last Synced: 2024-10-12T04:48:48.419Z (3 months ago)
- Topics: audio, audio-processing, data-augmentation, machine-learning, machine-listening, soundscape, soundscape-synthesis, sox, synthesis
- Language: Python
- Homepage:
- Size: 65.6 MB
- Stars: 377
- Watchers: 8
- Forks: 55
- Open Issues: 60
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# scaper
A library for soundscape synthesis and augmentation
[![PyPI](https://img.shields.io/pypi/v/scaper.svg)](https://pypi.python.org/pypi/scaper)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![Build Status](https://travis-ci.org/justinsalamon/scaper.svg?branch=master)](https://travis-ci.org/justinsalamon/scaper)
[![Coverage Status](https://coveralls.io/repos/github/justinsalamon/scaper/badge.svg?branch=master)](https://coveralls.io/github/justinsalamon/scaper?branch=master)
[![Documentation Status](https://readthedocs.org/projects/scaper/badge/?version=latest)](http://scaper.readthedocs.io/en/latest/?badge=latest)
[![Downloads](https://pepy.tech/badge/scaper)](https://pepy.tech/project/scaper)
[![PyPI](https://img.shields.io/badge/python-2.7%2C%203.4%2C%203.5%2C%203.6-blue.svg)]()Please refer to the [documentation](http://scaper.readthedocs.io/) for details.
For the motivation behind scaper and its applications check out the scaper-paper:
[Scaper: A library for soundscape synthesis and augmentation](http://www.justinsalamon.com/uploads/4/3/9/4/4394963/salamon_scaper_waspaa_2017.pdf)
J. Salamon, D. MacConnell, M. Cartwright, P. Li, and J. P. Bello
In IEEE Workshop on Applications of Signal Processing to Audio and Acoustics (WASPAA), New Paltz, NY, USA, Oct. 2017.## Installation
### Non-python dependencies
Scaper has one non-python dependency:
- FFmpeg: https://ffmpeg.org/If you are installing Scaper on Windows, you will also need:
- SoX: http://sox.sourceforge.net/On Linux/macOS SoX is replaced by [SoxBindings](https://github.com/pseeth/soxbindings) which is significantly faster, giving better runtime performance in Scaper. On these platforms SoxBindings is installed automatically when calling `pip install scaper` (see below).
#### Linux/macOS
If you're using [Anaconda](https://www.anaconda.com/distribution/) (or [miniconda](https://docs.conda.io/en/latest/miniconda.html)) to manage your python environment (recommended), you can install FFmpeg using `conda` on macOS/Linux:```
conda install -c conda-forge ffmpeg
```#### macOS
On macOS FFmpeg can be installed using [homebrew](https://brew.sh/):```
brew install ffmpeg
```#### Linux
On linux you can use your distribution's package manager, e.g. on Ubuntu (15.04 "Vivid Vervet" or newer):```
sudo apt-get install ffmpeg
```
NOTE: on earlier versions of Ubuntu [ffmpeg may point to a Libav binary](http://stackoverflow.com/a/9477756/2007700) which is not the correct binary. If you are using Anaconda, you can install the correct version as described earlier by calling `conda install -c conda-forge ffmpeg`. Otherwise, you can [obtain a static binary from the ffmpeg website](https://ffmpeg.org/download.html).#### Windows
On windows you can use the provided installation binaries:
- SoX: https://sourceforge.net/projects/sox/files/sox/
- FFmpeg: https://ffmpeg.org/download.html#build-windows### Installing Scaper
The simplest way to install scaper is by using `pip`, which will also install the required python dependencies if needed. To install scaper using pip, simply run:
```
pip install scaper
```To install the latest version of scaper from source, clone or pull the lastest version:
```
git clone [email protected]:justinsalamon/scaper.git
```Then enter the source folder and install using pip to handle python dependencies:
```
cd scaper
pip install -e .
```
## TutorialTo help you get started with scaper, please see this [step-by-step tutorial](http://scaper.readthedocs.io/en/latest/tutorial.html).
## Example
```python
import scaper
import numpy as np# OUTPUT FOLDER
outfolder = 'audio/soundscapes/'# SCAPER SETTINGS
fg_folder = 'audio/soundbank/foreground/'
bg_folder = 'audio/soundbank/background/'n_soundscapes = 1000
ref_db = -50
duration = 10.0min_events = 1
max_events = 9event_time_dist = 'truncnorm'
event_time_mean = 5.0
event_time_std = 2.0
event_time_min = 0.0
event_time_max = 10.0source_time_dist = 'const'
source_time = 0.0event_duration_dist = 'uniform'
event_duration_min = 0.5
event_duration_max = 4.0snr_dist = 'uniform'
snr_min = 6
snr_max = 30pitch_dist = 'uniform'
pitch_min = -3.0
pitch_max = 3.0time_stretch_dist = 'uniform'
time_stretch_min = 0.8
time_stretch_max = 1.2
# Generate 1000 soundscapes using a truncated normal distribution of start timesfor n in range(n_soundscapes):
print('Generating soundscape: {:d}/{:d}'.format(n+1, n_soundscapes))
# create a scaper
sc = scaper.Scaper(duration, fg_folder, bg_folder)
sc.protected_labels = []
sc.ref_db = ref_db
# add background
sc.add_background(label=('const', 'noise'),
source_file=('choose', []),
source_time=('const', 0))# add random number of foreground events
n_events = np.random.randint(min_events, max_events+1)
for _ in range(n_events):
sc.add_event(label=('choose', []),
source_file=('choose', []),
source_time=(source_time_dist, source_time),
event_time=(event_time_dist, event_time_mean, event_time_std, event_time_min, event_time_max),
event_duration=(event_duration_dist, event_duration_min, event_duration_max),
snr=(snr_dist, snr_min, snr_max),
pitch_shift=(pitch_dist, pitch_min, pitch_max),
time_stretch=(time_stretch_dist, time_stretch_min, time_stretch_max))
# generate
audiofile = os.path.join(outfolder, "soundscape_unimodal{:d}.wav".format(n))
jamsfile = os.path.join(outfolder, "soundscape_unimodal{:d}.jams".format(n))
txtfile = os.path.join(outfolder, "soundscape_unimodal{:d}.txt".format(n))
sc.generate(audiofile, jamsfile,
allow_repeated_label=True,
allow_repeated_source=False,
reverb=0.1,
disable_sox_warnings=True,
no_audio=False,
txt_path=txtfile)
```## How to contribute
If you would like to contribute a feature and/or bugfix to this repository, please follow the following steps:
1. Create an issue describing the feature/fix.
2. I will reply on the issue thread to determine whether the feature/fix can/should be added.
3. Discuss design/implementation details in the issue thread and reach consensus.
4. Once consensus is reached (and only then), start a pull request (PR). Further discsussion can continue in the PR thread.
5. Implement feature/fix, ensuring all current unit tests pass and new tests are added to maintain 100% test coverage. Inline docstrings as well as the main docs files should also be updated accordingly.
6. Request code review once the pull request is ready for review.
7. Fix requested changes to the pull request if any. Repeat steps 5-7 until the PR is approved.
8. once the PR is approved I will merge it into master (and most likely create a new release).IMPORTANT: please be sure to always discuss a proposed feature/fix in an issue before creating a pull request.