我正在使用mp4parser将h264文件和aac文件复制到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();
但是当我调试它时,这一步大约需要4分钟:
DataSource videoFile = new FileDataSourceImpl(h264Path);
我的样本h264视频文件持续时间约为20秒,大小为3MB(比特率约为178KB)。它是由MediaCodec生成的。这在生产环境中是不可接受的。我的代码中是否有错误?或者它是mp4parser的真正效率吗?非常感谢。
答案 0 :(得分:0)
给出H264
文件的正确路径,然后它将进行调试。
答案 1 :(得分:0)
尝试使用Google ExoPlayer library虽然我认为MP4提取仅适用于开发分支,请参阅demo code here。