search for: group__flac__metadata__object

Displaying 6 results from an estimated 6 matches for "group__flac__metadata__object".

2007 Jan 16
3
Help upgrading to 1.1.3 (MD5 sum issues, album art corrupts files)
Hello all, I recently upgraded the libFLAC used in my application Max (http:// sbooth.org/Max/) to 1.1.3 and added preliminary support for album art. During the upgrade I evidently made some coding mistakes with interesting results. I've combed everything over and can't quite see the problems. I've become somewhat frustrated because my code didn't really change
2007 Jan 17
0
Help upgrading to 1.1.3 (MD5 sum issues, album art corrupts files)
...markup for the curious. that looks ok too, assuming addVorbisComment works. the metadata interface also has not changed in flac-1.1.3 but you should use the FLAC__metadata_object_picture_set_* methods to set the picture data instead of altering the block directly: http://flac.sourceforge.net/api/group__flac__metadata__object.html#ga42 http://flac.sourceforge.net/api/group__flac__metadata__object.html#ga43 http://flac.sourceforge.net/api/group__flac__metadata__object.html#ga44 that could be a source of mem corruption or leakage. that's a wierd error though. can you send or host one of the bad FLAC files for me to...
2024 Oct 13
1
C API: How to get a seektable for very long files?
...plate blocks; see metadata.h: > FLAC__metadata_object_seektable_template_*(). If the client does not > support seeking, the SEEKTABLE will have inaccurate offsets which will > slow down or remove the ability to seek in the FLAC stream. Also, take a look at this: https://xiph.org/flac/api/group__flac__metadata__object.html#gab91c8b020a1da37d7524051ae82328cb Hope that helps. Also, as I'm always extra curious when FLAC is used for non-audio purposes: could you perhaps say a little bit about what kind of signals you're compressing? Kind regards, Martijn van Beurden
2024 Oct 13
1
C API: How to get a seektable for very long files?
...>> FLAC__metadata_object_seektable_template_*(). If the client does not >> support seeking, the SEEKTABLE will have inaccurate offsets which will >> slow down or remove the ability to seek in the FLAC stream. > > > Also, take a look at this: > https://xiph.org/flac/api/group__flac__metadata__object.html#gab91c8b020a1da37d7524051ae82328cb > > Hope that helps. Thanks, I have looked at the wrong place (at the encoder documentation, not the metadata). Is the seektable written at the beginning of the file in the metadata block or can there also be a second metadata block at the end? If it...
2024 Oct 13
1
C API: How to get a seektable for very long files?
Hello, I'm using flac to compress s signal data during capture. The sample rate is almost a thousands time higher compared to audio (40 MHz), resulting in a lot of data very quickly. I'm using the C API in my capturing application (mostly copy&paste directly from the example) and it works so far, but unfortunately for longer captures there is no seeking information. How can I tell
2024 Oct 13
2
C API: How to get a seektable for very long files?
...ktable_template_*(). If the client does not >>> support seeking, the SEEKTABLE will have inaccurate offsets which will >>> slow down or remove the ability to seek in the FLAC stream. >> >> >> Also, take a look at this: >> https://xiph.org/flac/api/ >> group__flac__metadata__object.html#gab91c8b020a1da37d7524051ae82328cb >> >> Hope that helps. > > Thanks, I have looked at the wrong place (at the encoder documentation, > not the metadata). > > Is the seektable written at the beginning of the file in the metadata > block or can there also be a seco...