我放弃了Jcodec。它暴露了太多编解码器内部的东西,根本没有关于使用的文档。Mp4Parser为我完成了这项工作,而且很简单。这是我将原始 h264 视频混合到 mp4 容器中的代码:
String h264Path = "path to my h264 file, generated by Android MediaCodec";
DataSource videoFile = new FileDataSourceImpl(h264Path);
H264TrackImpl h264Track = new H264TrackImpl(videoFile, "eng", 5, 1); // 5fps. you can play with timescale and timetick to get non integer fps, 23.967 is 24000/1001
Movie movie = new Movie();
movie.addTrack(h264Track);
Container out = new DefaultMp4Builder().build(movie);
FileOutputStream fos = new FileOutputStream(new File("path to my generated file.mp4"));
out.writeContainer(fos.getChannel());
fos.close();
在此处找到代码示例。循环关闭!现在我的视频编码器实现可以在 Android 4.1 及更高版本上运行,不需要 FFMpeg
顺便说一句:Android 股票“画廊”应用程序使用 Mp4Parser,在其开源许可证中列出。