提问人:Batoot 提问时间:10/5/2021 更新时间:10/5/2021 访问量:242
如何将麦克风连接到 Windows 10 上的 Docker 应用程序并将输出保存到我的本地目录?
How to connect the microphone to Docker app on Windows 10 and save outputs to my local directory?
问:
我无法将我的 docker 容器连接到 Windows 10 上的麦克风或本地目录,并且已经进行了一段时间的故障排除,但我找不到问题。如果有人能提供指导,我将不胜感激。
这是我的 Dockerfile:
FROM python:3.9-buster
WORKDIR /app
COPY requirements.txt .
RUN python3 -m pip install -r requirements.txt --no-cache-dir
COPY src/ /app
CMD [ "python3", "-u" ,"/app/main.py" ]
错误消息为“OSError:找不到 sndfile 库”。
答: 暂无答案
评论