I write windows phone 7 application and there is a next problem:

My app gets a stream of file with audio in aac format which is in mp4 container. So I need get from this stream sequence of bytes with only aac data. How can I do that?

After that I need to use this data in MediaStreamSource class. Therefore it is also necessary to obtain information such as bitrate of aac frames. Will be that information in the resulting sequence of bytes, or it can also be obtained from the mp4 container?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

this is the link from where you can get the header of the ACC Frame. http://wiki.multimedia.cx/index.php?title=ADTS Read first 9 bytes and from that read bits accordingly to get the value. i.e. bit from 30 to 43 gives the total length of the frame.

hope this will help you to start.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.