Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ubuntu:noble AS builder
ARG FFMPEG_VERSION="8.0.1"
ARG FFMPEG_VERSION="8.0"
ARG RCLONE_VER="v1.73.0"
ARG GO_VERSION="latest"
#ARG GO_CRYPTO_VERSION="v0.36.0"
Expand Down Expand Up @@ -62,9 +62,8 @@ RUN cd /usr/local/src \
# Install FFmpeg from source
#======================================
RUN cd /usr/local/src \
&& git clone https://github.com/FFmpeg/FFmpeg.git --filter=blob:none \
&& git clone -b release/${FFMPEG_VERSION} --single-branch https://github.com/FFmpeg/FFmpeg.git \
Comment thread
VietND96 marked this conversation as resolved.
Outdated
&& cd FFmpeg \
&& git checkout n${FFMPEG_VERSION} \
&& rm -rf .git \
&& PKG_CONFIG_PATH="/usr/local/lib/pkgconfig" FFMPEG_VERSION=${FFMPEG_VERSION} ./configure \
--prefix="/usr/local" \
Expand Down
Loading