Vilsol / ffmpeg-alpine

Alpine container with FFmpeg compiled with x265 and more

Home Page:https://hub.docker.com/r/vilsol/ffmpeg-alpine/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FFmpeg Alpine

Alpine container with ffmpeg compiled with:

--enable-gpl
--enable-libfdk-aac
--enable-libmp3lame
--enable-libopus
--enable-libtheora
--enable-libvorbis
--enable-libvpx
--enable-libx264
--enable-libx265
--enable-nonfree

Usage

Image meant to be used with multi stage builds as follows:

FROM vilsol/ffmpeg-alpine as build

FROM alpine:edge

# ffmpeg
COPY --from=build /root/bin/ffmpeg /bin/ffmpeg
COPY --from=build /root/bin/ffprobe /bin/ffprobe

# x265
COPY --from=build /usr/local/ /usr/local/

RUN apk add --no-cache \
	libtheora \
	libvorbis \
	x264-libs \
	fdk-aac \
	lame \
	opus \
	libvpx \
	libstdc++ \
	numactl \
	nasm

About

Alpine container with FFmpeg compiled with x265 and more

https://hub.docker.com/r/vilsol/ffmpeg-alpine/


Languages

Language:Dockerfile 100.0%