blob: a29b1ff04b8d6d2ae3798c4762c5a27fd727a132 [file] [log] [blame]
Guido van Rossumf06ee5f1996-11-27 19:52:01 +00001#! /usr/bin/env python
Guido van Rossum85f7bd51993-02-25 16:10:16 +00002
3# Print the value of all video parameters
4
5import sys
6import sv, SV
7
8def main():
9 v = sv.OpenVideo()
10 for name in dir(SV):
11 const = getattr(SV, name)
12 if type(const) is type(0):
13 sys.stdout.flush()
14 params = [const, 0]
15 try:
16 v.GetParam(params)
17 except sv.error, msg:
18## print name, msg
19 continue
20 print name, params
21
22main()
23