Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/recorded.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-01 14:29:23 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-01 14:29:23 (GMT)
commit26714bc83d32fd202977f0812948b7eded805d56 (patch)
treee7975a72373f08cb0cabab94b2d3a157270ae067 /recorded.py
parent2e4ead88dc384b46afd90cd2cd0711291c31afe5 (diff)
playback hq audio and image
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@823 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'recorded.py')
-rw-r--r--recorded.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/recorded.py b/recorded.py
index a93fbee..3d58b7b 100644
--- a/recorded.py
+++ b/recorded.py
@@ -25,6 +25,7 @@ from gtk import gdk
from instance import Instance
import utils
import serialize
+import record
class Recorded:
@@ -147,14 +148,14 @@ class Recorded:
if (self.audioImageFilename == None):
audioPixbuf = self.getThumbPixbuf()
else:
- audioFilepath = self.getAudioImageFilepath()
+ audioFilepath = self._getAudioImageFilepath()
if (audioFilepath != None):
audioPixbuf = gtk.gdk.pixbuf_new_from_file(audioFilepath)
return audioPixbuf
- def getAudioImageFilepath( self ):
+ def _getAudioImageFilepath( self ):
if (self.audioImageFilename != None):
audioFilepath = os.path.join(Instance.tmpPath, self.audioImageFilename)
return os.path.abspath(audioFilepath)