Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/library/pippy/sound.py
Commit message (Collapse)AuthorAgeFilesLines
* Correction Pippy 'Playwave'flavio2012-09-191-4/+4
|
* pep8 fixv46Rafael Ortiz2012-02-171-1/+1
|
* cleaning debug codeRafael Ortiz2012-02-171-6/+0
|
* restoring license headerv45Rafael Ortiz2012-02-161-0/+3
|
* Not harcoding tamtam-edit pathRafael Ortiz2012-02-161-31/+30
|
* v1 of finding tamtam with activity registryRafael Ortiz2012-01-261-2/+12
|
* Better way to go to TamTamEditRafael Ortiz2011-06-141-1/+2
|
* Fix Pippy sound library on non-OLPC OS systems (SL#638)v40Sascha Silbe2011-03-031-10/+22
| | | | | | | | | | Replace the hardcoded paths with corresponding lookups and raise an exception if the TamTamEdit sound library cannot be found. Inspired by patches from Julie Pichon <julie.pichon@gmail.com>. Signed-off-by: Sascha Silbe <silbe@activitycentral.com> Acked-by: James Cameron <quozl@laptop.org>
* pep8 adjustmentsJames Cameron2010-12-231-76/+175
| | | | | | | | | - excluded examples because we don't have consensus, - excluded physics since this is a copy of an upstream, - excluded query.py since this code does not currently work. Co-authored-by: Nitin Gupta <gupta.nitingupta.nitin@gmail.com> Tested-by: James Cameron <quozl@laptop.org>
* add COPYING file: #1571James Cameron2010-05-141-0/+16
| | | | | | | | | | | | | | | | | | | | | - most of pippy is GPLv2+, but library/pippy/physics is GPLv3+, conflict unresolved, - add missing activity license file COPYING chosen based on activity.info license field GPLv2+, - add missing copyright headers to source files that either didn't have them (library/pippy/{__init__,sound}.py) or had abbreviated versions (library/pippy/{console,game}.py) - spell organisation name correctly (s/Per/per), - express copyright years in full, - include GPLv3+ LICENSE from Elements upstream SVN, as library/pippy/physics/LICENSE Fixes sugarlabs.org #1571 and laptop.org #9181.
* Allow playing sounds named with a full filesystem path.C. Scott Ananian2008-11-171-1/+4
|
* Give a friendly error message if the audio library isn't found.Chris Ball2008-03-151-2/+7
|
* Look for the audio library in /home as well as /usr/share.Chris Ball2008-03-141-5/+10
|
* Fix import of pippy.sound library (missing temp_path definition).C. Scott Ananian2007-12-171-0/+1
|
* Move imports around to ensure 'import pippy' is as fast as possible.C. Scott Ananian2007-12-141-1/+5
|
* Improve speed of 'import pippy' by removing the 'from sugar import env'.C. Scott Ananian2007-12-121-5/+6
| | | | We only do this step for 'audioOut' now.
* Speed up import pippy sound (by a lot!) by removing an unused import.C. Scott Ananian2007-12-111-1/+0
| | | | 'import sugar.activity.activity' seems to be very slow!
* Factor out a pippy library, which programs can use with 'import pippy'.C. Scott Ananian2007-12-111-0/+210
The pygame portion of the library uses 'best practices' to avoid eating up CPU, and pauses & suspends after 20 seconds of inactivity.