Skip to content

A Static C-Library to access, read and write ".wav" files

License

Notifications You must be signed in to change notification settings

vpvpranav/WAVFile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A C Library to read and write ".WAV" Files. Contains function to Open, Read, Write(16-bit PCM), Tell and Seek in a .wav file

Here are the core functions provided:

WAVFile *wav_open(const char *filename, const char *mode);

int wav_read_sample(WAVFile *file);

void wav_write_sample(WAVFile *file, int sample);

void wav_seek(WAVFile *file, long sample_offset);

long wav_tell(WAVFile *file);

void wav_close(WAVFile *file);

About

A Static C-Library to access, read and write ".wav" files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages