Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/record.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-12-20 19:02:59 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-12-20 19:02:59 (GMT)
commitd8b2eeabdbcdf71688dec07ece72723c43d5efde (patch)
tree774b7dd61ab12cd8a18194f4e5a9d3065a81601a /record.py
parent86975b24bf574da0091db7a4fd3d950980a90bef (diff)
git-svn-id: http://mediamods.com/public-svn/camera-activity/tags/48@984 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'record.py')
-rwxr-xr-xrecord.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/record.py b/record.py
index 41e755a..c1b3ae4 100755
--- a/record.py
+++ b/record.py
@@ -126,7 +126,9 @@ class Record(activity.Activity):
def _activeCb( self, widget, pspec ):
- print('_activeCb')
+ import time
+ print( '_activeCb', self.JUST_LAUNCHED, self.props.active, time.time() )
+
if (self.JUST_LAUNCHED):
self.JUST_LAUNCHED = False
return
@@ -484,7 +486,7 @@ class Record(activity.Activity):
recd.downloadedFromBuddy = True
if (recd.type == Constants.TYPE_AUDIO):
filepath = recd.getMediaFilepath()
- bundlePath = os.path.join(Instance.tmpPath, "audioBundle")
+ bundlePath = os.path.join(Instance.instancePath, "audioBundle")
bundlePath = utils.getUniqueFilepath(bundlePath, 0)
cmd = "split -a 1 -b " + str(recd.mediaBytes) + " " + str(filepath) + " " + str(bundlePath)
@@ -493,12 +495,12 @@ class Record(activity.Activity):
bundleName = os.path.basename(bundlePath)
mediaFilename = str(bundleName) + "a"
- mediaFilepath = os.path.join(Instance.tmpPath, mediaFilename)
- mediaFilepathExt = os.path.join(Instance.tmpPath, mediaFilename+".ogg")
+ mediaFilepath = os.path.join(Instance.instancePath, mediaFilename)
+ mediaFilepathExt = os.path.join(Instance.instancePath, mediaFilename+".ogg")
os.rename(mediaFilepath, mediaFilepathExt)
audioImageFilename = str(bundleName) + "b"
- audioImageFilepath = os.path.join(Instance.tmpPath, audioImageFilename)
- audioImageFilepathExt = os.path.join(Instance.tmpPath, audioImageFilename+".png")
+ audioImageFilepath = os.path.join(Instance.instancePath, audioImageFilename)
+ audioImageFilepathExt = os.path.join(Instance.instancePath, audioImageFilename+".png")
os.rename(audioImageFilepath, audioImageFilepathExt)
recd.mediaFilename = os.path.basename(mediaFilepathExt)
@@ -513,7 +515,7 @@ class Record(activity.Activity):
self.__class__.log.debug("_getAlbumArtCb:" + str(pixbuf) + "," + str(recd))
if (pixbuf != None):
- imagePath = os.path.join(Instance.tmpPath, "audioPicture.png")
+ imagePath = os.path.join(Instance.instancePath, "audioPicture.png")
imagePath = utils.getUniqueFilepath( imagePath, 0 )
pixbuf.save( imagePath, "png", {} )
recd.audioImageFilename = os.path.basename(imagePath)