Displaying 5 results from an estimated 5 matches for "metadata_has_vorbis_comment".
2018 Feb 01
3
libFLAC optimizations request
...than general
compression libraries like zlib, zstd, etc.
Now other small issues; I also made some tickets about them, but I thought
asking here might be better.
1. I would like to avoid saving vorbis comment, by default ~40 bytes. Right
now the only option is to modify stream_encoder.c, see
"metadata_has_vorbis_comment".
2. Speed is very important, therefore I would like to reuse an encoder
without re-initializing everything.
Ideally I would like 2 (exported) functions: "flush" and "restart".
"Flush" is self-explanatory, should properly end the encoding. I could
split myself &q...
2018 Feb 04
2
libFLAC optimizations request
...save another 40 bytes.
Anyway, since metaflac can remove the Vorbis comment using the standard library, then you should be able to create a solution without modifying libFLAC.
Brian
On Feb 4, 2018, at 12:43 AM, Brian Willoughby <brianw at audiobanshee.com> wrote:
> Gabriel,
>
> metadata_has_vorbis_comment is a FLAC__bool which defaults to false. There should be no reason to modify stream_encoder.c, but just modify the caller.
>
> The following command:
>
> metaflac —remove —block-type=VORBIS_COMMENT —don’t-use-padding
>
> … will remove Vorbis comments from existing files, so is...
2018 Feb 04
0
libFLAC optimizations request
Gabriel,
metadata_has_vorbis_comment is a FLAC__bool which defaults to false. There should be no reason to modify stream_encoder.c, but just modify the caller.
The following command:
metaflac —remove —block-type=VORBIS_COMMENT —don’t-use-padding
… will remove Vorbis comments from existing files, so is must be legal without modifyin...
2018 Feb 04
0
libFLAC optimizations request
...since metaflac can remove the Vorbis comment using the standard library, then you should be able to create a solution without modifying libFLAC.
>
> Brian
>
>
> On Feb 4, 2018, at 12:43 AM, Brian Willoughby <brianw at audiobanshee.com> wrote:
>> Gabriel,
>>
>> metadata_has_vorbis_comment is a FLAC__bool which defaults to false. There should be no reason to modify stream_encoder.c, but just modify the caller.
>>
>> The following command:
>>
>> metaflac —remove —block-type=VORBIS_COMMENT —don’t-use-padding
>>
>> … will remove Vorbis comments from e...
2018 Feb 04
1
libFLAC optimizations request
...ince metaflac can remove the Vorbis comment using the standard library, then you should be able to create a solution without modifying libFLAC.
>>
>> On Feb 4, 2018, at 12:43 AM, Brian Willoughby <brianw at audiobanshee.com> wrote:
>>> Gabriel,
>>>
>>> metadata_has_vorbis_comment is a FLAC__bool which defaults to false. There should be no reason to modify stream_encoder.c, but just modify the caller.
>>>
>>> The following command:
>>>
>>> metaflac —remove —block-type=VORBIS_COMMENT —don’t-use-padding
>>>
>>> … will re...