Displaying 1 result from an estimated 1 matches for "flac__metadata_get_tags".
2006 Sep 06
1
FLAC__metadata_simple_iterator_set_block corrupting Flac (ogg) stream?
...gram to
view and modify the comment tags in a FLAC file, which appears to be
embedded an Ogg stream. This particular file also has ID3 headers at the
beginning, but I was planning on ignoring those and fixing them up using
some ID3 code later on ...
Now, to read the comments is quite simple:
FLAC__metadata_get_tags(fileName, &tagData);
...
..
.
FLAC__metadata_object_delete(tagData);
For writing to the file, however, I do something along the following lines
(error code stripped out to keep things shorter), this is pretty much as the
flac documentation suggests:
result = FLAC__metadata...