removed segment method, replaced with hybrid

This commit is contained in:
Zen 2020-08-26 22:46:17 +03:00
parent 8bf69cfd7b
commit d7ad843773

View file

@ -89,8 +89,8 @@ def arg_parsing():
# Splitting
split_group = parser.add_argument_group('Splitting')
split_group.add_argument('--chunk_method', '-cm', type=str, default='segment', help='Method for creating chunks',
choices=['segment', 'select', 'vs_ffms2', 'hybrid'])
split_group.add_argument('--chunk_method', '-cm', type=str, default='hybrid', help='Method for creating chunks',
choices=['select', 'vs_ffms2', 'hybrid'])
split_group.add_argument('--scenes', '-s', type=str, default=None, help='File location for scenes')
split_group.add_argument('--split_method', type=str, default='pyscene', help='Specify splitting method',
choices=['pyscene', 'aom_keyframes'])