Skip to content

Commit b904f26

Browse files
committed
add audio examples
1 parent 3a9be26 commit b904f26

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

audio_examples.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,48 @@ title: Audio Examples
3535
width: 100%;
3636
margin-top: 5px; /* 오디오 태그 위 간격 줄임 */
3737
}
38+
39+
.audio-comparison-three {
40+
padding: 20px;
41+
margin-bottom: 30px;
42+
border-radius: 10px;
43+
border: 1px solid #e0e0e0;
44+
background-color: #f9f9f9;
45+
width: 100%;
46+
max-width: 1200px;
47+
margin: 0 auto;
48+
}
49+
50+
.audio-container-three {
51+
display: flex;
52+
justify-content: space-between;
53+
flex-wrap: wrap;
54+
}
55+
56+
.audio-block-three {
57+
width: 30%; /* 한 줄에 3개 */
58+
text-align: center;
59+
margin-bottom: 10px;
60+
}
61+
62+
p {
63+
margin-bottom: 5px;
64+
}
65+
66+
audio {
67+
width: 100%;
68+
margin-top: 5px;
69+
}
70+
3871
</style>
3972
</head>
4073

74+
75+
76+
77+
78+
79+
4180
<div class="page">
4281
<h2>Vocoder Quality</h2>
4382
<p> Here, we provide examples to illustrate the quality of the Soundstream vocoder, which sets an upper bound on the quality of our generated audio. </p>
@@ -116,6 +155,33 @@ title: Audio Examples
116155
<h2>Synthesized Samples</h2>
117156
<p> We present long sample comparisons between the NoBend and ViolinDiff to demonstrate their performance differences. </p>
118157

158+
<section class="audio-comparison-three">
159+
<div class="audio-container-three">
160+
<div class="audio-block-three">
161+
<p>NoBend Sample 1</p>
162+
<audio controls>
163+
<source src="vocoder/NoBend_Sample1.wav">
164+
Your browser does not support the audio element.
165+
</audio>
166+
</div>
167+
<div class="audio-block-three">
168+
<p>ViolinDiff Sample 1</p>
169+
<audio controls>
170+
<source src="vocoder/ViolinDiff_Sample1.wav">
171+
Your browser does not support the audio element.
172+
</audio>
173+
</div>
174+
<div class="audio-block-three">
175+
<p>ViolinDiff Sample 2</p>
176+
<audio controls>
177+
<source src="vocoder/ViolinDiff_Sample2.wav">
178+
Your browser does not support the audio element.
179+
</audio>
180+
</div>
181+
</div> <!-- Closing audio-container-three -->
182+
</section>
183+
</div>
184+
119185

120186

121187
<section class="audio-comparison">

0 commit comments

Comments
 (0)