File size: 1,352 Bytes
f3badb1
319e0cc
f3badb1
319e0cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f3badb1
 
319e0cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f3badb1
 
319e0cc
 
 
f3badb1
 
 
319e0cc
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
<!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/孤勇者数据集片段.wav" type="歌曲《孤勇者》数据集片段">
        Your browser does not support the audio element.
      </audio>
      <p>语音1</p>
    </div>
    <div class="audio-player">
      <audio controls>
        <source src="voice1/孤勇者片段合成效果.wav" type="歌曲《孤勇者》片段合成效果">
        Your browser does not support the audio element.
      </audio>
      <p>语音2</p>
    </div>
  </div>
  <div class="description">
    <p>在这里你可以播放两条论文语音并进行对比。</p>
    <p>你可以在这里添加更多描述。</p>
  </div>
</body>
</html>