Hello, I really need to figure this out, I have been running this forum for a while now and cant seem to figure it out...
I have a simple bash script that works fine in terminal when I use it with the filepath but hazel simply does not work... This is the error I get in the Hazel log:
2014-12-18 15:33:32.532 hazelworker[14708] Exception caught while executing shell script: launch path not accessible
2014-12-18 15:33:32.532 hazelworker[14708] [Error] Shell script failed: Error processing shell script on file /Users/MrLovemelt/Movies/INPUTGIF/sd.mov.
2014-12-18 15:33:32.532 hazelworker[14708] Shellscript exited with non-successful status code: -900
This is my bash script:
do
/usr/local/Cellar/ffmpeg/2.5/bin/ffmpeg -i $1 -vf scale=400:-1 -r 10 -f image2pipe -vcodec ppm - | /opt/local/bin/convert -delay 5 -loop 0 - output.gif
done
Ive added the paths of ffmpeg and convert as it is recommended on certain threads in here that it may be the culprit of it not working.... one idea I have is to somehow find the path for image2pipe, but cant determine its path.
what can I do?