Cómo arreglar la instalación de 'ffprobe' en Mac Mojave

Cómo arreglar la instalación de 'ffprobe' en Mac Mojave

Estoy usando Mac Mojave y tengo problemas para usar ffprobe. Obtuve el siguiente error:

$ ffprobe
dyld: Library not loaded: /usr/local/opt/x265/lib/libx265.179.dylib
  Referenced from: /usr/local/bin/ffprobe
  Reason: image not found
Abort trap: 6

Intenté desinstalarlo y tampoco funcionó:

$ brew uninstall ffprobe
Error: No such keg: /usr/local/Cellar/ffprobe

También corrí, brew doctorlo cual no ayudó. Intenté instalar esa herramienta pero obtuve el resultado:

$ brew install ffprobe
Updating Homebrew...
Error: No available formula with the name "ffprobe" 
==> Searching for a previously deleted formula (in the last month)...
Warning: homebrew/core is shallow clone. To get complete history run:
  git -C "$(brew --repo homebrew/core)" fetch --unshallow

Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.

Entonces, ¿cómo solucionar el problema ffprobe?

Respuesta1

¡Parece que ffprobees parte del ffmpegpaquete! Supongo que necesitas saber eso ( brew¡no me importa darte esa información vital!). Entonces, para solucionar este problema, simplemente reinstale ffmpeg:

brew uninstall ffmpeg
brew install ffmpeg

información relacionada