Skip to content

Commit

Permalink
Fix #404 (#405)
Browse files Browse the repository at this point in the history
* thanks for the nudge Alex - Fix #404
  • Loading branch information
jrottenberg authored Aug 30, 2024
1 parent b26c428 commit eab32ec
Show file tree
Hide file tree
Showing 27 changed files with 124 additions and 304 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
repos: # pre-commit autoupdate
- repo: https://github.com/pycqa/flake8
rev: "7.0.0"
rev: "7.1.1"
hooks:
- id: flake8

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: check-added-large-files
Expand All @@ -22,7 +22,7 @@ repos: # pre-commit autoupdate

# If you want to avoid flake8 errors due to unused vars or imports:
- repo: https://github.com/myint/autoflake.git
rev: v2.2.1
rev: v2.3.1
hooks:
- id: autoflake
args:
Expand All @@ -34,7 +34,7 @@ repos: # pre-commit autoupdate
- id: isort

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.8.0
hooks:
- id: black
language_version: python3
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.2/nvidia2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FROM devel-base as build

ENV NVIDIA_HEADERS_VERSION=11.1.5.3

ENV FFMPEG_VERSION=4.2.9 \
ENV FFMPEG_VERSION=4.2.10 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.2/scratch313/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM alpine:3.13 AS build

WORKDIR /tmp/workdir

ENV FFMPEG_VERSION=4.2.9 \
ENV FFMPEG_VERSION=4.2.10 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.2/ubuntu2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=4.2.9 \
ENV FFMPEG_VERSION=4.2.10 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.2/vaapi2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=4.2.9 \
ENV FFMPEG_VERSION=4.2.10 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.3/nvidia2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FROM devel-base as build

ENV NVIDIA_HEADERS_VERSION=11.1.5.3

ENV FFMPEG_VERSION=4.3.7 \
ENV FFMPEG_VERSION=4.3.8 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.3/ubuntu2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=4.3.7 \
ENV FFMPEG_VERSION=4.3.8 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.3/vaapi2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=4.3.7 \
ENV FFMPEG_VERSION=4.3.8 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.4/alpine313/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FROM base AS build

WORKDIR /tmp/workdir

ENV FFMPEG_VERSION=4.4.4 \
ENV FFMPEG_VERSION=4.4.5 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.4/nvidia2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FROM devel-base as build

ENV NVIDIA_HEADERS_VERSION=11.1.5.3

ENV FFMPEG_VERSION=4.4.4 \
ENV FFMPEG_VERSION=4.4.5 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.4/scratch313/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM alpine:3.13 AS build

WORKDIR /tmp/workdir

ENV FFMPEG_VERSION=4.4.4 \
ENV FFMPEG_VERSION=4.4.5 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.4/ubuntu2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=4.4.4 \
ENV FFMPEG_VERSION=4.4.5 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/4.4/vaapi2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=4.4.4 \
ENV FFMPEG_VERSION=4.4.5 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/5.1/alpine313/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FROM base AS build

WORKDIR /tmp/workdir

ENV FFMPEG_VERSION=5.1.5 \
ENV FFMPEG_VERSION=5.1.6 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/5.1/nvidia2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FROM devel-base as build

ENV NVIDIA_HEADERS_VERSION=11.1.5.3

ENV FFMPEG_VERSION=5.1.5 \
ENV FFMPEG_VERSION=5.1.6 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/5.1/ubuntu2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=5.1.5 \
ENV FFMPEG_VERSION=5.1.6 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/5.1/vaapi2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=5.1.5 \
ENV FFMPEG_VERSION=5.1.6 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/6.1/nvidia2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FROM devel-base as build

ENV NVIDIA_HEADERS_VERSION=11.1.5.3

ENV FFMPEG_VERSION=6.1.1 \
ENV FFMPEG_VERSION=6.1.2 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/6.1/ubuntu2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=6.1.1 \
ENV FFMPEG_VERSION=6.1.2 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/6.1/vaapi2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=6.1.1 \
ENV FFMPEG_VERSION=6.1.2 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/7.0/alpine313/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FROM base AS build

WORKDIR /tmp/workdir

ENV FFMPEG_VERSION=7.0.1 \
ENV FFMPEG_VERSION=7.0.2 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/7.0/nvidia2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FROM devel-base as build

ENV NVIDIA_HEADERS_VERSION=11.1.5.3

ENV FFMPEG_VERSION=7.0.1 \
ENV FFMPEG_VERSION=7.0.2 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/7.0/scratch313/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM alpine:3.13 AS build

WORKDIR /tmp/workdir

ENV FFMPEG_VERSION=7.0.1 \
ENV FFMPEG_VERSION=7.0.2 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/7.0/ubuntu2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=7.0.1 \
ENV FFMPEG_VERSION=7.0.2 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/7.0/vaapi2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get -yqq update && \

FROM base as build

ENV FFMPEG_VERSION=7.0.1 \
ENV FFMPEG_VERSION=7.0.2 \
AOM_VERSION=v3.8.1 \
CHROMAPRINT_VERSION=1.5.0 \
FDKAAC_VERSION=0.1.5 \
Expand Down
Loading

0 comments on commit eab32ec

Please sign in to comment.