I am working on a project in which I want to convert AVI file to h.264. I will be using avformat.dll and avcodec.dll for this. Can any one tell me what procedure I should follow?

  1. Open AVI file
  2. Read packets from it
  3. Decode packets into raw form
  4. Encode them to h.264
  5. Save the file

Are these steps in the right order?

All I want is to convert an AVI to h.264 using avcodec.dll and avformat.dll.

Thanks in advance

link|improve this question

Well, if yhey're the right steps, that's probably the right order. I wouldn't, for example, try to leave opening the AVI file until step 4 :-) – paxdiablo Feb 1 '11 at 7:00
@paxdiablo.. but if i dont open the AVI file, how can i read packet from it?:( – nightWatcher Feb 1 '11 at 7:03
go read my comment (which I thought was humorous, but now I'm not so sure) again. I said I wouldn't do that, for exactly the reason you stated. Unless your comment was meant to be humorous in which case we have a "Lost In Translation" moment :-) – paxdiablo Feb 1 '11 at 7:07
@paxdiablo.. I got it now:) lol. My whole attention was on "try to leave opening ..." instead of wouldnt.:P – nightWatcher Feb 1 '11 at 7:40
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.