feat(ffmpeg): roll ffmpeg to 1007 (#11081)

This build:
- Includes a native build for Mac Arm64
- Changes executable name for the linux arm64 build
This commit is contained in:
Andrey Lushnikov 2021-12-29 21:10:29 -07:00 committed by GitHub
parent c27a27d561
commit 056d310e20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -9,6 +9,7 @@ on:
paths-ignore: paths-ignore:
- 'browser_patches/**' - 'browser_patches/**'
- 'docs/**' - 'docs/**'
types: [ labeled ]
branches: branches:
- main - main
- release-* - release-*

View file

@ -31,7 +31,7 @@
}, },
{ {
"name": "ffmpeg", "name": "ffmpeg",
"revision": "1006", "revision": "1007",
"installByDefault": true "installByDefault": true
} }
] ]

View file

@ -68,8 +68,8 @@ const EXECUTABLE_PATHS = {
'ffmpeg': { 'ffmpeg': {
'ubuntu18.04': ['ffmpeg-linux'], 'ubuntu18.04': ['ffmpeg-linux'],
'ubuntu20.04': ['ffmpeg-linux'], 'ubuntu20.04': ['ffmpeg-linux'],
'ubuntu18.04-arm64': ['ffmpeg-linux-arm64'], 'ubuntu18.04-arm64': ['ffmpeg-linux'],
'ubuntu20.04-arm64': ['ffmpeg-linux-arm64'], 'ubuntu20.04-arm64': ['ffmpeg-linux'],
'mac10.13': ['ffmpeg-mac'], 'mac10.13': ['ffmpeg-mac'],
'mac10.14': ['ffmpeg-mac'], 'mac10.14': ['ffmpeg-mac'],
'mac10.15': ['ffmpeg-mac'], 'mac10.15': ['ffmpeg-mac'],
@ -149,7 +149,7 @@ const DOWNLOAD_PATHS = {
'mac10.14': 'builds/ffmpeg/%s/ffmpeg-mac.zip', 'mac10.14': 'builds/ffmpeg/%s/ffmpeg-mac.zip',
'mac10.15': 'builds/ffmpeg/%s/ffmpeg-mac.zip', 'mac10.15': 'builds/ffmpeg/%s/ffmpeg-mac.zip',
'mac11': 'builds/ffmpeg/%s/ffmpeg-mac.zip', 'mac11': 'builds/ffmpeg/%s/ffmpeg-mac.zip',
'mac11-arm64': 'builds/ffmpeg/%s/ffmpeg-mac.zip', 'mac11-arm64': 'builds/ffmpeg/%s/ffmpeg-mac-arm64.zip',
'win64': 'builds/ffmpeg/%s/ffmpeg-win64.zip', 'win64': 'builds/ffmpeg/%s/ffmpeg-win64.zip',
}, },
}; };