3

私はHTML 5の初心者です。私が抱えている問題は、Firefox でタグが機能していることです。

私が使用したコードは次のとおりです。

<audio src="Repipe-WebsiteNevada_06-24-08.ogg" controls autoplay>  
  <span class="style19"><a href="Repipe-WebsiteNevada_06-24-08.mp3">
      A message from Repipe Specialists</a></span>
</audio>  

ローカルで動作しますが、アップロードしてテストすると. オーディオプレーヤーがまったく表示されません。

これはページです:

http://www.repipespecialists.com/landing/ctc/repipe_specialists_usa_test.html

誰か助けてくれませんか?

4

3 に答える 3

1

type タグを使用して、audio/ogg を使用していることを指定する必要があります。何かのようなもの

<audio controls autoplay>
  <source src="file.ogg" type="audio/ogg" />
  <source src="file.mp3" type="audio/mp3" />
</audio>

(さまざまなブラウザーのフォールバックとして複数のファイルを一覧表示する方法に注意してください。)


その後、サーバーを構成する必要があります。この StackOverflow の回答は特に役立つかもしれません。

于 2012-06-13T23:41:57.143 に答える
0
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Tryit Editor v1.5</title>
<link rel="stylesheet" type="text/css" href="/tryit.css" />
<script type="text/javascript">
</script>
<style type="text/css">
body
{
color:#000000;
background-color:#ffffff;
margin:4px;
margin-top:0px;
}

</style>
</head>

<body>
<div style="position:relative;width:100%;margin-top:50px;margin-bottom:0px;">
<div style="width:960px;height:94px;position:relative;margin:0px;margin-left:auto;margin-right:auto;margin-top:5px;margin-bottom:5px;padding:0px;overflow:hidden">
<audio controls="controls">
  <source src="song.ogg" type="audio/ogg" />
  <source src="song.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>

</body>
</html>
于 2012-07-17T08:45:12.830 に答える
0

これは、サーバー側の鉱山タイプの構成と、ブラウザがさまざまなコンテンツ タイプの応答を解釈する方法に関係していると思います。

ogg ファイルの応答 content-type は です。Chrometext/plainなどの一部のブラウザでは、実際のコンテンツ タイプが ogg であると予測できますが、Firefox ではそれができません。その結果、Firefox はこのファイルを ogg オーディオとしてロードできません。

于 2012-06-14T02:17:12.030 に答える