1

What's the ffmpeg command to extract PPM (or Portable Pix Map) files from an existing video?

Like the reverse of this Convert a sequence of ppm images to avi video

1 Answers1

1
ffmpeg -i input.mp4 output_%04d.ppm

Output files will be named output_0001.ppm, output_0002.ppm, etc. See the image muxer documentation for more options and info.

llogan
  • 12,348