From c1cb7966af41bb6e201f66162eb5de08867efb26 Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Sun, 3 Nov 2019 00:02:05 -0700 Subject: [PATCH] cutter: Default to full cuts, not fast --- cutter/cutter/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cutter/cutter/main.py b/cutter/cutter/main.py index 6fee313..91d5dda 100644 --- a/cutter/cutter/main.py +++ b/cutter/cutter/main.py @@ -633,7 +633,7 @@ def main( for location, backend_config in config.items(): backend_type = backend_config.pop('type') no_transcode_check = backend_config.pop('no_transcode_check', False) - cut_type = backend_config.pop('cut_type', 'fast') + cut_type = backend_config.pop('cut_type', 'full') if backend_type == 'youtube': backend_type = Youtube elif backend_type == 'local':