23 lines
304 B
Docker
23 lines
304 B
Docker
FROM alpine:3.7 AS video
|
|
|
|
RUN apk add --no-cache ffmpeg
|
|
|
|
COPY video/big.mp4 big.mp4
|
|
|
|
RUN mkdir /out
|
|
RUN ffmpeg \
|
|
-i big.mp4 \
|
|
-c copy \
|
|
-use_timeline 1 \
|
|
-use_template 1 \
|
|
-single_file 1 \
|
|
-hls_playlist 1 \
|
|
-f dash \
|
|
/out/clock.mpd
|
|
|
|
###
|
|
|
|
FROM icedream/caddy
|
|
|
|
COPY --from=video /out /htdocs/video
|