YouTube とは異なり、サーバーからビデオのコンテンツを取得するビデオを xhtml に追加するにはどうすればよいですか?
これは有効ですか?または、通常のhtmlメソッドを使用するのが最善でしょうか?
<!-- First, try the applet -->
<object
src="http://www.example.com/applets/classes/TheEarth.class"
srctype="application/x-java-applet">
<!-- Else, try the video -->
<object
src="TheEarth.mpeg"
srctype="video/mpeg"
xml:base="http://www.example.com/videos/">
<!-- Else, try the image -->
<object
src="TheEarth.png"
srctype="image/png"
xml:base="http://www.example.com/images/">
<!-- Else process the alternate text -->
The <strong>Earth</strong> as seen from space.
</object>
</object>
</object>
また、andriod、ios、windows、chrome などのすべてのプラットフォームで動作させるための最適なソリューションは何ですか?