Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

--webcam-size should be 0-100 instead of 0-99 #19

Open
jmlich opened this issue Dec 12, 2021 · 0 comments
Open

--webcam-size should be 0-100 instead of 0-99 #19

jmlich opened this issue Dec 12, 2021 · 0 comments

Comments

@jmlich
Copy link
Contributor

jmlich commented Dec 12, 2021

subject says it all

here is a patch

diff --git a/make-xges.py b/make-xges.py
index 4df2d9d..7aa0593 100755
--- a/make-xges.py
+++ b/make-xges.py
@@ -440,7 +440,7 @@ def main(argv):
     parser.add_argument('--height', metavar='HEIGHT', type=int, default=1080,
                         help='Video height')
     parser.add_argument('--webcam-size', metavar='PERCENT', type=int,
-                        default=25, choices=range(100),
+                        default=25, choices=range(101),
                         help='Amount of screen to reserve for camera')
     parser.add_argument('--stretch-webcam', action='store_true',
                         help='Stretch webcam to 16:9 aspect ratio')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant