Metadata-Version: 2.1
Name: plot-wav
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/averak/plot-wav
Author: Tatsuya Abe
Author-email: abe12@mccc.jp
License: MIT
Keywords: wave spectrogram MFCC audio
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: argparse
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: librosa
Requires-Dist: scipy
Requires-Dist: wave

# plot-wav

[![PyPi](https://badge.fury.io/py/plot-wav.svg)](https://pypi.python.org/pypi/plot-wav/)
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)

This project is a tool for drawing wav files with various acoustic transformations.

## Requirement

- Python3

## Usage

```sh
$ plot-wav --<type> -i <input file> # -o <output file>
```

If no `-o` option is specified, the image will be displayed directly.

The types of conversion are as follows.

- `--wave` - original wave
- `--spec` - spectrogram
- `--mfcc` - MFCC

### Show help

```sh
$ plot-wav -h
```

## Installation

```sh
$ pip install plot-wav
```


