我正在尝试使用 Jave 将 wmv 文件转换为 h264(mp4)。Jave 创建的最终版本可以在 VLC 播放器中正常播放,但是当我尝试在 HTML5 视频标签中使用它时,它无法播放该文件。
我猜问题出在我为视频属性设置的属性上。
Java 代码:
videoAttributes.setCodec("mpeg4");
videoAttributes.setTag("mpeg4");
videoAttributes.setBitRate(new Integer(5000));
videoAttributes.setFrameRate(new Integer(30));
videoAttributes.setSize(new VideoSize(512, 384));
encodingAttributes.setVideoAttributes(videoAttributes);
encodingAttributes.setFormat("mp4");
HTML 代码:
<video controls="true" width=400 height=200>
<source src="path_to_converted_mp4_file" type="video/mp4" />
Not Supported
</video>