0

我需要将视频/音频的 url 添加到我网站上的播放器中。

例如:我从嵌入标签的“src”中获得了这段代码

http://www.ndtv.com/common/videos/flash/player/new-wrapper/NDTVVideoPlayer.swf?1384167757

它没有用。

请建议如何获取正确的 URL,媒体播放器是“MP Plyaer”

4

1 回答 1

0

像这样嵌入你的 SWF

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>
    <title>Embed SWF</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script type="text/javascript" src="swfobject.js"></script>

    <script type="text/javascript">
    swfobject.embedSWF("http://www.ndtv.com/common/videos/flash/player/new-wrapper/NDTVVideoPlayer.swf?1384167757", "myContent", "300", "120", "9.0.0");
    </script>

  </head>
  <body>
    <div id="myContent">
      <p>NDTV SWF</p>
    </div>
  </body>
</html>
于 2013-11-13T05:41:35.817 回答