登录 注册
当前位置:主页 > 资源下载 > 32 > Java工具包支持H264转码为MP4格式,适用于HTML5播放

Java工具包支持H264转码为MP4格式,适用于HTML5播放

  • 更新:2024-09-05 10:47:08
  • 大小:925KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:编解码 - 音视频
  • 格式:RAR

资源介绍

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();