Zend certified PHP/Magento developer

Loading JPG frames into framebuffer at specified framerate

I currently need some assistance with a project I am currently doing for an embedded linux system. The objective is to play image “frames” (in JPG) as if they were a movie at a specified framerate (24fps). I am having trouble determining which APIs to use for this, as I am not too familiar with pixel mathematics so using the <linux/fb.h> directly has been very difficult.

I have been experimenting with fbi, but this tool does not allow me to play the images at 24fps, as the shortest interval I can use between each image with fbi is 1 second. What would be the best API to use for this application? I am looking for something with not too much overhead that I can eventually integrate audio synchronization into down the line. Thank you.