大帅

Results 3 comments of 大帅

I have encountered the same problem, have you solved it?

I have found two solutions. 1. Add `extern crate ffmpeg_next;` at the top of your binary. https://github.com/huggingface/candle?tab=readme-ov-file#missing-symbols-when-compiling-with-the-mkl-feature **Or** add such `.cargo/config.toml` ``` [target.x86_64-apple-darwin] rustflags = [ "-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup",...

First, `brew install ffmpeg pkg-config`. here is cargo.toml ```rust [target.'cfg(windows)'.dependencies] ffmpeg-next = { version = "7.0.1" } [target.'cfg(not(windows))'.dependencies] ffmpeg-next = { version = "7.0.1", default-features = false, features = [...