You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
when using getID3 to store meta information on different file formats I noticed that the information returned for GIF files is way too large and it takes quite some time.
Wouldn't it make sense to use the $option_extra_info (or another option) to skip information on global_color_table and extension_blocks to make processing more efficient?
Thanks for considering.
The text was updated successfully, but these errors were encountered:
The global_color_table still needs to be read/skipped (although parsing it into actual table values is not required). extension_blocks need to be parsed to check whether the GIF is animated or not.
However I can make it not return that data if option_extra_info is false. You might save a millisecond or two by not expanding the global color table, but it's not a whole lot faster.
Changed in fe4e0a5
Hi,
when using getID3 to store meta information on different file formats I noticed that the information returned for GIF files is way too large and it takes quite some time.
Wouldn't it make sense to use the
$option_extra_info
(or another option) to skip information onglobal_color_table
andextension_blocks
to make processing more efficient?Thanks for considering.
The text was updated successfully, but these errors were encountered: