Add a short description here!
Project description
AudioStretchy
AudioStretchy is a Python library that allows you to time-stretch audio signals without changing their pitch. It is a wrapper around the audio-stretch library by David Bryant, which implements a sophisticated time-stretching algorithm for high-quality results.
Version: 1.0.5
Features
- Time stretching of audio files without changing their pitch
- Supports WAV files
- Adjustable stretching ratio from 0.25 to 4.0
- Cross-platform: Windows, macOS, and Linux
Adapted from the original audio-stretch C library:
Time-domain harmonic scaling (TDHS) is a method for time-scale modification of speech (or other audio signals), allowing the apparent rate of speech articulation to be changed without affecting the pitch-contour and the time-evolution of the formant structure. TDHS differs from other time-scale modification algorithms in that time-scaling operations are performed in the time domain (not the frequency domain).
This project is a Python wrapper around a a TDHS library to utilize it with standard WAV files.
There are two effects possible with TDHS and the audio-stretch demo. The first is the more obvious mentioned above of changing the duration (or speed) of a speech (or other audio) sample without modifying its pitch. The other effect is similar, but after applying the duration change we change the sampling rate in a complimentary manner to restore the original duration and timing, which then results in the pitch being altered.
So when a ratio is supplied to the audio-stretch program, the default operation is for the total duration of the audio file to be scaled by exactly that ratio (0.5X to 2.0X), with the pitches remaining constant. If the option to scale the sample-rate proportionally is specified (-s) then the total duration and timing of the audio file will be preserved, but the pitches will be scaled by the specified ratio instead. This is useful for creating a "helium voice" effect and lots of other fun stuff.
Note that unless ratios of exactly 0.5 or 2.0 are used with the -s option, non-standard sampling rates will probably result. Many programs will still properly play these files, and audio editing programs will likely import them correctly (by resampling), but it is possible that some applications will barf on them. They can also be resampled to a standard rate using audio-resampler by David Bryant.
The Python package does not expose all command-line options of the original library.
Installation
Install AudioStretchy using pip:
python3 -m pip install audiostretchy
or
python3 -m pip install git+https://github.com/twardoch/audiostretchy
Usage
CLI
audiostretchy INFILENAME OUTFILENAME <flags>
POSITIONAL ARGUMENTS
INFILENAME
The path to the input WAV file.
OUTFILENAME
The path to the output WAV file.
FLAGS
-r, --ratio=RATIO
Type: float
Default: 1.0
The ratio to use for processing. Defaults to 1.0.
-s, --silence_ratio=SILENCE_RATIO
Type: float
Default: 0.0
The silence ratio to use for processing if different from ratio
Python
from audiostretchy.stretch import process_audio
input_file = "input.wav"
output_file = "output.wav"
stretch_ratio = 1.1
process_audio(input_file, output_file, ratio=stretch_ratio)
In this example, the input.wav
file will be time-stretched by a factor of 1.1, meaning it will be 10% longer, and the result will be saved in the output.wav
file.
API
The main function to use in AudioStretchy is process_audio
in audiostretchy.stretch
:
process_audio(
infilename: Union[str, Path],
outfilename: Union[str, Path],
ratio: float = 1.0,
silence_ratio: float = 0.0,
)
infilename
: The path to the input audio file (WAV format).outfilename
: The path to the output audio file (WAV format).ratio
: The stretching ratio. Must be between 0.25 and 4.0. Defaults to 1.0 (no stretching).silence_ratio
: The silence ratio to use for processing. Must be between 0.25 and 4.0. Defaults to 0.0 (use the same ratio asratio
).
License
- Original C library code: Copyright (c) 2022 David Bryant
- Python code: Copyright (c) 2022 Adam Twardoch
- Licensed under the BSD-3-Clause license
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 Distributions
Built Distribution
Hashes for audiostretchy-1.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00c5b836bda3f162b6e59974115771c0c6781f1a1a491755e72d794958840b08 |
|
MD5 | ac461ae97d18a182555eef4e02c517ab |
|
BLAKE2b-256 | 4c7e1995d9fe6817adcecf6519de3f72cc51587f2130780abcbac6946519b0f7 |