电子 ffmpeg mas 构建 "Illegal instruction: 4"
electron ffmpeg mas build "Illegal instruction: 4"
我正在尝试在 Mac Apple Store (mas) 上发布一个 electron 应用程序,我的 electron 应用程序使用 ffmpeg 来渲染视频。为了在 mac 苹果商店发布我的应用程序,它需要被沙盒化,默认情况下 ffmpeg 会调用外部库,所以我需要静态构建 ffmpeg 并将其与我的应用程序打包在一起。我的代码在 'mas-ffmpeg-fix' 分支上:https://github.com/MartinBarker/digify/tree/mas-ffmpeg-fix
我的静态 ffmpeg 构建在我构建我的应用程序之前工作,但在 运行 宁 electron-builder build --mac
之后,ffmpeg 可执行文件现在失败并显示 Illegal instruction: 4
这是 building/packaging/submitting 我的应用程序到 mac 苹果商店的完整时间表,也是第一次出现错误的地方:
在 Digify 存储库中:
克隆、配置和构建静态 ffpmeg:“sudo rm -rf ffmpeg-mac/ && npm 运行 download-ffmpeg”
download-ffmpeg 命令在 package.json 和 运行 中:
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg-mac && cd ffmpeg-mac && ./configure pkg_config='pkg-config --static' --pkg-config-flags='--static' --libdir=/usr/local/lib --extra-version=ntd_20150128 --disable-shared --disable-lzma --enable-gpl --enable-pthreads --enable-nonfree --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libx264 --enable-static --enable-filters --enable-runtime-cpudetect && make && cd ..
使用命令“otool -L ffmpeg-mac/ffmpeg检查静态ffmpeg构建中是否有任何dylibb文件grep /usr/local”
如果有,将它们移动到桌面文件夹,运行再次'otool'确保没有动态库,重建静态ffmpeg。
现在将有一个文件夹 'ffmpeg-mac',其中包含静态版本的 ffmpeg 和 ffprobe
将 ffmpeg 与电子一起使用 UI:有效
将 Ffmpeg 与命令行命令一起使用:
/Users/martinbarker/Documents/projects/digify-new/ffmpeg-mac/ffmpeg -h
作品
- 使用“npm 运行 build-mas”构建 mac 大众应用
- 此命令完成后,它将在 /dist/mas/ 文件夹中输出两个文件:Digify.app 和 Digify-01.20.pkg(或任何版本号)
ffmpeg命令行检查:
/Users/martinbarker/Documents/projects/digify-new/dist/mas/Digify.app/Contents/Resources/ffmpeg -h
非法指令:4
这是第一个出现错误的地方,在构建我的 mac mac-apple-store 应用程序后,ffmpeg 失败并出现此错误。
- 使用 .sh 文件对构建的应用程序进行签名:“sh mas-sign-script.sh”
view .sh file here
- .sh 文件将输出 Digify-mac.pkg
- 更简单的构建和签名命令:“sudo rm -rf dist/mas/ && npm 运行 build-mas && sh mas-sign-script.sh”
- 上传输出的“Digify-mac.pkg”文件并提交给苹果审核
此应用程序在商店中发布后,如果您下载它并尝试 运行 使用 electron UI 的 ffmpeg 命令,它会失败并出现此错误:
/Applications/Digify.app/Contents/Resources/app.asar/node_modules/execa/lib/error.js:59 Uncaught (in promise) Error: Command failed with exit code 1: /Applications/Digify.app/Contents/Resources/ffmpeg -i /Users/martinbarker/Downloads/Felix Lebarty - Bobo/01. Bobo.mp3 -y -filter_complex concat=n=1:v=0:a=1 -c:a libmp3lame -b:a 320k /Users/martinbarker/Downloads/Felix Lebarty - Bobo/output-064237.mp3
ffmpeg version N-101191-g51a9f487ae-ntd_20150128 Copyright (c) 2000-2021 the FFmpeg developers
built with Apple LLVM version 10.0.1 (clang-1001.0.46.4)
configuration: pkg_config='pkg-config --static' --pkg-config-flags=--static --libdir=/usr/local/lib --extra-version=ntd_20150128 --disable-shared --disable-lzma --enable-gpl --enable-pthreads --enable-nonfree --disable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libx264 --enable-static --enable-filters --enable-runtime-cpudetect
libavutil 56. 65.100 / 56. 65.100
libavcodec 58.125.100 / 58.125.100
libavformat 58. 68.100 / 58. 68.100
libavdevice 58. 12.100 / 58. 12.100
libavfilter 7.107.100 / 7.107.100
libswscale 5. 8.100 / 5. 8.100
libswresample 3. 8.100 / 3. 8.100
libpostproc 55. 8.100 / 55. 8.100
[mp3 @ 0x7feeae809c00] Estimating duration from bitrate, this may be inaccurate
Input #0, mp3, from '/Users/martinbarker/Downloads/Felix Lebarty - Bobo/01. Bobo.mp3':
Metadata:
comment :
album : Bobo
artist : Felix Lebarty
title : Funkytown Eklablog
genre : Boogie
date : 1984
Duration: 00:05:19.53, start: 0.000000, bitrate: 320 kb/s
Stream #0:0: Audio: mp3, 44100 Hz, stereo, fltp, 320 kb/s
/Users/martinbarker/Downloads/Felix Lebarty - Bobo/output-064237.mp3: Operation not permitted
at makeError (/Applications/Digify.app/Contents/Resources/app.asar/node_modules/execa/lib/error.js:59)
at handlePromise (/Applications/Digify.app/Contents/Resources/app.asar/node_modules/execa/index.js:114)
at async file:/Applications/Digify.app/Contents/Resources/app.asar/src/js/newindex.js:1162
Command failed with exit code 1: Operation not permitted
原来在 electron 中你需要先用文件浏览器选择输出文件夹目录 window 在 ffmpeg 可以写入任何文件之前
我正在尝试在 Mac Apple Store (mas) 上发布一个 electron 应用程序,我的 electron 应用程序使用 ffmpeg 来渲染视频。为了在 mac 苹果商店发布我的应用程序,它需要被沙盒化,默认情况下 ffmpeg 会调用外部库,所以我需要静态构建 ffmpeg 并将其与我的应用程序打包在一起。我的代码在 'mas-ffmpeg-fix' 分支上:https://github.com/MartinBarker/digify/tree/mas-ffmpeg-fix
我的静态 ffmpeg 构建在我构建我的应用程序之前工作,但在 运行 宁 electron-builder build --mac
之后,ffmpeg 可执行文件现在失败并显示 Illegal instruction: 4
这是 building/packaging/submitting 我的应用程序到 mac 苹果商店的完整时间表,也是第一次出现错误的地方:
在 Digify 存储库中:
克隆、配置和构建静态 ffpmeg:“sudo rm -rf ffmpeg-mac/ && npm 运行 download-ffmpeg”
download-ffmpeg 命令在 package.json 和 运行 中:
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg-mac && cd ffmpeg-mac && ./configure pkg_config='pkg-config --static' --pkg-config-flags='--static' --libdir=/usr/local/lib --extra-version=ntd_20150128 --disable-shared --disable-lzma --enable-gpl --enable-pthreads --enable-nonfree --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libx264 --enable-static --enable-filters --enable-runtime-cpudetect && make && cd ..
使用命令“otool -L ffmpeg-mac/ffmpeg检查静态ffmpeg构建中是否有任何dylibb文件grep /usr/local”
如果有,将它们移动到桌面文件夹,运行再次'otool'确保没有动态库,重建静态ffmpeg。
现在将有一个文件夹 'ffmpeg-mac',其中包含静态版本的 ffmpeg 和 ffprobe
将 ffmpeg 与电子一起使用 UI:有效
将 Ffmpeg 与命令行命令一起使用:
/Users/martinbarker/Documents/projects/digify-new/ffmpeg-mac/ffmpeg -h
作品
- 使用“npm 运行 build-mas”构建 mac 大众应用
- 此命令完成后,它将在 /dist/mas/ 文件夹中输出两个文件:Digify.app 和 Digify-01.20.pkg(或任何版本号) ffmpeg命令行检查: /Users/martinbarker/Documents/projects/digify-new/dist/mas/Digify.app/Contents/Resources/ffmpeg -h 非法指令:4
这是第一个出现错误的地方,在构建我的 mac mac-apple-store 应用程序后,ffmpeg 失败并出现此错误。
- 使用 .sh 文件对构建的应用程序进行签名:“sh mas-sign-script.sh”
view .sh file here
- .sh 文件将输出 Digify-mac.pkg
- 更简单的构建和签名命令:“sudo rm -rf dist/mas/ && npm 运行 build-mas && sh mas-sign-script.sh”
- 上传输出的“Digify-mac.pkg”文件并提交给苹果审核
此应用程序在商店中发布后,如果您下载它并尝试 运行 使用 electron UI 的 ffmpeg 命令,它会失败并出现此错误:
/Applications/Digify.app/Contents/Resources/app.asar/node_modules/execa/lib/error.js:59 Uncaught (in promise) Error: Command failed with exit code 1: /Applications/Digify.app/Contents/Resources/ffmpeg -i /Users/martinbarker/Downloads/Felix Lebarty - Bobo/01. Bobo.mp3 -y -filter_complex concat=n=1:v=0:a=1 -c:a libmp3lame -b:a 320k /Users/martinbarker/Downloads/Felix Lebarty - Bobo/output-064237.mp3
ffmpeg version N-101191-g51a9f487ae-ntd_20150128 Copyright (c) 2000-2021 the FFmpeg developers
built with Apple LLVM version 10.0.1 (clang-1001.0.46.4)
configuration: pkg_config='pkg-config --static' --pkg-config-flags=--static --libdir=/usr/local/lib --extra-version=ntd_20150128 --disable-shared --disable-lzma --enable-gpl --enable-pthreads --enable-nonfree --disable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libx264 --enable-static --enable-filters --enable-runtime-cpudetect
libavutil 56. 65.100 / 56. 65.100
libavcodec 58.125.100 / 58.125.100
libavformat 58. 68.100 / 58. 68.100
libavdevice 58. 12.100 / 58. 12.100
libavfilter 7.107.100 / 7.107.100
libswscale 5. 8.100 / 5. 8.100
libswresample 3. 8.100 / 3. 8.100
libpostproc 55. 8.100 / 55. 8.100
[mp3 @ 0x7feeae809c00] Estimating duration from bitrate, this may be inaccurate
Input #0, mp3, from '/Users/martinbarker/Downloads/Felix Lebarty - Bobo/01. Bobo.mp3':
Metadata:
comment :
album : Bobo
artist : Felix Lebarty
title : Funkytown Eklablog
genre : Boogie
date : 1984
Duration: 00:05:19.53, start: 0.000000, bitrate: 320 kb/s
Stream #0:0: Audio: mp3, 44100 Hz, stereo, fltp, 320 kb/s
/Users/martinbarker/Downloads/Felix Lebarty - Bobo/output-064237.mp3: Operation not permitted
at makeError (/Applications/Digify.app/Contents/Resources/app.asar/node_modules/execa/lib/error.js:59)
at handlePromise (/Applications/Digify.app/Contents/Resources/app.asar/node_modules/execa/index.js:114)
at async file:/Applications/Digify.app/Contents/Resources/app.asar/src/js/newindex.js:1162
Command failed with exit code 1: Operation not permitted
原来在 electron 中你需要先用文件浏览器选择输出文件夹目录 window 在 ffmpeg 可以写入任何文件之前