ビデオは Web サイトに表示する必要があります。HTML5 とタグを WebM、Theora/OGV、H.264/MP4 で使用しました。このビデオは、ほとんどのブラウザーと OS の組み合わせできれいに見えますが、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>