Displaying 4 results from an estimated 4 matches for "ga80d57f9069e354cbf1a15a3e3ad9ca78".
2024 Oct 13
1
C API: How to get a seektable for very long files?
...manns at gmx.net>:
>
> I cannot find any clues in the documentation how to write a
> seektable/reserve space for it.
> Can someone help me out?
>
There's actually quite a lot of documentation for this.
Please review https://xiph.org/flac/api/group__flac__stream__encoder.html#ga80d57f9069e354cbf1a15a3e3ad9ca78
I quote:
> SEEKTABLE blocks are handled specially. Since you will not know the
> values for the seek point stream offsets, you should pass in a
> SEEKTABLE 'template', that is, a SEEKTABLE object with the required
> sample numbers (or placeholder points), with 0 for the frame_s...
2024 Oct 13
1
C API: How to get a seektable for very long files?
Hi Martijn,
Am 13.10.24 um 21:00 schrieb Martijn van Beurden:
>
> There's actually quite a lot of documentation for this.
>
> Please review https://xiph.org/flac/api/group__flac__stream__encoder.html#ga80d57f9069e354cbf1a15a3e3ad9ca78
>
> I quote:
>> SEEKTABLE blocks are handled specially. Since you will not know the
>> values for the seek point stream offsets, you should pass in a
>> SEEKTABLE 'template', that is, a SEEKTABLE object with the required
>> sample numbers (or placeholder points...
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?
...13.10.24 um 22:33 schrieb Stefan Oltmanns:
> Hi Martijn,
>
> Am 13.10.24 um 21:00 schrieb Martijn van Beurden:
>>
>> There's actually quite a lot of documentation for this.
>>
>> Please review https://xiph.org/flac/api/
>> group__flac__stream__encoder.html#ga80d57f9069e354cbf1a15a3e3ad9ca78
>>
>> I quote:
>>> SEEKTABLE blocks are handled specially. Since you will not know the
>>> values for the seek point stream offsets, you should pass in a
>>> SEEKTABLE 'template', that is, a SEEKTABLE object with the required
>>> sample number...