Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antoninpvr/csv2wav
CSV file to WAV
https://github.com/antoninpvr/csv2wav
Last synced: 4 days ago
JSON representation
CSV file to WAV
- Host: GitHub
- URL: https://github.com/antoninpvr/csv2wav
- Owner: AntoninPvr
- License: gpl-3.0
- Created: 2024-07-17T18:25:55.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T12:52:45.000Z (3 months ago)
- Last Synced: 2024-08-06T13:54:09.467Z (3 months ago)
- Language: Python
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# csv2wav
This is a simple python script that converts a CSV file to a WAV file. Useful for listening to data produced by [OpenHantek6022](https://github.com/OpenHantek/OpenHantek6022).
## Usage
For instance just run python `python csv2wav.py -i input.csv -o output.wav -t 0 -v 1`.
## Options
- `-i` or `--input` : input CSV file default is `record.csv`
- `-o` or `--output` : output WAV file default is `record.wav`
- `-t` or `--time-field` : time column index in CSV file default is `0`
- `-v` or `--value-field` : value column index in CSV file default is `1`Csv file can be generated by OpenHantek6022 by selecting the "Export CSV" option in the "Export" menu.
![exportCsv](img/export_csv.png)