Skip to content

Commit 0e325f3

Browse files
authored
docker ffmpeg7 (#89)
* Enable bit-depth in older version of x264. Signed-off-by: [email protected] <[email protected]> * Adding docker for ffmpeg-7.0 Signed-off-by: [email protected] <[email protected]> --------- Signed-off-by: [email protected] <[email protected]> Co-authored-by: [email protected] <[email protected]>
1 parent de85952 commit 0e325f3

File tree

4 files changed

+805
-3
lines changed

4 files changed

+805
-3
lines changed

docker/rocky-ffmpeg-6.1/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nvidia/cuda:12.3.1-devel-rockylinux9 AS base
1+
FROM nvidia/cuda:12.2.0-devel-rockylinux9 AS base
22

33

44
#RUN dnf -y install s3cmd libgomp httpd24-libcurl icc-profiles-openicc imagemagick python-pip && \
@@ -190,7 +190,7 @@ RUN \
190190
cd ${DIR} && \
191191
curl -sL https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${X264_VERSION}.tar.bz2 | \
192192
tar -jx --strip-components=1 && \
193-
./configure --prefix="${PREFIX}" --enable-shared --enable-pic --disable-cli && \
193+
./configure --prefix="${PREFIX}" --enable-shared --enable-pic --disable-cli --bit-depth=10 && \
194194
make && \
195195
make install && \
196196
rm -rf ${DIR}
@@ -210,7 +210,7 @@ RUN \
210210
#./multilib.sh && \
211211
#make -C 8bit install && \
212212
#./make-Makefiles.bash && \
213-
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="${PREFIX}" ../../source && \
213+
cmake -G "Unix Makefiles" -DHIGH_BIT_DEPTH=ON -DENABLE_CLI=OFF -DMAIN12=ON -DCMAKE_INSTALL_PREFIX="${PREFIX}" ../../source && \
214214
make && \
215215
make install && \
216216
rm -rf ${DIR}

0 commit comments

Comments
 (0)