Is it possible to use oiio tool to convert a mov to a sequence of images? There is a way to extract a single frame (--subimage
) but this gets very slow for longer QTs (more than 2000 frames). Since it can extract one frame there should be a way to tell it to extract all to a sequence but so far I failed to find the right syntax. -a
instead of -i
looks promising as it should process all subimages but then there seems to be no valid syntax to specify a sequence for the output.
oiiotool -a "input.mov" --colorconvert "Output - sRGB" "ACES - ACEScct" --resize 1920x0 --ch R,G,B --compression jpeg:90 --colorconvert "ACES - ACEScct" "Output - sRGB" -o c:\temp\__jpgs\output.####.jpg
I'm trying to avoid going through ffmpeg before using oiio for colour handling but that seems to be not supported.