stftpitchshift


Namestftpitchshift JSON
Version 2.0 PyPI version JSON
download
home_pagehttps://github.com/jurihock/stftPitchShift
SummarySTFT based pitch and timbre shifting
upload_time2023-12-12 21:57:14
maintainer
docs_urlNone
authorJuergen Hock
requires_python>=3
licenseMIT
keywords digital audio signal processing dasp fft stft pitch shifting formants spectrum cepstrum algorithms analysis synthesis cpp python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # stftPitchShift

![language](https://img.shields.io/badge/language-C%2B%2B-blue)
![language](https://img.shields.io/badge/language-Python-blue)
![license](https://img.shields.io/github/license/jurihock/stftPitchShift?color=blue)
![build cpp](https://img.shields.io/github/actions/workflow/status/jurihock/stftPitchShift/cpp.yml?branch=main&label=build%20cpp)
![build python](https://img.shields.io/github/actions/workflow/status/jurihock/stftPitchShift/python.yml?branch=main&label=build%20python)
![tag](https://img.shields.io/github/v/tag/jurihock/stftPitchShift?color=gold)
![pypi](https://img.shields.io/pypi/v/stftpitchshift?color=gold)

*stftPitchShift* is a Short-Time Fourier Transform ([STFT](https://www.audiolabs-erlangen.de/resources/MIR/FMP/C2/C2_STFT-Basic.html)) based pitch and timbre shifting algorithm implementation, originally inspired by the Stephan M. Bernsee's [smbPitchShift.cpp](https://blogs.zynaptiq.com/bernsee/download). 

This repository features two analogical algorithm implementations, [C++](cpp/StftPitchShift) and [Python](python/stftpitchshift). Both contain several [function blocks](#modules) of the same name (but different file extension, of course).

In addition to the basic pitch shifting algorithm, it also features spectral [poly pitch shifting](#pitch-shifting) and cepstral [formant preservation](#formant-preservation) extensions.

Both sources contain a ready-to-use [command line tool](#usage) as well as a library for custom needs. See more details in the [build](#build) section.

Feel free to check out some demos at [stftPitchShiftDemo](http://jurihock.github.io/stftPitchShiftDemo) and the [stftPitchShiftPlugin](https://github.com/jurihock/stftPitchShiftPlugin) as well.

## Modules

<details>
<summary><strong>StftPitchShift</strong></summary>

The *StftPitchShift* module provides a full-featured audio processing chain to perform the pitch shifting of a single audio track, based on the built in *STFT* implementation.

Exclusively in the C++ environment the additional *StftPitchShiftCore* module can be used to embed this pitch shifting implementation in an existing real-time *STFT* pipeline.
</details>

<details>
<summary><strong>Vocoder</strong></summary>

The *Vocoder* module transforms the DFT spectral data according to the original algorithm, which is actually the *instantaneous frequency estimation* technique. See also [further reading](#further-reading) for more details.

The particular `encode` function replaces the input DFT values by the `magnitude + j * frequency` complex numbers, representing the phase error based frequency estimation in the imaginary part.

The `decode` function does an inverse transformation back to the original DFT complex numbers, by replacing eventually modified frequency value by the reconstructed phase value.
</details>

<details>
<summary><strong>Pitcher</strong></summary>

The *Pitcher* module performs mono or poly pitch shifting of the encoded DFT frame depending on the specified fractional factors.
</details>

<details>
<summary><strong>Resampler</strong></summary>

The *Resampler* module provides the `linear` interpolation routine, to actually perform pitch shifting, based on the *Vocoder* DFT transform.
</details>

<details>
<summary><strong>Cepster</strong></summary>

The *Cepster* module estimates a spectral envelope of the DFT magnitude vector, representing the vocal tract resonances. This computation takes place in the cepstral domain by applying a low-pass filter. The cutoff value of the low-pass filter or *lifter* is the *quefrency* value to be specified in seconds or milliseconds.
</details>

<details>
<summary><strong>Normalizer</strong></summary>

The *Normalizer* module optionally performs a [RMS normalization](https://en.wikipedia.org/wiki/Audio_normalization) right after pitch shifting relative to the original signal to get about the same loudness level. This correction takes place in the frequency domain each DFT frame separately.
</details>

<details>
<summary><strong>STFT</strong></summary>

As the name of this module already implies, it performs the comprehensive *STFT* analysis and synthesis steps.
</details>

## Pitch shifting

### Mono pitch shifting

Since the *Vocoder* module transforms the original DFT complex values `real + j * imag` into `magnitude + j * frequency` representation, the mono pitch shifting is a comparatively easy task. Both `magnitude` and `frequency` vectors are to be resampled according to the desired pitch shifting factor:

* The factor `1` means no change.
* The factor `<1` means downsampling.
* The factor `>1` means upsampling.

Any fractional resampling factor such as `0.5` requires interpolation. In the simplest case, linear interpolation will be sufficient. Otherwise, bilinear interpolation can also be applied to smooth values between two consecutive STFT hops.

Due to frequency vector alteration, the resampled frequency values needs also be multiplied by the resampling factor.

### Poly pitch shifting

In terms of poly pitch shifting, multiple differently resampled `magnitude` and `frequency` vectors are to be combined together. For example, the magnitude vectors can easily be averaged. But what about the frequency vectors?

The basic concept of this algorithm extension is to only keep the frequency value of the strongest magnitude value. So the *strongest* magnitude will mask the *weakest* one. Thus, all remaining *masked* components become *inaudible*.

In this way, the poly pitch shifting can be performed *simultaneously* in the same DFT frame. There is no need to build a separate STFT pipeline for different pitch variations to superimpose the synthesized signals in the time domain.

## Formant preservation

The pitch shifting also causes distortion of the original [vocal formants](https://en.wikipedia.org/wiki/Formant), leading to a so called *Mickey Mouse* effect if scaled up. One possibility to reduce this artifact, is to exclude the formant feature from the pitch shifting procedure.

The vocal formants are represented by the *spectral envelope*, which is given by the smoothed DFT mangitude vector. In this implementation, the smoothing of the DFT mangitude vector takes place in the cepstral domain by low-pass *liftering*. The extracted envelope is then removed from the original DFT magnitude. The remaining *residual* or *excitation* signal goes through the pitch shifting algorithm. After that, the previously extracted envelope is combined with the processed residual.

## Build

### C++

Use [CMake](http://cmake.org) to manually build the C++ library, main and example programs like this:

```cmd
cmake -S . -B build
cmake --build build
```

Or alternatively just get the packaged library from:

* Vcpkg repository [stftpitchshift](https://github.com/microsoft/vcpkg/tree/master/ports/stftpitchshift) or
* Ubuntu repository [ppa:jurihock/stftpitchshift](https://launchpad.net/~jurihock/+archive/ubuntu/stftpitchshift).

To include this library in your C++ audio project, study the minimal C++ example in the examples folder:

```cpp
#include <StftPitchShift/StftPitchShift.h>

using namespace stftpitchshift;

StftPitchShift pitchshifter(1024, 256, 44100);

std::vector<float> x(44100);
std::vector<float> y(x.size());

pitchshifter.shiftpitch(x, y, 1);
```

Optionally specify following CMake options for custom builds:

* `-DBUILD_SHARED_LIBS=ON` to enable a [shared](https://cmake.org/cmake/help/latest/variable/BUILD_SHARED_LIBS.html) library build,
* `-DVCPKG=ON` to enable the [vcpkg](https://vcpkg.io) compatible library only build without executables,
* `-DDEB=ON` to enable the [deb](https://en.wikipedia.org/wiki/Deb_(file_format)) package build for library and main executable,
* `-DWASM=ON` to enable the [wasm](https://emscripten.org) library build used in [demo](https://github.com/jurihock/stftPitchShiftDemo) project.

### Python

The Python program `stftpitchshift` can be installed via `pip install stftpitchshift`.

Also feel free to explore the Python class `StftPitchShift` in your personal audio project:

```python
from stftpitchshift import StftPitchShift

pitchshifter = StftPitchShift(1024, 256, 44100)

x = [0] * 44100
y = pitchshifter.shiftpitch(x, 1)
```

## Usage

Both programs C++ and Python provides a similar set of command line options:

```
-h  --help       print this help
    --version    print version number

-i  --input      input .wav file name
-o  --output     output .wav file name

-p  --pitch      fractional pitch shifting factors separated by comma
                 (default 1.0)

-q  --quefrency  optional formant lifter quefrency in milliseconds
                 (default 0.0)

-t  --timbre     fractional timbre shifting factor related to -q
                 (default 1.0)

-r  --rms        enable spectral rms normalization

-w  --window     stft window size
                 (default 1024)

-v  --overlap    stft window overlap
                 (default 32)

-c  --chrono     enable runtime measurements
                 (only available in the C++ version)

-d  --debug      plot spectrograms before and after processing
                 (only available in the Python version)
```

Currently only `.wav` files are supported. Please use e.g. [Audacity](http://www.audacityteam.org) or [SoX](http://sox.sourceforge.net) to prepare your audio files for pitch shifting.

To apply multiple pitch shifts at once, separate each factor by a comma, e.g. `-p 0.5,1,2`. Alternatively specify pitch shifting factors as semitones denoted by the + or - prefix, e.g. `-p -12,0,+12`. For precise pitch corrections append the number of cents after semitones, e.g. `-p -11-100,0,+11+100`.

To enable the formant preservation feature specify a suitable *quefrency* value in milliseconds. Depending on the source signal, begin with a small value like `-q 1`. Generally, the *quefrency* value has to be smaller than the fundamental period, as reciprocal of the fundamental frequency, of the source signal.

At the moment the formant preservation doesn't seem to work well along with the poly pitch shifting and smaller pitch shifting factors. Further investigation is therefore necessary...

## Further reading

### Instantaneous frequency estimation

* [Fundamentals of Music Processing](http://www.music-processing.de) by Meinard Müller (section 8.2.1 in the second edition or [online](https://www.audiolabs-erlangen.de/resources/MIR/FMP/C8/C8S2_InstantFreqEstimation.html))
* [Digital Audio Effects](http://www.dafx.de) by Udo Zölzer (sections 7.3.1 and 7.3.5 in the second edition)
* [Spectral Music Design](https://global.oup.com/academic/product/spectral-music-design-9780197524015) by Victor Lazzarini (section 6.3 in the first edition)

### Cepstrum analysis and formant changing

* [Digital Audio Effects](http://www.dafx.de) by Udo Zölzer (sections 8.2.3 and 8.3.2 in the second edition)
* [Discrete-Time Signal Processing](https://www.pearson.com/us/higher-education/program/Oppenheim-Discrete-Time-Signal-Processing-3rd-Edition/PGM212808.html) by Oppenheim & Schafer (chapter 13 in the third edition)
* [Spectral Music Design](https://global.oup.com/academic/product/spectral-music-design-9780197524015) by Victor Lazzarini (section 6.5.7 in the first edition)

### Asymmetric windows

* [A low delay, variable resolution, perfect reconstruction spectral analysis-synthesis system for speech enhancement](https://ieeexplore.ieee.org/document/7098797) by Dirk Mauler and Rainer Martin
* [Asymmetric windows in digital signal processing](https://doi.org/10.1016/bs.adcom.2019.07.004) by Robert Rozman

## Credits

* [cxxopts](https://github.com/jarro2783/cxxopts) by Jarryd Beck
* [dr_libs](https://github.com/mackron/dr_libs) by David Reid

## License

*stftPitchShift* is licensed under the terms of the MIT license.
For details please refer to the accompanying [LICENSE](LICENSE) file distributed with *stftPitchShift*.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jurihock/stftPitchShift",
    "name": "stftpitchshift",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": "",
    "keywords": "digital,audio,signal,processing,dasp,fft,stft,pitch,shifting,formants,spectrum,cepstrum,algorithms,analysis,synthesis,cpp,python",
    "author": "Juergen Hock",
    "author_email": "juergen.hock@jurihock.de",
    "download_url": "https://files.pythonhosted.org/packages/0a/f9/f544b1accf7ae415656ad70c512afb24cae71546195153e8c13fa105eb3f/stftpitchshift-2.0.tar.gz",
    "platform": null,
    "description": "# stftPitchShift\n\n![language](https://img.shields.io/badge/language-C%2B%2B-blue)\n![language](https://img.shields.io/badge/language-Python-blue)\n![license](https://img.shields.io/github/license/jurihock/stftPitchShift?color=blue)\n![build cpp](https://img.shields.io/github/actions/workflow/status/jurihock/stftPitchShift/cpp.yml?branch=main&label=build%20cpp)\n![build python](https://img.shields.io/github/actions/workflow/status/jurihock/stftPitchShift/python.yml?branch=main&label=build%20python)\n![tag](https://img.shields.io/github/v/tag/jurihock/stftPitchShift?color=gold)\n![pypi](https://img.shields.io/pypi/v/stftpitchshift?color=gold)\n\n*stftPitchShift* is a Short-Time Fourier Transform ([STFT](https://www.audiolabs-erlangen.de/resources/MIR/FMP/C2/C2_STFT-Basic.html)) based pitch and timbre shifting algorithm implementation, originally inspired by the Stephan M. Bernsee's [smbPitchShift.cpp](https://blogs.zynaptiq.com/bernsee/download). \n\nThis repository features two analogical algorithm implementations, [C++](cpp/StftPitchShift) and [Python](python/stftpitchshift). Both contain several [function blocks](#modules) of the same name (but different file extension, of course).\n\nIn addition to the basic pitch shifting algorithm, it also features spectral [poly pitch shifting](#pitch-shifting) and cepstral [formant preservation](#formant-preservation) extensions.\n\nBoth sources contain a ready-to-use [command line tool](#usage) as well as a library for custom needs. See more details in the [build](#build) section.\n\nFeel free to check out some demos at [stftPitchShiftDemo](http://jurihock.github.io/stftPitchShiftDemo) and the [stftPitchShiftPlugin](https://github.com/jurihock/stftPitchShiftPlugin) as well.\n\n## Modules\n\n<details>\n<summary><strong>StftPitchShift</strong></summary>\n\nThe *StftPitchShift* module provides a full-featured audio processing chain to perform the pitch shifting of a single audio track, based on the built in *STFT* implementation.\n\nExclusively in the C++ environment the additional *StftPitchShiftCore* module can be used to embed this pitch shifting implementation in an existing real-time *STFT* pipeline.\n</details>\n\n<details>\n<summary><strong>Vocoder</strong></summary>\n\nThe *Vocoder* module transforms the DFT spectral data according to the original algorithm, which is actually the *instantaneous frequency estimation* technique. See also [further reading](#further-reading) for more details.\n\nThe particular `encode` function replaces the input DFT values by the `magnitude + j * frequency` complex numbers, representing the phase error based frequency estimation in the imaginary part.\n\nThe `decode` function does an inverse transformation back to the original DFT complex numbers, by replacing eventually modified frequency value by the reconstructed phase value.\n</details>\n\n<details>\n<summary><strong>Pitcher</strong></summary>\n\nThe *Pitcher* module performs mono or poly pitch shifting of the encoded DFT frame depending on the specified fractional factors.\n</details>\n\n<details>\n<summary><strong>Resampler</strong></summary>\n\nThe *Resampler* module provides the `linear` interpolation routine, to actually perform pitch shifting, based on the *Vocoder* DFT transform.\n</details>\n\n<details>\n<summary><strong>Cepster</strong></summary>\n\nThe *Cepster* module estimates a spectral envelope of the DFT magnitude vector, representing the vocal tract resonances. This computation takes place in the cepstral domain by applying a low-pass filter. The cutoff value of the low-pass filter or *lifter* is the *quefrency* value to be specified in seconds or milliseconds.\n</details>\n\n<details>\n<summary><strong>Normalizer</strong></summary>\n\nThe *Normalizer* module optionally performs a [RMS normalization](https://en.wikipedia.org/wiki/Audio_normalization) right after pitch shifting relative to the original signal to get about the same loudness level. This correction takes place in the frequency domain each DFT frame separately.\n</details>\n\n<details>\n<summary><strong>STFT</strong></summary>\n\nAs the name of this module already implies, it performs the comprehensive *STFT* analysis and synthesis steps.\n</details>\n\n## Pitch shifting\n\n### Mono pitch shifting\n\nSince the *Vocoder* module transforms the original DFT complex values `real + j * imag` into `magnitude + j * frequency` representation, the mono pitch shifting is a comparatively easy task. Both `magnitude` and `frequency` vectors are to be resampled according to the desired pitch shifting factor:\n\n* The factor `1` means no change.\n* The factor `<1` means downsampling.\n* The factor `>1` means upsampling.\n\nAny fractional resampling factor such as `0.5` requires interpolation. In the simplest case, linear interpolation will be sufficient. Otherwise, bilinear interpolation can also be applied to smooth values between two consecutive STFT hops.\n\nDue to frequency vector alteration, the resampled frequency values needs also be multiplied by the resampling factor.\n\n### Poly pitch shifting\n\nIn terms of poly pitch shifting, multiple differently resampled `magnitude` and `frequency` vectors are to be combined together. For example, the magnitude vectors can easily be averaged. But what about the frequency vectors?\n\nThe basic concept of this algorithm extension is to only keep the frequency value of the strongest magnitude value. So the *strongest* magnitude will mask the *weakest* one. Thus, all remaining *masked* components become *inaudible*.\n\nIn this way, the poly pitch shifting can be performed *simultaneously* in the same DFT frame. There is no need to build a separate STFT pipeline for different pitch variations to superimpose the synthesized signals in the time domain.\n\n## Formant preservation\n\nThe pitch shifting also causes distortion of the original [vocal formants](https://en.wikipedia.org/wiki/Formant), leading to a so called *Mickey Mouse* effect if scaled up. One possibility to reduce this artifact, is to exclude the formant feature from the pitch shifting procedure.\n\nThe vocal formants are represented by the *spectral envelope*, which is given by the smoothed DFT mangitude vector. In this implementation, the smoothing of the DFT mangitude vector takes place in the cepstral domain by low-pass *liftering*. The extracted envelope is then removed from the original DFT magnitude. The remaining *residual* or *excitation* signal goes through the pitch shifting algorithm. After that, the previously extracted envelope is combined with the processed residual.\n\n## Build\n\n### C++\n\nUse [CMake](http://cmake.org) to manually build the C++ library, main and example programs like this:\n\n```cmd\ncmake -S . -B build\ncmake --build build\n```\n\nOr alternatively just get the packaged library from:\n\n* Vcpkg repository [stftpitchshift](https://github.com/microsoft/vcpkg/tree/master/ports/stftpitchshift) or\n* Ubuntu repository [ppa:jurihock/stftpitchshift](https://launchpad.net/~jurihock/+archive/ubuntu/stftpitchshift).\n\nTo include this library in your C++ audio project, study the minimal C++ example in the examples folder:\n\n```cpp\n#include <StftPitchShift/StftPitchShift.h>\n\nusing namespace stftpitchshift;\n\nStftPitchShift pitchshifter(1024, 256, 44100);\n\nstd::vector<float> x(44100);\nstd::vector<float> y(x.size());\n\npitchshifter.shiftpitch(x, y, 1);\n```\n\nOptionally specify following CMake options for custom builds:\n\n* `-DBUILD_SHARED_LIBS=ON` to enable a [shared](https://cmake.org/cmake/help/latest/variable/BUILD_SHARED_LIBS.html) library build,\n* `-DVCPKG=ON` to enable the [vcpkg](https://vcpkg.io) compatible library only build without executables,\n* `-DDEB=ON` to enable the [deb](https://en.wikipedia.org/wiki/Deb_(file_format)) package build for library and main executable,\n* `-DWASM=ON` to enable the [wasm](https://emscripten.org) library build used in [demo](https://github.com/jurihock/stftPitchShiftDemo) project.\n\n### Python\n\nThe Python program `stftpitchshift` can be installed via `pip install stftpitchshift`.\n\nAlso feel free to explore the Python class `StftPitchShift` in your personal audio project:\n\n```python\nfrom stftpitchshift import StftPitchShift\n\npitchshifter = StftPitchShift(1024, 256, 44100)\n\nx = [0] * 44100\ny = pitchshifter.shiftpitch(x, 1)\n```\n\n## Usage\n\nBoth programs C++ and Python provides a similar set of command line options:\n\n```\n-h  --help       print this help\n    --version    print version number\n\n-i  --input      input .wav file name\n-o  --output     output .wav file name\n\n-p  --pitch      fractional pitch shifting factors separated by comma\n                 (default 1.0)\n\n-q  --quefrency  optional formant lifter quefrency in milliseconds\n                 (default 0.0)\n\n-t  --timbre     fractional timbre shifting factor related to -q\n                 (default 1.0)\n\n-r  --rms        enable spectral rms normalization\n\n-w  --window     stft window size\n                 (default 1024)\n\n-v  --overlap    stft window overlap\n                 (default 32)\n\n-c  --chrono     enable runtime measurements\n                 (only available in the C++ version)\n\n-d  --debug      plot spectrograms before and after processing\n                 (only available in the Python version)\n```\n\nCurrently only `.wav` files are supported. Please use e.g. [Audacity](http://www.audacityteam.org) or [SoX](http://sox.sourceforge.net) to prepare your audio files for pitch shifting.\n\nTo apply multiple pitch shifts at once, separate each factor by a comma, e.g. `-p 0.5,1,2`. Alternatively specify pitch shifting factors as semitones denoted by the + or - prefix, e.g. `-p -12,0,+12`. For precise pitch corrections append the number of cents after semitones, e.g. `-p -11-100,0,+11+100`.\n\nTo enable the formant preservation feature specify a suitable *quefrency* value in milliseconds. Depending on the source signal, begin with a small value like `-q 1`. Generally, the *quefrency* value has to be smaller than the fundamental period, as reciprocal of the fundamental frequency, of the source signal.\n\nAt the moment the formant preservation doesn't seem to work well along with the poly pitch shifting and smaller pitch shifting factors. Further investigation is therefore necessary...\n\n## Further reading\n\n### Instantaneous frequency estimation\n\n* [Fundamentals of Music Processing](http://www.music-processing.de) by Meinard M\u00fcller (section 8.2.1 in the second edition or [online](https://www.audiolabs-erlangen.de/resources/MIR/FMP/C8/C8S2_InstantFreqEstimation.html))\n* [Digital Audio Effects](http://www.dafx.de) by Udo Z\u00f6lzer (sections 7.3.1 and 7.3.5 in the second edition)\n* [Spectral Music Design](https://global.oup.com/academic/product/spectral-music-design-9780197524015) by Victor Lazzarini (section 6.3 in the first edition)\n\n### Cepstrum analysis and formant changing\n\n* [Digital Audio Effects](http://www.dafx.de) by Udo Z\u00f6lzer (sections 8.2.3 and 8.3.2 in the second edition)\n* [Discrete-Time Signal Processing](https://www.pearson.com/us/higher-education/program/Oppenheim-Discrete-Time-Signal-Processing-3rd-Edition/PGM212808.html) by Oppenheim & Schafer (chapter 13 in the third edition)\n* [Spectral Music Design](https://global.oup.com/academic/product/spectral-music-design-9780197524015) by Victor Lazzarini (section 6.5.7 in the first edition)\n\n### Asymmetric windows\n\n* [A low delay, variable resolution, perfect reconstruction spectral analysis-synthesis system for speech enhancement](https://ieeexplore.ieee.org/document/7098797) by Dirk Mauler and Rainer Martin\n* [Asymmetric windows in digital signal processing](https://doi.org/10.1016/bs.adcom.2019.07.004) by Robert Rozman\n\n## Credits\n\n* [cxxopts](https://github.com/jarro2783/cxxopts) by Jarryd Beck\n* [dr_libs](https://github.com/mackron/dr_libs) by David Reid\n\n## License\n\n*stftPitchShift* is licensed under the terms of the MIT license.\nFor details please refer to the accompanying [LICENSE](LICENSE) file distributed with *stftPitchShift*.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "STFT based pitch and timbre shifting",
    "version": "2.0",
    "project_urls": {
        "Homepage": "https://github.com/jurihock/stftPitchShift"
    },
    "split_keywords": [
        "digital",
        "audio",
        "signal",
        "processing",
        "dasp",
        "fft",
        "stft",
        "pitch",
        "shifting",
        "formants",
        "spectrum",
        "cepstrum",
        "algorithms",
        "analysis",
        "synthesis",
        "cpp",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49ac7f41db473a747d74595155603f7b222545a4347d60765e62b7672201ffc4",
                "md5": "0997a2a4ed818f83124e29c0a6dd004d",
                "sha256": "4629694a19669012e8176ce6f16d79cecec05181406230bba08d6f4bf732ac22"
            },
            "downloads": -1,
            "filename": "stftpitchshift-2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0997a2a4ed818f83124e29c0a6dd004d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3",
            "size": 15468,
            "upload_time": "2023-12-12T21:57:12",
            "upload_time_iso_8601": "2023-12-12T21:57:12.827605Z",
            "url": "https://files.pythonhosted.org/packages/49/ac/7f41db473a747d74595155603f7b222545a4347d60765e62b7672201ffc4/stftpitchshift-2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0af9f544b1accf7ae415656ad70c512afb24cae71546195153e8c13fa105eb3f",
                "md5": "a52d39b396e0c7aa6dcf15209fbb2fda",
                "sha256": "c0ca22434bd05e9c1c3ec11273b52c0761c68e4d03a1e642a4a2dd9cdb8ac96d"
            },
            "downloads": -1,
            "filename": "stftpitchshift-2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a52d39b396e0c7aa6dcf15209fbb2fda",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 17678,
            "upload_time": "2023-12-12T21:57:14",
            "upload_time_iso_8601": "2023-12-12T21:57:14.651887Z",
            "url": "https://files.pythonhosted.org/packages/0a/f9/f544b1accf7ae415656ad70c512afb24cae71546195153e8c13fa105eb3f/stftpitchshift-2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-12 21:57:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jurihock",
    "github_project": "stftPitchShift",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "stftpitchshift"
}
        
Elapsed time: 0.22474s