From 6d7f516513d591360fc58f1e48c89ab317539c4a Mon Sep 17 00:00:00 2001 From: Nicholas Tinsley Date: Fri, 26 Jan 2024 16:44:49 -0500 Subject: [PATCH] Lower quality value suggestion after further testing. --- README.md | 2 +- Sources/SpatialMediaKitTool/SpatialMediaKitTool.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 352534e..af3d2bf 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ OPTIONS: The left eye media file to merge. -r, --right-file The right eye media file to merge. - -q, --quality Output video quality [0-100]. 75 is a good default value. + -q, --quality Output video quality [0-100]. 50 is a good default value. --left-is-primary Set the left file as the "hero" stream that is displayed when viewing in 2D. --right-is-primary Set the right file as the "hero" stream that is displayed when viewing in 2D. --horizontal-field-of-view diff --git a/Sources/SpatialMediaKitTool/SpatialMediaKitTool.swift b/Sources/SpatialMediaKitTool/SpatialMediaKitTool.swift index 76eed25..fbbaa04 100644 --- a/Sources/SpatialMediaKitTool/SpatialMediaKitTool.swift +++ b/Sources/SpatialMediaKitTool/SpatialMediaKitTool.swift @@ -71,7 +71,7 @@ extension SpatialMediaKitTool { @Option(name: .shortAndLong, help: "The right eye media file to merge.") var rightFile: String - @Option(name: .shortAndLong, help: "Output video quality [0-100]. 75 is a good default value.") + @Option(name: .shortAndLong, help: "Output video quality [0-100]. 50 is a good default value.") var quality: Int @Flag(help: "Set the left file as the \"hero\" stream that is displayed when viewing in 2D.")