-
Java工具包支持H264转码为MP4格式,适用于HTML5播放
资源介绍
h264转码MP4 支持html5播放格式 示例代码:
H264TrackImpl h264TrackImpl = new H264TrackImpl(new FileDataSourceImpl("C://a.264"));
Movie movie = new Movie();
movie.addTrack(h264TrackImpl);
Container mp4f = new DefaultMp4Builder().build(movie);
FileChannel fChannel = new FileOutputStream(new File("C://a.mp4")).getChannel();
mp4f.writeContainer(fChannel);
fChannel.close();
- 上一篇: Android MediaCodec 硬解码H264
- 下一篇: H264画面尺寸探测