Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/mouth.py
diff options
context:
space:
mode:
authorflavio <fdanesse@gmail.com>2012-07-31 13:10:22 (GMT)
committer flavio <fdanesse@gmail.com>2012-07-31 13:10:22 (GMT)
commit777d75ee9daedc65e37f4b15e924feb2f6b6dcb6 (patch)
tree6676aa86b792fb00edd42303fcdd24c34a906063 /mouth.py
parent3e5ee5c748d751ff1a3ffc346389bd1c454aebea (diff)
Modularization of the mouth
Diffstat (limited to 'mouth.py')
-rw-r--r--mouth.py137
1 files changed, 137 insertions, 0 deletions
diff --git a/mouth.py b/mouth.py
index 693d0ca..136ec7b 100644
--- a/mouth.py
+++ b/mouth.py
@@ -28,6 +28,13 @@ from gi.repository import Gdk
from struct import unpack
import numpy.core
+try:
+ from numpy.oldnumeric import ceil
+ from numpy.fft import *
+except:
+ from Numeric import ceil
+ from FFT import *
+
class Mouth(Gtk.DrawingArea):
@@ -94,3 +101,133 @@ class Mouth(Gtk.DrawingArea):
context.stroke()
return True
+
+class WaveformMouth(Mouth):
+ def __init__(self, audioSource, fill_color):
+
+ Mouth.__init__(self, audioSource, fill_color)
+
+ self.buffer_size = 100
+ self.peaks = []
+
+ self.stop = False
+
+ self.y_mag_bias_multiplier = 1
+ self.y_mag = 0.7
+
+ def do_draw(self, context):
+ rect = self.get_allocation()
+ self.param1 = rect.height / 65536.0
+ self.param2 = rect.height / 2.0
+
+ # background
+ context.set_source_rgba(*self.fill_color.get_rgba())
+ context.paint()
+
+ # Draw the waveform
+ context.set_line_width(min(rect.height / 10.0, 10))
+ count = 0
+ buflen = float(len(self.main_buffers))
+ for value in self.main_buffers:
+ peak = float(self.param1 * value * self.y_mag) +\
+ self.y_mag_bias_multiplier * self.param2
+
+ if peak >= rect.height:
+ peak = rect.height
+ if peak <= 0:
+ peak = 0
+
+ x = count / buflen * rect.width
+ context.line_to(x, rect.height - peak)
+
+ count += 1
+ context.set_source_rgb(0, 0, 0)
+ context.stroke()
+
+ return True
+
+class FFTMouth(Mouth):
+ def __init__(self, audioSource, fill_color):
+
+ Mouth.__init__(self, audioSource, fill_color)
+
+ self.peaks = []
+
+ self.y_mag = 1.7
+ self.freq_range = 70
+ self.draw_interval = 1
+ self.num_of_points = 105
+
+ self.stop = False
+
+ #constant to multiply with self.param2 while scaling values
+ self.y_mag_bias_multiplier = 1
+
+ self.fftx = []
+
+ self.scaleX = "10"
+ self.scaleY = "10"
+
+ def processBuffer(self, rect):
+ self.param1 = rect.height / 65536.0
+ self.param2 = rect.height / 2.0
+
+ if(self.stop == False):
+
+ Fs = 48000
+ nfft = 65536
+ self.newest_buffer = self.newest_buffer[0:256]
+ self.fftx = fft(self.newest_buffer, 256, -1)
+
+ self.fftx = self.fftx[0:self.freq_range * 2]
+ self.draw_interval = rect.width / (self.freq_range * 2.)
+
+ NumUniquePts = ceil((nfft + 1) / 2)
+ self.buffers = abs(self.fftx) * 0.02
+ self.y_mag_bias_multiplier = 0.1
+ self.scaleX = "hz"
+ self.scaleY = ""
+
+ if(len(self.buffers) == 0):
+ return False
+
+ # Scaling the values
+ val = []
+ for i in self.buffers:
+ temp_val_float = float(self.param1 * i * self.y_mag) +\
+ self.y_mag_bias_multiplier * self.param2
+
+ if(temp_val_float >= rect.height):
+ temp_val_float = rect.height - 25
+ if(temp_val_float <= 0):
+ temp_val_float = 25
+ val.append(temp_val_float)
+
+ self.peaks = val
+
+ def do_draw(self, context):
+ rect = self.get_allocation()
+
+ self.processBuffer(rect)
+
+ # background
+ context.set_source_rgba(*self.fill_color.get_rgba())
+ context.paint()
+
+ # Draw the waveform
+ context.set_line_width(min(rect.height / 10.0, 10))
+ context.set_source_rgb(0, 0, 0)
+ count = 0
+ for peak in self.peaks:
+ context.line_to(rect.width / 2 + count,
+ rect.height / 2 - peak)
+ count += self.draw_interval
+ context.stroke()
+ count = 0
+ for peak in self.peaks:
+ context.line_to(rect.width / 2 - count,
+ rect.height / 2 - peak)
+ count += self.draw_interval
+ context.stroke()
+
+ return True \ No newline at end of file