pyaudio在python2和python3中播放不同的音调

2024-04-29 20:37:45 发布

您现在位置:Python中文网/ 问答频道 /正文

我刚刚开始使用pyaudio,我编写了一个简单的函数来播放音符。不过,根据我使用的Python版本的不同,注释听起来会有所不同:

from __future__ import division
import math
import pyaudio


BITS_PER_BYTE = 8  # for clarity
SAMPLE_BIT_DEPTH = 8  # i.e. each sample is 1 byte
SAMPLES_PER_SECOND = 16000
NOTE_TIME_SECONDS = 1
MIDDLE_C_HZ = 523.3

CYCLES_PER_SECOND = SAMPLES_PER_SECOND / MIDDLE_C_HZ
NUM_SAMPLES = SAMPLES_PER_SECOND * NOTE_TIME_SECONDS


def play_note():
    audio = pyaudio.PyAudio()

    stream = audio.open(
        format=audio.get_format_from_width(SAMPLE_BIT_DEPTH / BITS_PER_BYTE),
        channels=1,
        rate=SAMPLES_PER_SECOND,
        output=True,
    )

    byte_string = str()

    for i in range(NUM_SAMPLES):
        # calculate the amplitude for this frame as a float between -1 and 1
        frame_amplitude = math.sin(i / (CYCLES_PER_SECOND / math.pi))
        # scale the amplitude to an integer between 0 and 255 (inclusive)
        scaled_amplitude = int(frame_amplitude * 127 + 128)
        # convert amplitude to byte string (ascii value)
        byte_string += chr(scaled_amplitude)

    stream.write(byte_string)
    stream.close()
    audio.terminate()


if __name__ == '__main__':
    play_note()

在Python2.7.13中,我听到了正确、清晰的音调。在3.6.2听起来很粗糙,像一个方波。你知道吗

为什么会这样,我该如何解决这个问题(或者至少开始调试)?你知道吗

我在OSX v10.11.6上使用portaudio v19.6.0。你知道吗


Tags: fromimportforstreamstringmathbyteframe
1条回答
网友
1楼 · 发布于 2024-04-29 20:37:45

这是因为当你应该使用byte时,你正在使用str

这对我很有用:

byte_array = bytearray()  # bytearray instead of str

for i in range(NUM_SAMPLES):
    frame_amplitude = math.sin(i / (CYCLES_PER_SECOND / math.pi))
    scaled_amplitude = int(frame_amplitude * 127 + 128)
    # Note the append here, not +=
    byte_array.append(scaled_amplitude)

stream.write(bytes(byte_array))

相关问题 更多 >