You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 30, 2023. It is now read-only.
Build fails on Windows 10 64bit: { command: "\"pkg-config\" \"--libs\" \"--cflags\" \"libavformat\"", cause: Os { code: 2, kind: NotFound, message: "The system cannot find the file specified." }}
#64
The error message is indicating that you don't have pkg-config installed. pkg-config is a tool that helps a build find installed libraries (here the ffmpeg libraries).
Unfortunately, pkg-config isn't really a good tool to use to find libraries on Windows (cf this post and this one, which I believe are still the current state of affairs). We should perhaps fall back to building ffmpeg from source if we can't find pkg-config, targeting msvc if necessary; this is, iirc, what libcurl-sys and other core Rust *-sys crates do.
I'll probably work around this by using a pre-built version of ffmpeg which should avoid any issues building it.
Full output
The text was updated successfully, but these errors were encountered: