8.4.0. FFmpeg: Audio/Video Converter |
Notes:
For detailed information on FFmpeg see the project pages at http://ffmpeg.sourceforge.net .
8.4.0.0. Video Decoding |
;; Create an avsource object (setq avsource (av-open-video-source "myfile.avi"))You can then access all the frames using methods nextframe and get-frame-rgba .
;; Display all the frames (while (==> avsource nextframe) (rgb-draw-matrix 0 0 (==> avsource get-frame-rgba)) )