audio_path = os.path.join(os.path.dirname(__file__), 'audio\01.wav')
print(audio_path)
options=webdriver.ChromeOptions()
options.add_argument("--reduce-security-for-testing")
options.add_argument('--allow-file-access-from-files')
options.add_argument("--use-fake-device-for-media-stream")
options.add_argument("--use-fake-ui-for-media-stream")
options.add_argument("--use-file-for-fake-audio-capture={}".format(audio_path))
driver = webdriver.Chrome(chrome_options=options)
driver.get('')
但技能错误: [11532:17860:0428 / 172951.505:错误:audio_manager_base.cc(368)]收到无效的音频输出参数;使用假音频路径。通道:0,采样率:0,每个采样位数:0,每个缓冲区帧数:0 为什么呢?