File size: 4,794 Bytes
687e655 |
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
<!DOCTYPE html>
<html>
<head>
<link href="css/styles.css" rel="stylesheet">
<title>Full-band Recurrent Network</title>
</head>
<body>
<nav>
<ul>
<!-- <li><a href="/">Home</a></li> -->
<li><a href="https://github.com/Crystalsound/FRN/">Github</a></li>
<li><a href="https://arxiv.org/abs/2211.04071">Arxiv</a></li>
<li><a href="https://www.namitech.io/">Website</a></li>
</ul>
</nav>
<div class=”container”>
<div class=”blurb”>
<h1>Audio samples</h1>
<p><b>Improving performance of real-time full-band blind packet-loss concealment with predictive network</b></a>
</p>
<p><i>Viet-Anh Nguyen<sup>1</sup>, Anh H. T. Nguyen<sup>1</sup>, and Andy W. H. Khong<sup>2</sup></i>
<br><sup>1</sup>Crystalsound Team, NamiTech JSC, Ho Chi Minh City, Vietnam
<br><sup>2</sup>Nanyang Technological University, Singapore
<br><TT>{vietanh.nguyen, anh.nguyen}@namitech.io, andykhong@ntu.edu.sg
</div>
</div>
<h3> Audio samples of our full-band recurrent network (FRN) versus TFGAN and tPLCNet for blind packet loss concealment
(PLC)</h3>
Audio files are at 48 kHz sampling rate with packet size of 20 ms. Our FRN is a causal and blind PLC model while TFGAN
is non-causal and tPLC is an informed PLC model.
<br> </br>
<table>
<thead>
<tr>
<th align="middle">Clean target</th>
<th align="middle">Lossy input</th>
<th align="middle">TFGAN</th>
<th align="middle">tPLCNet</th>
<th align="middle">FRN (Ours)</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_1/clean.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_1/lossy.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_1/TFGAN_enhanced.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_1/tPLC_enhanced.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_1/FRN_enhanced.wav" type="audio/wav">
</audio>
</td>
</tr>
<tr>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_2/clean.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_2/lossy.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_2/TFGAN_enhanced.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_2/tPLC_enhanced.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_2/FRN_enhanced.wav" type="audio/wav">
</audio>
</td>
</tr>
<tr>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_3/clean.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_3/lossy.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_3/TFGAN_enhanced.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_3/tPLC_enhanced.wav" type="audio/wav">
</audio>
</td>
<td>
<audio controls style="width: 250px; height: 50px">
<source src="audio_samples/sample_3/FRN_enhanced.wav" type="audio/wav">
</audio>
</td>
</tr>
</tbody>
</table>
<!-- <footer>
<ul>
<li><a href=”mailto:YOUREMAIL”>YOUREMAIL</a></li>
</ul>
</footer> -->
</body>
</html>
|