Files
dropshell-templates/squashkiwi-streaming/config/transcoder/Dockerfile
Your Name 97edbefa05
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 21s
Add live score overlay to video stream using shared volume between transcoder and overlay service
2025-09-02 09:44:34 +12:00

13 lines
266 B
Docker

FROM linuxserver/ffmpeg:latest
# Install fonts for text overlay
RUN apk add --no-cache ttf-dejavu
# Copy transcoder script
COPY transcoder.sh /transcoder.sh
RUN chmod +x /transcoder.sh
# Create score file directory
RUN mkdir -p /tmp
ENTRYPOINT ["/transcoder.sh"]