Skip to content

Commit

Permalink
Add whisper_streaming package
Browse files Browse the repository at this point in the history
  • Loading branch information
tokk-nv committed May 20, 2024
1 parent 7f53e1c commit 3e8a175
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions packages/audio/whisper_streaming/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#---
# name: whisper_streaming
# group: audio
# depends: [pytorch, torchaudio, faster-whisper]
# requires: '>=34.1.0'
# docs: docs.md
#---
ARG BASE_IMAGE
FROM ${BASE_IMAGE}

WORKDIR /opt

RUN apt-get update && \
apt-get install -y --no-install-recommends \
ffmpeg \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean

RUN git clone https://github.com/ufal/whisper_streaming.git && \
cd whisper_streaming && \
pip3 install --no-cache-dir --verbose librosa soundfile

0 comments on commit 3e8a175

Please sign in to comment.