Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/record.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-04-20 23:18:23 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-04-20 23:19:18 (GMT)
commit88f2a5f3c2834f508a19f7cc8a4ec5a8ea2b0916 (patch)
tree2760f47677ca16dff8b0344572f3da8560849738 /record.py
parent2e08c002759d09e31d13b96de02490d467da4e16 (diff)
Rewrite glive.py
* Use uuid and do not md5 video files * Fallback to ximagesink if xvimagesink is unaccessible * Use one pass for encodings * Remove glivex and add thumb_play to glive
Diffstat (limited to 'record.py')
-rw-r--r--record.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/record.py b/record.py
index 94333d8..0b2f032 100644
--- a/record.py
+++ b/record.py
@@ -37,7 +37,6 @@ from model import Model
from ui import UI
from recordtube import RecordTube
from glive import Glive
-from glivex import GliveX
from gplay import Gplay
from greplay import Greplay
from recorded import Recorded
@@ -81,8 +80,7 @@ class Record(activity.Activity):
#the main classes
self.m = Model(self)
self.glive = Glive(self)
- self.glivex = GliveX(self)
- self.gplay = Gplay()
+ self.gplay = Gplay(self)
self.ui = UI(self)
#CSCL
@@ -139,7 +137,6 @@ class Record(activity.Activity):
self.m.doShutter()
else:
self.glive.stop()
- self.glivex.stop()
def restartPipes(self):
@@ -160,8 +157,6 @@ class Record(activity.Activity):
self.gplay.stop( )
if (self.glive != None):
self.glive.stop( )
- if (self.glivex != None):
- self.glivex.stop( )
#this calls write_file
activity.Activity.close( self )