Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2013-05-31 19:49:39 (GMT)
committer Daniel Drake <dsd@laptop.org>2013-05-31 19:51:06 (GMT)
commit902e0952f42229c4ae1b1288899b8dfa06b86b04 (patch)
tree6ba7680c3c643e76b3f02d14e29b1da4dd869f22
parentd1ad6114230c9b811899c933d56720e725f6f92b (diff)
Record high quality video at standard resolution (#4491)
The 400x300 resolution used previously was triggering a sticky situation with XO-4 graphics (http://dev.laptop.org/ticket/12693) Tweak the resolution slightly to work around this problem, and land on a much more standard resolution at the same time.
-rw-r--r--glive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glive.py b/glive.py
index 8fd11e7..9f8c5fa 100644
--- a/glive.py
+++ b/glive.py
@@ -40,7 +40,7 @@ logger = logging.getLogger('glive')
OGG_TRAITS = {
0: { 'width': 160, 'height': 120, 'quality': 16 },
- 1: { 'width': 400, 'height': 300, 'quality': 16 } }
+ 1: { 'width': 384, 'height': 288, 'quality': 16 } }
class Glive:
PHOTO_MODE_PHOTO = 0