On Wed, May 27, 2009 at 11:41 AM, James Wilson <jfcwilson at yahoo.com>
wrote:
> I'm an adventure?games dev, and I'm trying to compress my video to
a sort
> of "AVI Theora". I want to use AVI instead of Ogg as the
container
> format, but retain the Theora compressed core.
> The reason I want to use AVI as the container is rather too complicated to
> explain, and I actually don't entirely understand it myself.
> Is this possible?
I'm not aware of anyone who does this currently but it should be
(unlike the case with Vorbis) straightforward. Theora has some setup
data in the first three headers (look at the vorbis rtp draft or the
matroska spec for ideas on how to pack that into a single binary
blob). After that it's one variable-sized compressed data packet per
frame, so as long as you build an index table you should be fine.
-r