readme.txt 893 B

1234567891011121314151617
  1. Quick hack at a transcoder tool from VP3 to Theora
  2. I actually built the avi2vp3 tool with codeWarrior, but it should compile under
  3. VC as well. I have included a source avi file and the converted .vp3 output.
  4. Output is a file with some header info matching YUVMPEG, and for each frame:
  5. FRAME header block matching YUV2MPEG
  6. long (Intel aligned) keyframeflag describing in frame is a keyframe
  7. long (Intel aligned) fsize storing frame size in bytes
  8. bytes[fsize] with binary frame data
  9. The transcode tool is a modification of the current encoder. PUt it into the
  10. win32/experimental subdirectory, and the paths should be correct. It produces
  11. an apparently valid theora stream, but outputs garbage data. The code is packing
  12. the binary frame data in a way that SHOULD work at least imo, but I am probably
  13. missing some initialization issue (or vp3 is not transcodable to theora).