Fix : pyaudio.paInt16 missing in AudioRecorder class init

This commit is contained in:
martin legrand
2025-03-22 12:12:11 +01:00
parent b1ad643364
commit 5e7dd321f0
6 changed files with 53 additions and 9 deletions
+26
View File
@@ -0,0 +1,26 @@
# Use official Python 3.11 image as the base
FROM python:3.11
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
g++ \
gfortran \
libportaudio2 \
portaudio19-dev \
ffmpeg \
libavcodec-dev \
libavformat-dev \
libavutil-dev \
chromium \
chromium-driver \
&& rm -rf /var/lib/apt/lists/*
RUN pip cache purge
COPY . .
RUN BLIS_ARCH=generic pip install --no-cache-dir -r requirements.txt