Help! My n8n Automation Can’t Find ffprobe Even Though It’s Installed

0
2
Asked By CreativePineapple44 On

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

Answered By MysteriousGiraffe12 On

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.

CuriousBee54 -

Got it! I thought I was missing something. I’ll check the paths again to make sure everything aligns correctly. Thanks!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.