上传者: jordan_iverson
|
上传时间: 2021-10-19 14:34:40
|
文件大小: 925KB
|
文件类型: -
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();