gpt4 book ai didi

python - PyAudio stream.is_active(),它是如何知道自己是否活跃的

转载 作者:行者123 更新时间:2023-12-05 07:28:29 25 4
gpt4 key购买 nike

我正在尝试了解 stream.is_active() 的工作原理。说文档中的波形文件阅读器示例:

"""PyAudio Example: Play a wave file (callback version)."""

import pyaudio
import wave
import time
import sys

if len(sys.argv) < 2:
print("Plays a wave file.\n\nUsage: %s filename.wav" % sys.argv[0])
sys.exit(-1)

wf = wave.open(sys.argv[1], 'rb')

# instantiate PyAudio (1)
p = pyaudio.PyAudio()

# define callback (2)
def callback(in_data, frame_count, time_info, status):
data = wf.readframes(frame_count)
return (data, 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)

# start the stream (4)
stream.start_stream()

# wait for stream to finish (5)
while stream.is_active():
time.sleep(0.1)

# stop stream (6)
stream.stop_stream()
stream.close()
wf.close()

# close PyAudio (7)
p.terminate()

所以我不确定使 is_active() 返回 False 的条件是什么。如果 wf.readframes 用完了,它会返回 0 还是错误数据?如果 0 是指示器,如果我实际上将 0 放入我的 data 中会怎么样。在 pyaudio.py 中定义了 is_active() :

def is_active( self ): """ 返回流是否处于事件状态。

:rtype: bool
"""

return pa.is_stream_active(self._stream)

但我无法更深入地了解 portaudio (pa) 的 is_stream_active()。

最佳答案

portaudio 文档说:

A stream is active after a successful call to Pa_StartStream(), until it becomes inactive either as a result of a call to Pa_StopStream() or Pa_AbortStream(), or as a result of a return value other than paContinue from the stream callback. In the latter case, the stream is considered inactive after the last buffer has finished playing.

http://portaudio.com/docs/v19-doxydocs/portaudio_8h.html#a1f8709c4971932643681a6f374c4bb5a

关于python - PyAudio stream.is_active(),它是如何知道自己是否活跃的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53341875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com