-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong ffmpeg.path if asar is enabled #10
Comments
Looks like this known issue: electron/packager#740 It should be the responsibility of asar not to break paths, IMO. |
Added a note with workaround to the README: https://github.com/kribblo/node-ffmpeg-installer/blob/master/README.md#wrong-path-under-electron-with-asar-enabled Handling special cases like that is outside the scope of ffmpeg-installer |
I see. Thanks so much for your information. |
audionerd
added a commit
to wonderunit/storyboarder
that referenced
this issue
Jan 11, 2022
audionerd
added a commit
to wonderunit/storyboarder
that referenced
this issue
Feb 25, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ffmpeg.path returns path like
....\resources\app.asar\node_modules\@ffmpeg-installer\win32-x64\ffmpeg.exe
regardless of asar state.It should return
....\resources\app.asar.unpacked\node_modules\@ffmpeg-installer\win32-x64\ffmpeg.exe
if asar is enabled.The text was updated successfully, but these errors were encountered: