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",
47 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i already add ffmpeg to my system PATH
how can i solve this issue?
0 commentaires
Réponses (1)
Yongjian Feng
le 10 Fév 2022
Modifié(e) : Yongjian Feng
le 10 Fév 2022
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 commentaires
Walter Roberson
le 10 Fév 2022
That depends on which operating system you are using, and which operating system version.
Yongjian Feng
le 10 Fév 2022
Modifié(e) : Yongjian Feng
le 10 Fév 2022
This PATH value shall come from your system PATH.
- Try to restart matlab after you change you system PATH
- 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);
Voir également
Catégories
En savoir plus sur Environment and Settings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!