And we're back! Uses faster-whisper and stable-ts. Shouldn't break anything from previous settings, but adds a couple new options that aren't documented.
8 lines
185 B
Docker
8 lines
185 B
Docker
FROM python
|
|
|
|
RUN pip3 install flask requests stable-ts fast-whisper
|
|
|
|
ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen/subgen.py /
|
|
|
|
CMD [ "python3", "-u", "/subgen.py"]
|