Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2010-06-11 15:38:04 (GMT)
committer Daniel Drake <dsd@laptop.org>2010-06-11 15:38:04 (GMT)
commit0d524e62b8d035357165d44a7713da3f1d45e485 (patch)
tree0ddd625591d7fb146638a5a936a2ace25a225f6b
parentf2b6f168366d976923c544075c9ff36ac3e01775 (diff)
Remove Best quality video option
Recording in this mode is too taxing for the XO-1 and even the XO-1.5. The A/V sync is lost. Without significant changes, recording at this resolution/quality is unlikely to be successful on anything except a high end system.
-rw-r--r--constants.py1
-rw-r--r--glive.py3
-rw-r--r--ui.py1
3 files changed, 1 insertions, 4 deletions
diff --git a/constants.py b/constants.py
index 29f674c..1c39e97 100644
--- a/constants.py
+++ b/constants.py
@@ -149,7 +149,6 @@ class Constants:
istrFramesPerSecond = _("%(1)s frames per second")
istrQuality = _("Quality")
istrDefault = _("Default")
- istrBestQuality = _("Best")
istrHighQuality = _("High")
istrLowQuality = _("Low")
istrLargeFile = _("Large file")
diff --git a/glive.py b/glive.py
index 588896b..701f970 100644
--- a/glive.py
+++ b/glive.py
@@ -46,8 +46,7 @@ logger = logging.getLogger('record:glive.py')
OGG_TRAITS = {
0: { 'width': 160, 'height': 120, 'quality': 16 },
- 1: { 'width': 400, 'height': 300, 'quality': 16 },
- 2: { 'width': 640, 'height': 480, 'quality': 32 } }
+ 1: { 'width': 400, 'height': 300, 'quality': 16 } }
THUMB_STUB = gtk.gdk.pixbuf_new_from_file(
os.path.join(get_bundle_path(), 'gfx', 'stub.png'))
diff --git a/ui.py b/ui.py
index d89b819..09222eb 100644
--- a/ui.py
+++ b/ui.py
@@ -2353,7 +2353,6 @@ class VideoToolbar(gtk.Toolbar):
label_text=Constants.istrQuality+':')
self.quality.combo.append_text(Constants.istrLowQuality)
self.quality.combo.append_text(Constants.istrHighQuality)
- self.quality.combo.append_text(Constants.istrBestQuality)
self.quality.combo.set_active(0)
self.insert(self.quality, -1 )