视频需要在网站上显示。我使用 HTML5 和带有 WebM、Theora/OGV 和 H.264/MP4 的标签。该视频在大多数浏览器/操作系统组合上看起来不错,但在 Windows 上使用 Quicktime 观看时颜色会失真。
是否有确保颜色一致的规范方法?如果没有,如果有替代方案,我可以订购浏览器在 Windows 上不使用 Quicktime 吗?
当前方法取自本教程。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Testvideo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="video.css">
</head>
<body bgcolor="#000000" marginwidth="0" marginheight="0">
<center>
<H2>Endeavour</H2>
<video width="320" height="240" controls>
<source src="endeavour.mp4" type="video/mp4; codecs=avc1.42E01E,mp4a.40.2">
<source src="endeavour.webm" type="video/webm; codecs=vp8,vorbis">
<source src="endeavour.ogv" type="video/ogg; codecs=theora,vorbis">
</video>
</center>
</body>