Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/record.py
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2008-07-23 19:40:19 (GMT)
committer Daniel Drake <dsd@laptop.org>2008-07-23 19:40:19 (GMT)
commite52b3274819d5b64f68fcd21dcd8667622542286 (patch)
treec5300e318f45a82b0473b8b3bc1e90c7fc4b5f67 /record.py
parent91de5ab9a80514111120bfb65dbfc9692bedec35 (diff)
Restore P-I-P in video playback mode
Diffstat (limited to 'record.py')
-rwxr-xr-xrecord.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/record.py b/record.py
index 9c1db56..92a5fcf 100755
--- a/record.py
+++ b/record.py
@@ -37,6 +37,7 @@ 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
@@ -74,6 +75,7 @@ class Record(activity.Activity):
#the main classes
self.m = Model(self)
self.glive = Glive(self)
+ self.glivex = GliveX(self)
self.gplay = Gplay()
self.ui = UI(self)
@@ -131,6 +133,7 @@ class Record(activity.Activity):
self.m.doShutter()
else:
self.glive.stop()
+ self.glivex.stop()
def restartPipes(self):
@@ -153,6 +156,8 @@ 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 )