view scripts/info-video.py @ 997:4f3387a242a1

updated utils to python 3
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 25 May 2018 18:15:18 -0400
parents 373e8ef6ee25
children 933670761a57
line wrap: on
line source

#! /usr/bin/env python

import sys, argparse
import cvutils


parser = argparse.ArgumentParser(description='The program displays the video.')
parser.add_argument('-i', dest = 'videoFilename', help = 'name of the video file', required = True)

args = parser.parse_args()

videoProperties = cvutils.infoVideo(args.videoFilename)
for k,v in videoProperties.iteritems():
    print('Video {}: {}'.format(k, v))