initial commit

This commit is contained in:
2024-02-07 19:58:37 -08:00
commit 8d9f740ce2
3 changed files with 1056 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*~

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine AS tmp
COPY build-ffmpeg /root/build-ffmpeg
RUN apk add --no-cache gcc g++ musl-dev make automake autoconf bash curl linux-headers diffutils patch && \
cd /root/ && \
chmod +x build-ffmpeg && \
NUMJOBS=12 ./build-ffmpeg -b --enable-gpl-and-non-free --full-static
FROM alpine
COPY --from=tmp /usr/local/bin/ffmpeg /usr/bin/ffmpeg
ENTRYPOINT ["/usr/bin/ffmpeg"]
CMD ["-h"]

1044
build-ffmpeg Executable file
View File

File diff suppressed because it is too large Load Diff