|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Rauschen addieren |
|
|
# Rauschen addieren |
|
|
for x in range(frames): |
|
|
for x in range(frames): |
|
|
rand = (np.random.rand() - 0.5) * self.tinnitus.linksRauschenLautstaerke |
|
|
|
|
|
|
|
|
rand = (np.random.rand() - 0.5) # Zufallszahl zwischen -0.5 und 0.5 |
|
|
#links: |
|
|
#links: |
|
|
if self.tinnitus.linksRauschenLautstaerke: |
|
|
if self.tinnitus.linksRauschenLautstaerke: |
|
|
outdata[x][0] += rand |
|
|
|
|
|
|
|
|
outdata[x][0] += rand * self.tinnitus.linksRauschenLautstaerke |
|
|
#rechts: |
|
|
#rechts: |
|
|
if self.tinnitus.rechtsRauschenLautstaerke: |
|
|
if self.tinnitus.rechtsRauschenLautstaerke: |
|
|
outdata[x][1] += rand |
|
|
|
|
|
|
|
|
outdata[x][1] += rand * self.tinnitus.rechtsRauschenLautstaerke |
|
|
|
|
|
|
|
|
self.start_idx += frames |
|
|
self.start_idx += frames |