mirror of
https://github.com/afkarxyz/SpotiFLAC.git
synced 2026-04-26 15:45:54 +03:00
[GH-ISSUE #503] [Bug]: Failed to download FFmpeg on Mac #442
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/SpotiFLAC#442
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mr-r0b0t-fsociety on GitHub (Feb 17, 2026).
Original GitHub issue: https://github.com/afkarxyz/SpotiFLAC/issues/503
I recently upgraded the app, now it is giving the following error on startup:
I have FFmpeg installed and present in system path, but it is not able to detect that.
Platform: MacOS
Version:
v7.0.9@lefthandedfryingpan commented on GitHub (Feb 17, 2026):
I'm getting the same issue with a fresh install
https://github.com/user-attachments/assets/75da059b-3d41-4c50-93dc-014b521e7d6e
@Graz0 commented on GitHub (Feb 17, 2026):
I have the same issue and ther error is linked to a 404 the location of ffmpeg is coded incorrectly for download - perhaps get the script to check if it already installed (mine is) if not 'pip install ffmpeg' could be called
@dimzeta commented on GitHub (Feb 17, 2026):
It looks like ffmpeg is no longer available at https://evermeet.cx.
Here is a hotfix that worked for me:
@Graz0 commented on GitHub (Feb 17, 2026):
thanks dimzeta - not a fix for me....with the same steps....
@dimzeta commented on GitHub (Feb 17, 2026):
It sounds like your ffmpeg binary might be installed in a different location than mine.
You can find its path by running:
In my case, it returns
/opt/homebrew/bin/ffmpeg(installed via Homebrew on Apple Silicon). Depending on your setup, it could be somewhere else like/usr/local/bin/ffmpeg.Once you have the correct path, make sure to update the configuration to point to it. Let me know if that helps!
@Graz0 commented on GitHub (Feb 17, 2026):
I have same machine and same brew install to identical location (confirmed with which ffmpg)
@lefthandedfryingpan commented on GitHub (Feb 18, 2026):
edit: hotfix from @dimzeta works.
@mr-r0b0t-fsociety commented on GitHub (Feb 18, 2026):
Thanks @dimzeta, your hotfix worked for me.