SoundsΒΆ

Example of basic use and manipulation of sounds with Brian hears.

../_images/sphx_glr_sounds_001.png

Out:

pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html

from brian2 import *
from brian2hears import *

sound1 = tone(1*kHz, 1*second)
sound2 = whitenoise(1*second)

sound = sound1+sound2
sound = sound.ramp()

# Comment this line out if you don't have pygame installed
sound.play()

# The first 20ms of the sound
startsound = sound[slice(0*ms, 20*ms)]

subplot(121)
plot(startsound.times, startsound)
subplot(122)
sound.spectrogram()
show()

Total running time of the script: ( 0 minutes 3.577 seconds)

Gallery generated by Sphinx-Gallery