-
|
I am running successfully mediamtx on Windows 11 but I cannot make any call to ffmpeg. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hello, make sure that you're using the native Windows version of FFmpeg (not the Cygwin one, not the MinGW one, not the WSL one) and use the absolute path in the configuration: paths:
mypath:
runOnReady: 'C:\Users\my user\ffmpeg.exe' ... |
Beta Was this translation helpful? Give feedback.
-
|
This discussion is being locked automatically because the last update was more than 2 years ago. Do not use the content of this discussion as reference since it's probably outdated! The official documentation is the only place in which you can find up-to-date answers. |
Beta Was this translation helpful? Give feedback.
I finally found what was the issue as I tried the absolute path already without success.
I trick is to use Unix style path not Windows, aka: c:/pathtoffmpeg/ffmeg.exe
Thank you for the fast answer