|
<!DOCTYPE html> |
|
<html lang="zh-CN"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>论文语音对比展示</title> |
|
<style> |
|
body { |
|
font-family: Arial, sans-serif; |
|
padding: 20px; |
|
} |
|
h1 { |
|
text-align: center; |
|
} |
|
.audio-container { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
margin-bottom: 20px; |
|
} |
|
.audio-player { |
|
margin: 0 10px; |
|
} |
|
.description { |
|
text-align: center; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<h1>论文语音对比展示</h1> |
|
<div class="audio-container"> |
|
<div class="audio-player"> |
|
<audio controls> |
|
<source src="voice1/gyz1.wav" type="audio/mpeg"> |
|
Your browser does not support the audio element. |
|
</audio> |
|
<p>歌曲《孤勇者》数据集片段</p> |
|
</div> |
|
<div class="audio-player"> |
|
<audio controls> |
|
<source src="voice1/gyz2.wav" type="audio/mpeg"> |
|
Your browser does not support the audio element. |
|
</audio> |
|
<p>歌曲《孤勇者》片段合成效果</p> |
|
</div> |
|
</div> |
|
<div class="description"> |
|
<p>在这里你可以播放两条论文语音并进行对比。</p> |
|
<p>你可以在这里添加更多描述。</p> |
|
</div> |
|
</body> |
|
</html> |
|
|
|
|