Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Speak.activity/fft_mouth.py
diff options
context:
space:
mode:
Diffstat (limited to 'Speak.activity/fft_mouth.py')
-rw-r--r--Speak.activity/fft_mouth.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Speak.activity/fft_mouth.py b/Speak.activity/fft_mouth.py
index 08564d8..53bcadf 100644
--- a/Speak.activity/fft_mouth.py
+++ b/Speak.activity/fft_mouth.py
@@ -34,9 +34,9 @@ except:
from FFT import *
class FFTMouth(Mouth):
- def __init__(self, audioSource):
+ def __init__(self, audioSource, fill_color):
- Mouth.__init__(self, audioSource)
+ Mouth.__init__(self, audioSource, fill_color)
self.peaks = []
@@ -107,12 +107,12 @@ class FFTMouth(Mouth):
self.context.clip()
# background
- self.context.set_source_rgb(.5,.5,.5)
+ self.context.set_source_rgba(*self.fill_color.get_rgba())
self.context.rectangle(0,0, bounds.width,bounds.height)
self.context.fill()
# Draw the waveform
- self.context.set_line_width(10.0)
+ self.context.set_line_width(min(bounds.height/10.0, 10))
self.context.set_source_rgb(0,0,0)
count = 0
for peak in self.peaks: