Convert all *.avi files in current directory to png sequences

Using python and ffmpeg:

#!/usr/bin/python
# -*- coding: cp1251 -*-

import glob
import os

t=glob.glob("*.avi" ) # search all AVI files

for v in t:
     vv = os.path.splitext(v)[0];
     os.makedirs( vv ) # make a directory for each input file
     pathDst = os.path.join( vv, "%05d.png" ) # deststination path

     os.system("ffmpeg -i {0} {1}".format( v, pathDst ) )

No comments:

Post a Comment