minimp4.rs icon indicating copy to clipboard operation
minimp4.rs copied to clipboard

A minimp4 Rust binding, h264/h265 stream muxer

Results 3 minimp4.rs issues
Sort by recently updated
recently updated
newest added

` 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); `

enhancement
help wanted

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...