Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ik5/go-simple-wav-example
An example of doing some Wav file writing using Golang
https://github.com/ik5/go-simple-wav-example
audio example go golang wav wave
Last synced: 29 days ago
JSON representation
An example of doing some Wav file writing using Golang
- Host: GitHub
- URL: https://github.com/ik5/go-simple-wav-example
- Owner: ik5
- License: mpl-2.0
- Created: 2021-03-14T07:49:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-21T06:22:29.000Z (almost 4 years ago)
- Last Synced: 2023-04-14T22:19:33.618Z (over 1 year ago)
- Topics: audio, example, go, golang, wav, wave
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-simple-wav-example
An example of doing some Wav file writing using Golang.A partial implementation of [wav specification](http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/WAVE.html).
The example is for creating PCM little endian wav file using [pcm generator](https://github.com/ik5/gen_pcm) I wrote.
Please note that there great Golang implementations for .WAV format that recommended to use.
This example shows how to generate a simple .WAV file rather than replacing the good pacakges.