### Prerequisites - [x] I have written a descriptive issue title - [x] I have verified that I am running the latest version of ImageSharp - [x] I have verified if the problem exist in both `DEBUG` and `RELEASE` mode - [x] I have searched [open](https://github.com/SixLabors/ImageSharp/issues) and [closed](https://github.com/SixLabors/ImageSharp/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported ### ImageSharp version 3.1.11 ### Other ImageSharp packages and versions N/A ### Environment (Operating system, version and so on) Windows ### .NET Framework version .NET 9 ### Description The FrameMetadataCollection of ImageInfo is not populated for animated webp images and is always 0. ### Steps to Reproduce ```csharp var imageInfo = Image.Identify(stream); var numFrames = imageInfo.FrameMetadataCollection.Count; ``` ### Images _No response_