Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 506 Bytes

File metadata and controls

11 lines (8 loc) · 506 Bytes

FFMpeg-decode-example

Example how to use ffmpeg to decode video file. Link to article about decode with FFMpeg. Russian article.

Example shows you the basic FFmpeg functions. Sample program opens video file and stores to a disk first 50 frames. You can change descriptions to setup program:

#define FILE_NAME "C:\\temp\\test.avi"
#define OUTPUT_FILE_PREFIX "c:\\temp\\image%d.bmp"
#define FRAME_COUNT 50