Skip to content
Merged
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
9 changes: 1 addition & 8 deletions packages/hadron-build/lib/target.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,7 @@ class Target {
arch: this.arch,
electronVersion: this.electronVersion,
sign: null,
afterExtract: [(buildPath, electronVersion, platform, arch, done) => {
// TODO(https://github.com/electron/electron/issues/43076): electron
// releases are pointing to a wrong version of ffmpeg codecs right now
// (platform mismatch), there is a fix in progress and we should switch
// asap when it's available, for now just use the ffmpeg from an older
// version
ffmpegAfterExtract(buildPath, '29.4.3', platform, arch, done)
}]
afterExtract: [ffmpegAfterExtract]
};

validateBuildConfig(this.platform, this.pkg.config.hadron.build[this.platform]);
Expand Down