ffmpeg -i DJI_0012.MOV -vf fps=1/3 frame%03d.jpg
Parameters
fps (change to how many frames you want to grab each second)
%03d is padding frame number with 3 zeros. so maximum frames in this case is 999
Output: frame001.jpg
ffmpeg -i DJI_0012.MOV -vf fps=1/3 frame%03d.jpg
Parameters
fps (change to how many frames you want to grab each second)
%03d is padding frame number with 3 zeros. so maximum frames in this case is 999
Output: frame001.jpg