search for: streammetadata

Displaying 3 results from an estimated 3 matches for "streammetadata".

2004 Sep 10
2
usage of C++ StreamMetadata interface
Hi, I would like to use the nice C++ wrapper classes for FLAC metadata in a FLAC::Stream::Encoder, but I cannot find an interface to get a "FLAC__StreamMetadata *" from one of those objects. So, as the FLAC::Stream::Encoder.set_metadata() function takes a "FLAC__StreamMetadata **" - so how can I use this, how is this intended to work??? For me all those Metadata classes look nice but useless!? Why is there no conversion, or why does the C...
2004 Sep 10
2
usage of C++ StreamMetadata interface
Josh Coalson wrote: > [...] > why do you need one? all the fields are available though method > calls. just an example: I created an object of the type "FLAC::Metadata::VorbisComment". How will this find it's way to "FLAC::Stream::Encoder.set_metadata()" ??? Thomas
2004 Sep 10
2
Developing SoundFont FLAC compressor using libFLAC
...t I'm a bit lazy in not wanting to implement my own metadata processing routines, although I will do this if there is no other means. On the encoder side I have resorted to manually writing the application metadata header (pretty easy actually, since its just a big endian uint32). Writing the StreamMetaData poses a bigger pain though. Thankfully these were the only 2 problems I had (right now I just don't write the StreamMetaData, which I would like to in the future). Unfortunately the decoder has given me the most trouble (also related to metadata). It appears that all the variations of decoder...