Donough Liu
Donough Liu
You can check this: . In short, set `FFMPEG_PKG_CONFIG_PATH` if you have pkg-config files; set `FFMPEG_LIBS_DIR ` + `FFMPEG_INCLUDE_DIR` vise versa.
> @ldm0 I'm not sure where I can find ready to use statically linked ffmpeg libraries and if I should compile it. It's not recommended to use prebuilt statically linked...
I encountered the same problem. After investigation, I found that this has nothing to do with nextest. Create a sample project: `src/main.rs`: ```rust use std::time::Duration; use windows_sys::Win32::{ Foundation::GetLastError, System::Console::{GenerateConsoleCtrlEvent, CTRL_C_EVENT},...
Relevant issue: . Seems to be a compatibility issue with bindgen and clang 16. I'll bump bindgen for rusty_ffmpeg later.
> I can help add the documentation if needed. Also not sure if this feature need to be tied to the `quick-xml` update? Thanks! I've written some documentation already, will...
ping @weihanglo
You can check the comment above: https://github.com/larksuite/rsmpeg/blob/master/src/avformat/avio.rs#L124 It seems that you are using FFmpeg 6.*. Please import rsmpeg like this: ```toml rsmpeg = { version = "0.15.0", default-features = false,...
`vcpkg` with commit `0557210` tracks [FFmpeg 6.1](https://github.com/microsoft/vcpkg/blob/055721089e8037d4d617250814d11f881e557549/ports/ffmpeg/vcpkg.json#L3), which does contain `AV_PIX_FMT_P010LE`. The `vcpkg` crate links `x64-windows-static-md` packages by default: https://docs.rs/vcpkg/latest/vcpkg/#windows, but the configuration you specified in Cargo.toml is `x64-windows-static`. So...
That's another issue. It's strange that `AVCodecID`'s binding was generated as `u32`. enums should share the same layout with `i32` on Windows(https://github.com/rust-lang/rust-bindgen/issues/1244). Could you create a minimal repo which can...
The debuginfo of your FFmpeg libs might have been stripped. It's highly recommended to build FFmpeg yourself. You can follow the [official compilation guide](https://trac.ffmpeg.org/wiki/CompilationGuide/macOS) or use the `utils/mac_ffmpeg.rs` provided in...