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?
- Open AVI file
- Read packets from it
- Decode packets into raw form
- Encode them to h.264
- 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