I have raw h264 data of my frames and its presentationTimeUs and I want to mux data in mp4 container. How can I do it with ffmpeg or any library except MediaMuxer ?
Update: I need a command to write h264 data of just one frame to mp4 container including presentatoinTimeUs
ffmpeg -f h264 -i raw.264 out.mp4
– Gyan