I am going to develop a program that uses ffmpeg and vlfeat on a linux server.
My task is simply: get some frames from a movie file and feed these frames to vlfeat's sift.
I am reading through some documents regarding using ffmpeg in c development, mainly here and here. As stated in the site, "There is not much "web based" official documentation for using these libraries." And some tutorials there might be a little outdated. I also read around that the API might differ from version to version. So I would like to ask for the following:
Is it safe to follow this tutorial for the current implementation?
- If so, given the impression from above, what are some of the things that should be change for the current implementation? (currently I got ffmpeg-git-c995644)
- If not, what are the functions to acquire the frames of the movie file in any format?
For vlfeat side, if I am to feed a movie's image frame from ffmpeg, what kind of conversion is required so that vlfeat's sift implementation can "digest" the movie's image frame?