Skip to content

Commit 344815b

Browse files
Updating RC to 5 to fix FFMPEG dependency on mac
1 parent ddbc0c5 commit 344815b

File tree

4 files changed

+532
-1441
lines changed

4 files changed

+532
-1441
lines changed

binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
}],
5353
["OS=='mac'", {
5454
"variables": {
55-
"ffmpeg_version": "1.33rc3",
55+
"ffmpeg_version": "1.49.rc.1",
5656
"target_arch_override": "<!(node -p \"'<(target_arch)' === 'x64' ? 'x86_64' : '<(target_arch)'\")",
5757
},
5858
"defines": [

install_ffmpeg.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,10 @@ async function darwin() {
189189
else throw e;
190190
});
191191

192-
const version = '1.33rc3';
192+
const version = '1.49.rc.1';
193193

194194
// default to platform-architecture
195-
let arch = os.arch()
195+
let arch = os.arch();
196196

197197
// but if the '--arch' argument is provided
198198
// use the next argument as the value (e.g. 'x64' or 'arm64')
@@ -206,7 +206,7 @@ async function darwin() {
206206
}
207207

208208
const ffmpegFilename = `ffmpeg-ffprobe-shared-darwin-${arch}.${version}`;
209-
const tag = `v${version}`
209+
const tag = `v${version}`;
210210

211211
await access(`ffmpeg/${ffmpegFilename}`, fs.constants.R_OK).catch(async () => {
212212
const ws = fs.createWriteStream(`ffmpeg/${ffmpegFilename}.zip`);

0 commit comments

Comments
 (0)