File size: 2,755 Bytes
f3badb1 319e0cc f3badb1 319e0cc a8dc652 319e0cc 0b52c7a 319e0cc f3badb1 6c2e7b7 319e0cc 61479de 319e0cc 61479de 319e0cc 61479de 319e0cc 61479de f3badb1 0b52c7a b4c63fc c2542f9 f3badb1 319e0cc 0b52c7a 319e0cc f3badb1 b6f1ffc da317c4 b6f1ffc f3badb1 319e0cc 0b52c7a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DiffSInger数据集与合成效果对比展示</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
}
h1 {
text-align: center;
}
.audio-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.audio-player {
margin: 0 10px;
}
.description {
text-align: center;
}
</style>
</head>
<body>
<h1>DiffSInger数据集与合成效果对比展示</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="audio-container">
<div class="audio-player">
<audio controls>
<source src="voice1/jlc1.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/jlc2.wav" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<p>歌曲《锦鲤抄》片段合成效果</p>
</div>
</div>
<div class="audio-container">
<div class="audio-player">
<audio controls>
<source src="voice1/qsx1.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/qsx2.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>
<h1>DiffSInger合成效果展示</h1>
<div class="audio-container">
<div class="audio-player">
<audio controls>
<source src="voice1/w.wav" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<p>歌曲《我多想再见啊》</p>
</div>
</body>
</html>
|