File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -96,8 +96,7 @@ See all the other targets in the `Makefile` for more information.
96
96
97
97
## Developing
98
98
99
- The ` cmd/examples ` directory contains a simple example of how to use the ` whisper ` package
100
- in your own code.
99
+ TODO
101
100
102
101
## Status
103
102
Original file line number Diff line number Diff line change @@ -35,7 +35,10 @@ RUN make -j$(nproc)
35
35
# Setup runtime container
36
36
FROM ${BASE_RUN_CONTAINER} AS runtime
37
37
RUN apt-get -y update \
38
- && apt-get -y install libavformat58 libavcodec58 libavdevice58 libavfilter7 libavutil56 libswscale5 libswresample3
38
+ && apt-get -y install software-properties-common \
39
+ && add-apt-repository -y ppa:ubuntuhandbook1/ffmpeg6 \
40
+ && apt-get -y update \
41
+ && apt-get -y install libavformat60 libavcodec60 libavdevice60 libavfilter9 libavutil58 libswscale7 libswresample4
39
42
COPY --from=build --chmod=755 /app/build/whisper /usr/local/bin/whisper
40
43
COPY --from=build /app/build/whisper /usr/local/bin/whisper
41
44
COPY --chmod=755 etc/entrypoint.sh .
You can’t perform that action at this time.
0 commit comments