From 0476bbfdce9136c0f6e8cfd2ea71ac01a6136209 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Sat, 10 Oct 2015 16:01:58 -0700 Subject: [PATCH] Fix default width/height --- cuburn/genome/specs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cuburn/genome/specs.py b/cuburn/genome/specs.py index 36c723e..ad8129a 100644 --- a/cuburn/genome/specs.py +++ b/cuburn/genome/specs.py @@ -121,8 +121,8 @@ profile = ( , 'shard': Scalar(0, 'Pack this many frames in each output file ' '(causing start, end, and skip to be ignored)') - , 'height': Scalar(1920, 'Output height in pixels') - , 'width': Scalar(1080, 'Output width in pixels') + , 'height': Scalar(720, 'Output height in pixels') + , 'width': Scalar(1280, 'Output width in pixels') , 'spp': RefScalar(2000, 'camera.spp', 'Base samples per pixel') , 'filter_order': list_(enum(filters.keys()), default_filters)