RuntimeWarning: Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work warn("Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work",

63 次查看(过去 30 天)
i already add ffmpeg to my system PATH
how can i solve this issue?

回答(1 个)

Yongjian Feng
Yongjian Feng 2022-2-10
编辑:Yongjian Feng 2022-2-10
Try this on matlab command line window:
getenv('PATH')
This will tell you what PATH matlab is using. You might need to restart matlab to get the latest PATH?
  3 个评论
Yongjian Feng
Yongjian Feng 2022-2-10
编辑:Yongjian Feng 2022-2-10
This PATH value shall come from your system PATH.
  1. Try to restart matlab after you change you system PATH
  2. You can also set env var inside matlab. Try
PATH=getenv('PATH');
% For windows
NewPath = [PATH ';new_path_to_ffprobe'];
% For linux/Mac: NewPath = [PATH ':new_path_to_ffprobe'];
setenv('PATH', NewPath);

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Call Python from MATLAB 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by