add type, install oxtimeline
This commit is contained in:
parent
d85539586b
commit
242b9f5158
2 changed files with 3 additions and 2 deletions
|
@ -18,8 +18,8 @@ import oxgst
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
parser = OptionParser()
|
parser = OptionParser()
|
||||||
parser.add_option('-x', '--width', dest='width', help='pixels per tile, defaults to 1500px', default=1500)
|
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)
|
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('-o', '--prefix', dest='prefix', help='prefix for timeline tiles')
|
||||||
parser.add_option('-i', '--input', dest='input', help='video input')
|
parser.add_option('-i', '--input', dest='input', help='video input')
|
||||||
(opts, args) = parser.parse_args()
|
(opts, args) = parser.parse_args()
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -8,6 +8,7 @@ from distutils.core import setup
|
||||||
setup(name="oxtools",
|
setup(name="oxtools",
|
||||||
scripts = [
|
scripts = [
|
||||||
'bin/oxposter',
|
'bin/oxposter',
|
||||||
|
'bin/oxtimeline',
|
||||||
],
|
],
|
||||||
packages = [
|
packages = [
|
||||||
'oxgst',
|
'oxgst',
|
||||||
|
|
Loading…
Reference in a new issue