Skip to main content

A library with Jupyter widgets for speech processing

Project description

speechwidgets

Jupyter widgets for speech processing

preview

Installation

You can install using pip:

pip install speechwidgets

If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable the nbextension:

jupyter nbextension enable --py [--sys-prefix|--user|--system] speechwidgets

Usage

from speechwidgets import SpectrogramPlayer

Basic usage:

SpectrogramPlayer(
    wav_file_path='./19-198-0001.wav',
    width=800,
    spec_height=200,
    navigator=True,
    nav_height=60,
)

Advanced usage:

SpectrogramPlayer(
    wav_file_path='./19-198-0001.wav',
    width=800,
    spec_height=200,
    navigator=False,
    settings=False,
    colormap="greys",

    # for dark mode notebooks:
    dark=False, # set to True
    transparent=False, # optionally set to True
    
    # mel spec parameters:
    n_fft=2048,
    win_length=400,
    hop_length=160,
    f_min=50, 
    n_mels=80,
    power=1.0,
    
    # amplitude to db parameter:
    top_db=80 
)

Annotations:

word_intervals = [['0.54', '0.84', 'this'],
        ['0.84', '1.1', 'little'],
        ['1.1', '1.4', 'work']]
s = SpectrogramPlayer(
    wav_file_path='./19-198-0001.wav',
    width=800,
    spec_height=200
)
s.annotate(data=word_intervals, title="Word Intervals", height=20, stroke_width=0.5)

You can call the annotate method multiple times with different data. title, height and stroke_width are optional arguments.

See examples/ folder on github for full code examples.

Development Installation

Create a dev environment:

conda create -n speechwidgets-dev -c conda-forge nodejs python=3.10 jupyterlab
conda activate speechwidgets-dev

Install the python dependencies. This will also build the TS package.

pip install -e ".[test, examples]"

When developing your extensions, you need to manually enable your extensions with the notebook / lab frontend. For lab, this is done by the command:

jupyter labextension develop --overwrite .
npm install
npm run build

For classic notebook, you need to run:

jupyter nbextension install --sys-prefix --symlink --overwrite --py speechwidgets
jupyter nbextension enable --sys-prefix --py speechwidgets

Note that the --symlink flag doesn't work on Windows, so you will here have to run the install command every time that you rebuild your extension. For certain installations you might also need another flag instead of --sys-prefix, but we won't cover the meaning of those flags here.

How to see your changes

Typescript:

If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the widget.

# Watch the source directory in one terminal, automatically rebuilding when needed
npm run watch
# Run JupyterLab in another terminal
jupyter lab

After a change wait for the build to finish and then refresh your browser and the changes should take effect.

Python:

If you make a change to the python code then you will need to restart the notebook kernel to have it take effect.

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

speechwidgets-1.0.1.tar.gz (758.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

speechwidgets-1.0.1-py2.py3-none-any.whl (514.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file speechwidgets-1.0.1.tar.gz.

File metadata

  • Download URL: speechwidgets-1.0.1.tar.gz
  • Upload date:
  • Size: 758.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for speechwidgets-1.0.1.tar.gz
Algorithm Hash digest
SHA256 d970c05692991a82f2a9cf0215ebd071a618631d0b663fbcb3bb1e2b73bbdd6f
MD5 74e9912dc058c05466ba07468b9214dd
BLAKE2b-256 28c473b4e66a2ffd3ff36bbfd73ff978a463a6ea54f2717fd1e909043fb6bb5f

See more details on using hashes here.

File details

Details for the file speechwidgets-1.0.1-py2.py3-none-any.whl.

File metadata

  • Download URL: speechwidgets-1.0.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 514.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for speechwidgets-1.0.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2b4816c34239b91f9a530d81e1fe68e7c72b9cbae2a55ab329b086f17cc16803
MD5 9dcbeef4308c1a51c521d1c029ada80c
BLAKE2b-256 e3c8da39cd0112dd247f1399a7a7c1f444f90f0765b8568503c8f8bfbedd2be2

See more details on using hashes here.

Supported by

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