Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.