add type, install oxtimeline

This commit is contained in:
j 2010-10-14 12:37:14 +02:00
parent d85539586b
commit 242b9f5158
2 changed files with 3 additions and 2 deletions

View File

@ -18,8 +18,8 @@ import oxgst
if __name__ == '__main__':
parser = OptionParser()
parser.add_option('-x', '--width', dest='width', help='pixels per tile, defaults to 1500px', default=1500)
parser.add_option('-y', '--height', dest='height', help='timeline height, defaults to 64px', default=64)
parser.add_option('-x', '--width', dest='width', help='pixels per tile, defaults to 1500px', default=1500, type="int")
parser.add_option('-y', '--height', dest='height', help='timeline height, defaults to 64px', default=64, type="int")
parser.add_option('-o', '--prefix', dest='prefix', help='prefix for timeline tiles')
parser.add_option('-i', '--input', dest='input', help='video input')
(opts, args) = parser.parse_args()

View File

@ -8,6 +8,7 @@ from distutils.core import setup
setup(name="oxtools",
scripts = [
'bin/oxposter',
'bin/oxtimeline',
],
packages = [
'oxgst',