Skip to content

Instantly share code, notes, and snippets.

View masfj's full-sized avatar

m13o masfj

View GitHub Profile
@jimmcgowan
jimmcgowan / wavecuepoint.c
Last active August 13, 2024 01:49
This code reads a .wav file and a text file containing marker locations (specified as frame indexes, one per line) and creates a new .wav file with embedded cue points for each location. The code is standard, portable C.
//
// wavecuepoint.c
// Created by Jim McGowan on 29/11/12.
// [email protected]
// [email protected]
//
// This function reads a .wav file and a text file containing marker locations (specified as frame indexes, one per line)
// and creates a new .wav file with embedded cue points for each location. The code is standard, portable C.
//
// For a full description see http://bleepsandpops.com/post/37792760450/adding-cue-points-to-wav-files-in-c