I want to parse webm file and convert to flv format. I can get the simple block array, and some information. like this...
//d is simple block data
var track_number:uint = d.readByte() & 0xF;
var time_code:uint = d.readShort(); //
var flags:uint = d.readUnsignedByte();
var frame_type:uint = flags >> 7;
var lacing:uint = flags >> 1 & 0x3;
how can I get the frame data? and webm have not pps & sps, what can I do for this?