Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions .github/workflows/build_ffmpeg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1"]
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1", "8.0"]
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
permissions:
id-token: write
Expand All @@ -52,7 +52,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1"]
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1", "8.0"]
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
with:
job-name: Build
Expand All @@ -75,7 +75,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1"]
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1", "8.0"]
uses: pytorch/test-infra/.github/workflows/windows_job.yml@main
with:
job-name: Build
Expand Down
8 changes: 8 additions & 0 deletions packaging/build_ffmpeg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,14 @@ if [[ "$(uname)" == Darwin ]]; then
avfilter=libavfilter.10
swscale=libswscale.8
swresample=libswresample.5
elif [[ ${major_ver} == 8 ]]; then
avutil=libavutil.60
avcodec=libavcodec.62
avformat=libavformat.62
avdevice=libavdevice.62
avfilter=libavfilter.11
swscale=libswscale.9
swresample=libswresample.6
else
printf "Error: unexpected FFmpeg major version: %s\n" ${major_ver}
exit 1;
Expand Down
Loading