Do you throw away the frame information when you generate an animated sprite sheet?

Do you throw away the frame information when you generate an animated sprite sheet?

I'm quite new here, and I recently posted a question in the Programming forum asking how, if I want to make use (in a game) of an animated sprite sheet like this gorgeous blob by Redshrike --

http://opengameart.org/content/the-blob-ultimate-smash-friends (the blobsheet_0.bmp sprite sheet)

-- I'm supposed to work out precisely where the frame boundaries are for each animation, and, if any frames are repeated in an animation, the order in which all of the frames should appear.

In the past I've used a sprite packer program, which takes all of the individual frames of an animation, then saves them to a sprite sheet like the blob one above, as well as generating a text file that contains information on the dimensions of each frame, and which frames belong to which animation, and in what order. The sprite sheet looked very like the blob sprite sheet in the link above... but, in the uploads that I've browsed through on opengameart.org so far, I haven't found any accompanying frame information.

When I asked the question in the Programming forum (where I explain the issue in a bit more detail), I was hoping and expecting that this kind of information was hidden somewhere, and that I was just failing to recognise where it was -- but the two people who have answered so far have said that they've had exactly the same problem, and have had to resort to splicing the sprite sheets manually, using a bitmap editor and guesswork.

The bitmap editor+guesswork approach is always an option, but it takes a lot of time and effort (for someone who is more adept at coding than art) to work out, in single-pixel precision, exactly what the artist intended for each frame. It feels as if we're trying to reverse-engineer some closed-source, proprietary bit of of art that we've ripped nefariously from the resources of a game, rather than using an ostensibly open-source art resource, which I think is what this site is intended for.

If you're an artist who makes animations and produces sprite sheets like this, do you use a sprite packer program to generate your sprite sheets? If so, does that program, along with the sprite sheet, generate a text file or some other file, which might contain information on the animation? If so, it would be really helpful if you could upload that file along with your sprite sheet: it would make the lives of programmers wanting to incorporate your art into their games so much easier.

OR, if you don't get a file like that, and you were presented with a sprite sheet like this blob example, and you wanted to get that back into a form in which you could see all of its animations running, what would you do? Is there some technique (or information embedded in the sprite sheet) that has eluded me and the other programmers?