1

私の会社では、パートナー企業が提供するビデオにサイトをリンクしています。彼らはビデオエンコーディングを.FLVから.MP4ビデオに変更しましたが、私たちのサイトの現在のビデオプレーヤーはそれらを再生しません。ほとんどのお客様がWindowsとInternetExplorerを実行していることを考慮して、Windows Media Playerに変更しました。使用した埋め込みコードは、次のとおりです。

<object>
  <embed type="application/x-mplayer2" 
    pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" 
    name="VideoPlayer" ShowStatusBar="false" 
    EnableContextMenu="false" autostart="true" 
    width="426" height="285" loop="false" 
    src=[video_url] />
</object>

サイトにWMPlayerが表示され、ビデオが再生されますが、クライアントには表示されたプレーヤーのみが表示され、ビデオは再生されません。クライアントのフラッシュプラグインを更新しましたが、まだ何もありません。何が問題なのですか?

4

2 に答える 2

0

FlowPlayerを使用することになりました

于 2011-05-23T02:21:03.707 に答える
0

You need to install additional codecs on the client machine. There are numerous codec packs for that (search google). You can't do it automatically from a browser either as it requires an installer to run.

WMP is a pretty crappy solution anyways since you're basically screwing over anyone who visits your site with a Mac or Linux computer. There are numerous other ways to play MP4 including via Flash but also using new HTML5 features.

于 2010-08-03T16:10:32.440 に答える