Firebase URL 不适用于 Torchaudio python

问题描述 投票:0回答:0

我面临一个问题,WSA(Linux 的 Windows 子系统)中的 python torchaudio 无法加载 firebase 存储 url。 The Error which is shown. 这里我使用 speechbrain 库,它使用 Torchaudio 来比较两个音频文件并确定声音属于同一个人

相同的 firebase URL 工作正常并且在 google colab 中没有显示错误。除了 firebase URL 之外的 URL 链接也工作正常并且在 WSA 中没有显示错误。

file_1 = "https://firebaseDummyURL_1"
file_2 = "https://firebaseDummyURL_2"

verification = SpeakerRecognition.from_hparams(source="speechbrain/spkrec-ecapa-voxceleb", savedir="pretrained_models/spkrec-ecapa-voxceleb")
score, prediction = verification.verify_files(file_1, file_2)
print(score, prediction)
python pytorch firebase-storage torchaudio speechbrain
© www.soinside.com 2019 - 2024. All rights reserved.