以回调模式播放 wav 文件 [Pyaudio / Python]

发布于 2025-01-12 00:52:08 字数 2176 浏览 3 评论 0原文

我想使用 PyAudio 和回调模式播放 wav 文件。我可以播放一次 wav 文件,但随后就停止了。例如,如果我想每五秒播放一次wav文件(喇叭声等),我应该如何实现?另外,为了以防万一,让我知道如何在回调模式下播放数组(wav 数据)。

到目前为止我已经实现的代码如下......

    import pyaudio
    import numpy as np
    import wave
    import time
    
    FORMAT = pyaudio.paInt16
    CHANNEL = 2
    CHUNK = 1024
    RATE = 44100
    
    flag = True
    cur_dt = 0
    
    # reading wav file here
    wf = wave.open('test_3.wav', 'rb')
    
    # instantiate PyAudio (1)
    p = pyaudio.PyAudio()
    
    # define callback (2)
    def callback(in_data, frame_count, time_info, status):
    
        global flag, cur_dt, wf
    
        if flag:
            wf = wave.open('test_3.wav', 'rb')
            flag = False
    
        data = np.zeros((frame_count,), dtype=np.int16)
        data = wf.readframes(frame_count)
    
        # convert bytes to int
        data_int = np.frombuffer(data, dtype=np.int16)\
    
        # convert int to float
        data_float = data_int.astype(np.float32) / 32768.0
    
        # # convert float to int 
        # data_int_again = (data_float*32768.0).astype(np.int16, order='C')
    
        # ur processing...
        f1 = np.fft.fft(data_float)
        f2 = np.fft.ifft(f1)
        f3 = (f2*32768.0).astype(np.int16)
    
        # make it sound!
        data = f3
    
        # cur_dt += 1
        # print(cur_dt)
    
        return (data.tobytes(), pyaudio.paContinue)
    
    
    # open stream using callback (3)
    stream = p.open(format=p.get_format_from_width(wf.getsampwidth()),
                    channels=wf.getnchannels(),
                    rate=wf.getframerate(),
                    output=True,
                    stream_callback=callback)
    
    # print(p.get_format_from_width(wf.getsampwidth())) # paInt16
    # print(wf.getsampwidth()) # 3
    # print(wf.getnchannels()) # 2
    # print(wf.getframerate()) # 44100
    
    stream.start_stream()
    
    # wait for stream to finish (5)
    while stream.is_active():
        time.sleep(5)
        flag = True
    
    # stop stream (6)
    stream.stop_stream()
    stream.close()
    wf.close()
    
    # close PyAudio (7)
    p.terminate()

I wanna play wav file using PyAudio with callback mode. I could play wav file once but then stops. For example, if I want to play a wav file (trumpet sound, etc.) every five seconds, how should I implement this? Also, lemme know how to play array (wav data) in callback mode, just in case.

The code that I've implemented so far in the following...

    import pyaudio
    import numpy as np
    import wave
    import time
    
    FORMAT = pyaudio.paInt16
    CHANNEL = 2
    CHUNK = 1024
    RATE = 44100
    
    flag = True
    cur_dt = 0
    
    # reading wav file here
    wf = wave.open('test_3.wav', 'rb')
    
    # instantiate PyAudio (1)
    p = pyaudio.PyAudio()
    
    # define callback (2)
    def callback(in_data, frame_count, time_info, status):
    
        global flag, cur_dt, wf
    
        if flag:
            wf = wave.open('test_3.wav', 'rb')
            flag = False
    
        data = np.zeros((frame_count,), dtype=np.int16)
        data = wf.readframes(frame_count)
    
        # convert bytes to int
        data_int = np.frombuffer(data, dtype=np.int16)\
    
        # convert int to float
        data_float = data_int.astype(np.float32) / 32768.0
    
        # # convert float to int 
        # data_int_again = (data_float*32768.0).astype(np.int16, order='C')
    
        # ur processing...
        f1 = np.fft.fft(data_float)
        f2 = np.fft.ifft(f1)
        f3 = (f2*32768.0).astype(np.int16)
    
        # make it sound!
        data = f3
    
        # cur_dt += 1
        # print(cur_dt)
    
        return (data.tobytes(), pyaudio.paContinue)
    
    
    # open stream using callback (3)
    stream = p.open(format=p.get_format_from_width(wf.getsampwidth()),
                    channels=wf.getnchannels(),
                    rate=wf.getframerate(),
                    output=True,
                    stream_callback=callback)
    
    # print(p.get_format_from_width(wf.getsampwidth())) # paInt16
    # print(wf.getsampwidth()) # 3
    # print(wf.getnchannels()) # 2
    # print(wf.getframerate()) # 44100
    
    stream.start_stream()
    
    # wait for stream to finish (5)
    while stream.is_active():
        time.sleep(5)
        flag = True
    
    # stop stream (6)
    stream.stop_stream()
    stream.close()
    wf.close()
    
    # close PyAudio (7)
    p.terminate()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文