Hey everyone! I'm having a bit of trouble with my n8n automation while using Docker. One of the tasks is supposed to find the audio length of a voiceover, and everything works perfectly on my laptop. However, on my desktop, I keep getting this frustrating error. I'm not able to share images, but here's what the error says: it mentions a problem with the 'Find Audio Length' node, specifically that the command failed because 'ffprobe' is not found. Yet, when I try running 'ffprobe -version' in the Docker terminal, it shows that it's installed just fine. Any ideas on how I can fix this?
1 Answer
It sounds like you might be facing a path issue with ffprobe. Even though you can run it in the Docker terminal, the n8n automation doesn't seem to find it due to context differences. You likely need to ensure that ffprobe is correctly installed and accessible in the environment where n8n is operating. Try checking the paths and maybe running your container with a command that confirms ffprobe is present for the user n8n runs as.
Got it! I thought I was missing something. I’ll check the paths again to make sure everything aligns correctly. Thanks!