minimp4.rs
minimp4.rs copied to clipboard
A minimp4 Rust binding, h264/h265 stream muxer
` let audio_data=Vec::from(include_bytes!("goodaf.mp3") as &[u8]); let pcm = vec!(0); mp4muxer.init_audio(32, 24000, 1); mp4muxer.write_video_with_audio(&audio_data, 60, &pcm); `
When attempting to include `minimp4 = "0.1.0"` or `minimp4 = { git = "https://github.com/darkskygit/minimp4.rs.git" }` into my project, I received an error regarding the `fdk-aac-sys v0.4.0` library, which is a...
Hi, first of all thanks for maintaining this crate, it helped me a lot! One feature was missing for me, namely muxing video samples with variable duration. For use cases...