diff --git a/docs/source/user/quickstart.rst b/docs/source/user/quickstart.rst index 8f48445..b0a49ff 100644 --- a/docs/source/user/quickstart.rst +++ b/docs/source/user/quickstart.rst @@ -26,10 +26,10 @@ Clips, tracks and markers in your session can contain additional information to make your ADR reports more complete and useful. You add this information with :ref:`tagging`. -* Every ADR clip must have a unique cue number. After the name of each clip, - add the letters ``$QN=`` and then a unique number (any combination of letters - or numbers that don't contain a space). You can type these yourself or add - them with batch-renaming when you're done spotting. +* **Every ADR clip must have a unique cue number.** After the name of each + clip, add the letters ``$QN=`` and then a unique number (any combination of + letters or numbers that don't contain a space). You can type these yourself + or add them with batch-renaming when you're done spotting. * ADR spots should usually have a reason indicated, so you can remember exactly why you're replacing a particular line. Do this by adding the the text ``{R=`` to your clip names after the prompt and then some short text diff --git a/ptulsconv/__main__.py b/ptulsconv/__main__.py index 1158abf..be84a69 100644 --- a/ptulsconv/__main__.py +++ b/ptulsconv/__main__.py @@ -41,6 +41,11 @@ def main(): default='doc', help='Set output format, `raw`, `tagged`, `doc`.') + parser.add_option('-m', '--movie-opts', + dest='movie_opts', + metavar="MOVIE_OPTS", + help="Set movie options") + warn_options = OptionGroup(title="Warning and Validation Options", parser=parser)