Mercurial > hg > nsaunier > traffic-intelligence
view scripts/info-video.py @ 1013:d6f121ded971
Moving pull request
| author | Wendlasida |
|---|---|
| date | Fri, 01 Jun 2018 17:29:01 -0400 |
| parents | 933670761a57 |
| children | 16932cefabc1 |
line wrap: on
line source
#! /usr/bin/env python3 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))
