From 8b3fe984236bb71c7413fe1985c3a2450615e6ed Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Sat, 11 Apr 2026 22:31:30 +0100 Subject: [PATCH] feat(defaults): update default clip length to 60s 30 seconds felt ever so slightly too short for the average case, let's update to 60 and see how it goes. --- rewind/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rewind/cli.py b/rewind/cli.py index fa29250..4a791d9 100755 --- a/rewind/cli.py +++ b/rewind/cli.py @@ -9,8 +9,8 @@ def build_clip_parser(subparsers: argparse._SubParsersAction) -> None: clip_parser.add_argument( "-s", "--seconds", type=int, - default=30, - help="Number of seconds to include in the clip (default: 30)" + default=60, + help="Number of seconds to include in the clip (default: 60)" ) def build_save_parser(subparsers: argparse._SubParsersAction) -> None: @@ -78,4 +78,4 @@ def main(argv=None) -> int: return 0 if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file + sys.exit(main())