Add prores as an option on the command line

This commit is contained in:
Steven Robertson 2017-04-24 16:39:44 -07:00
parent 9892acbc7f
commit f83e36d948

View File

@ -57,7 +57,7 @@ def add_args(parser=None):
spa.add_argument('--height', type=int, metavar='PX') spa.add_argument('--height', type=int, metavar='PX')
out = parser.add_argument_group('Output options') out = parser.add_argument_group('Output options')
out.add_argument('--codec', choices=['jpeg', 'png', 'tiff', 'x264', 'vp8', 'vp9']) out.add_argument('--codec', choices=['jpeg', 'png', 'tiff', 'x264', 'vp8', 'vp9', 'prores'])
return parser return parser
def get_from_args(args): def get_from_args(args):