“Cómo imprimir el nivel de voz en Python” Código de respuesta

Cómo imprimir el nivel de voz en Python

from wavefile import WaveReader

with WaveReader("/Users/rmartin/audio.wav") as r:
    for data in r.read_iter(size=512):
        left_channel = data[0]
        volume = np.linalg.norm(left_channel)
        print volume
PARTHIB BANERJEE

Cómo imprimir el nivel de voz en Python

# Print out realtime audio volume as ascii bars

import sounddevice as sd
import numpy as np

def print_sound(indata, outdata, frames, time, status):
    volume_norm = np.linalg.norm(indata)*10
    print ("|" * int(volume_norm))

with sd.Stream(callback=print_sound):
    sd.sleep(10000)
PARTHIB BANERJEE

Respuestas similares a “Cómo imprimir el nivel de voz en Python”

Preguntas similares a “Cómo imprimir el nivel de voz en Python”

Más respuestas relacionadas con “Cómo imprimir el nivel de voz en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código