mirror of
https://github.com/iluvcapra/ptulsconv.git
synced 2026-01-01 17:30:47 +00:00
Added some more documentation
This commit is contained in:
@@ -1,16 +1,18 @@
|
|||||||
.\" Manpage for ptulsconv
|
.\" Manpage for ptulsconv
|
||||||
.\" Contact https://github.com/iluvcapra/ptulsconv
|
.\" Contact https://github.com/iluvcapra/ptulsconv
|
||||||
.TH ptulsconv 1 "12 Feb 2020" "0.3.3" "ptulsconv man page"
|
.TH ptulsconv 1 "15 May 2020" "0.4.0" "ptulsconv man page"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.BR "ptulsconv" " \- convert
|
.BR "ptulsconv" " \- convert
|
||||||
.IR "Avid Pro Tools" " text exports"
|
.IR "Avid Pro Tools" " text exports"
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
ptulsconv [OPTIONS] Export.txt
|
ptulsconv [OPTIONS] Export.txt
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
Description
|
Convert a Pro Tools text export into a flat list of clip names with timecodes. A tagging
|
||||||
|
language is interpreted to add columns and type the data. The default output format is
|
||||||
|
an XML file for import into Filemaker Pro.
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
.IP "-h, --help"
|
.IP "-h, --help"
|
||||||
show a help message and exit
|
show a help message and exit.
|
||||||
.TP
|
.TP
|
||||||
.RI "-i " "TC"
|
.RI "-i " "TC"
|
||||||
Don't output events before this timecode, and offset all remaining
|
Don't output events before this timecode, and offset all remaining
|
||||||
@@ -18,7 +20,17 @@ events to start at this timecode.
|
|||||||
.TP
|
.TP
|
||||||
.RI "-o " "TC"
|
.RI "-o " "TC"
|
||||||
Don't output events occurring after this timecode.
|
Don't output events occurring after this timecode.
|
||||||
.SH SEE ALSO
|
.TP
|
||||||
See Also
|
.RI "-m "
|
||||||
|
Include muted clips.
|
||||||
|
.TP
|
||||||
|
.RI "--xform " "NAME"
|
||||||
|
Convert the output with a built-in output transform.
|
||||||
|
.TP
|
||||||
|
.RI "--show-available-tags"
|
||||||
|
Print a list of tags that are interpreted and exit.
|
||||||
|
.TP
|
||||||
|
.RI "--show-available-transforms"
|
||||||
|
Print a list of built-in output transforms and exit.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Jamie Hardt (contact at https://github.com/iluvcapra/ptulsconv)
|
Jamie Hardt (contact at https://github.com/iluvcapra/ptulsconv)
|
||||||
|
|||||||
@@ -17,7 +17,10 @@ def main():
|
|||||||
# parser.add_option('-P', '--progress', default=False, action='store_true', dest='show_progress',
|
# parser.add_option('-P', '--progress', default=False, action='store_true', dest='show_progress',
|
||||||
# help='Show progress bar.')
|
# help='Show progress bar.')
|
||||||
parser.add_option('-m', '--include-muted', default=False, action='store_true', dest='include_muted',
|
parser.add_option('-m', '--include-muted', default=False, action='store_true', dest='include_muted',
|
||||||
help='Read muted clips.')
|
help='Include muted clips.')
|
||||||
|
|
||||||
|
parser.add_option('--xform', dest='xslt', help="Convert with built-is XSLT transform.",
|
||||||
|
default=None, metavar='NAME')
|
||||||
|
|
||||||
parser.add_option('--show-available-tags', dest='show_tags',
|
parser.add_option('--show-available-tags', dest='show_tags',
|
||||||
action='store_true',
|
action='store_true',
|
||||||
@@ -27,8 +30,7 @@ def main():
|
|||||||
action='store_true',
|
action='store_true',
|
||||||
default=False, help='Display available built-in XSLT transforms.')
|
default=False, help='Display available built-in XSLT transforms.')
|
||||||
|
|
||||||
parser.add_option('--xform', dest='xslt', help="Convert with built-is XSLT transform.",
|
|
||||||
default=None, metavar='NAME')
|
|
||||||
(options, args) = parser.parse_args(sys.argv)
|
(options, args) = parser.parse_args(sys.argv)
|
||||||
|
|
||||||
print_banner_style("%s %s (c) 2020 %s. All rights reserved." % (__name__, __version__, __author__))
|
print_banner_style("%s %s (c) 2020 %s. All rights reserved." % (__name__, __version__, __author__))
|
||||||
|
|||||||
Reference in New Issue
Block a user