Extraire le cadre vidéo à l'aide de FFMPEG
ffmpeg -i "C:\Applications\FFMPEG\aa.mp4" "frames/out-%03d.jpg"
Eager Eel
ffmpeg -i "C:\Applications\FFMPEG\aa.mp4" "frames/out-%03d.jpg"
ffmpeg -i input.flv -ss 00:00:14.435 -vframes 1 out.png
ffmpeg -i input-video.avi -vn -acodec copy output-audio.aac
# extract single image from timestamp
# -ss : seek to position
# -vframes:v 1 : extract single image
ffmpeg -i input.mov -ss 00:00:15 -vframes:v 1 out.png