A Bento4 Dockerfile built from source. Built on Alpine Linux.
- Pull Docker image and run:
docker pull alfg/bento4
docker run -it --rm alfg/bento4 mp4info
- or build and run container from source:
docker build -t bento4 .
docker run -it bento4 mp4info
- or use as a base image in your Dockerfile:
FROM alfg/bento4:latest
- Example using a mounted volume:
docker run -v ${PWD}:/opt/tmp/ -it --rm alfg/bento4 mp4info /opt/tmp/video.mp4
MIT