ffmpeg-dev-rs icon indicating copy to clipboard operation
ffmpeg-dev-rs copied to clipboard

Rust - Self Contained FFmpeg Bindings

Results 6 ffmpeg-dev-rs issues
Sort by recently updated
recently updated
newest added

`build.rs` contains this snippet: ``` if is_debug_mode() && opt_level_eq(0) { configure_flags.push("--disable-optimizations"); configure_flags.push("--disable-debug"); configure_flags.push("--disable-stripping"); } ``` This causes debug builds to explicitly request that debugging symbols not be built. Maybe something...

``` pi@raspberrypi:~/rust-ffmpeg $ RUST_BACKTRACE=full cargo build Compiling ffmpeg-dev v0.3.7 error: failed to run custom build command for `ffmpeg-dev v0.3.7` Caused by: process didn't exit successfully: `/home/pi/rust-ffmpeg/target/debug/build/ffmpeg-dev-9e731ab85a8ee3a6/build-script-build` (exit code: 101) ---...

This PR adds optional support for x264. It's disabled by default for licensing reasons, so users of this crate must opt in to x264 support by enabling the `gpl` and...

i can't build on windows / msys2 - mingw64 , it stops compiling at ffmpeg-dev-rs with no any errors or warning, It seems that build.rs script not working.

cargo run --example h264_video_dec ffmpeg-dev-rs/target/debug/deps/libffmpeg_dev-def21d6af90e43d1.rlib(allcodecs.o): relocation R_X86_64_32S against `.rodata' can not be used when making a shared object; recompile with -fPIC

Hi, I got build error: unknown type name '*' when trying to build this crate: - LLVM_CONFIG_PATH=/usr/local/opt/llvm/bin/llvm-config cargo run --release --example h264_video_dec - Error report ``` --- stderr ``` ---...