https://github.com/dilawar/sound
Dump non-compressed WAV file to a CSV file.
https://github.com/dilawar/sound
cpp wav-audio
Last synced: 8 days ago
JSON representation
Dump non-compressed WAV file to a CSV file.
- Host: GitHub
- URL: https://github.com/dilawar/sound
- Owner: dilawar
- Created: 2013-07-10T05:59:04.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-11-27T08:19:48.000Z (over 7 years ago)
- Last Synced: 2025-03-31T22:33:35.417Z (28 days ago)
- Topics: cpp, wav-audio
- Language: C
- Homepage:
- Size: 267 KB
- Stars: 32
- Watchers: 9
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
__Please consider using https://github.com/dilawar/wav . It has a header only c++11 implementation.__
sound
=====This work started off as a fork of Dr. Taylor’s work http://people.msoe.edu/~taylor/examples/wav.htm (dead link). On `master` branch the project has diverged a lot.
We provide a C++ class to read WAV file. It's content are stored in an array which we finally write to a csv file. You can plot this csv file using any application of your choise. We only support non-compressed WAV file.
On other branches, this project has diverged a lot.
Usage
====Run `make` to build the project. This will create a binary `parseSpeech`.
cmake .
make
./parseSpeech -f /path/to/input.wavIn the end, you will have a `/path/to/input.wav.csv` file. It has two columns: time and signal value at that time.