sound_waveform_display icon indicating copy to clipboard operation
sound_waveform_display copied to clipboard

M1 Mac Issue

Open jimofhughes opened this issue 2 years ago • 3 comments

Attaching a screenshot of the error I'm getting when pressing "On". Screenshot 2023-12-06 at 2 40 10 PM

jimofhughes avatar Dec 07 '23 14:12 jimofhughes

Hi, The error do net seem related to the hardware or the OS, as it simply state a "permission Error". It seem Blender do not have permission to use ffmpeg when stored in the addon folder (default location when automaticly downloaded)

Try placing the ffmpeg binary on another place in your filesystem (not in application support). Then in addon preferences, point to ffmpeg using the path field an try again.

Also make sure to 'move' ffmpeg from the addon folder (path shown at last line of the error block)

Pullusb avatar Dec 07 '23 16:12 Pullusb

Hi, i have the same problem. Moving ffmpeg didn't help in my case :(

bogdan-peregubko avatar Jan 29 '24 12:01 bogdan-peregubko

The permission error is due to the file not being allowed to execute.

To fix it: Open a terminal (you can find it by typing terminal in spotlight search) And enter following command to authorize ffmpeg bin to be executed

chmod +x path/to/ffmpeg

In your case @jimofhughes it's the path you see on the last line, after the Permission denied:: you should keep the quotes, since there is a space in the path.

Pullusb avatar Jan 30 '24 09:01 Pullusb