Video format
Jump to navigation
Jump to search
GZDoom supports the following video formats for the purpose of playing cutscene videos through MAPINFO or the ScreenJob ZScript API.
- IVF; A container file format for raw VP8 video. Using this format will require providing audio separately with one of GZDooms' supported sound formats. Usually by just providing your videos' audio into an OGG file that has the same name as the video, and is in the same directory. FFmpeg is an open-source command-line tool that can be used to convert most other video formats into video-only ivf files:
ffmpeg -i <INPUT_VIDEO_FILENAME> -vcodec vp8 -an -f ivf output_file.ivf