tplay.m: artefact-free audio presentation despite Windows 7

版本 1.2.0.0 (5.4 KB) 作者: Trevor Agus
Like 'sound' or 'wavplay', but uses ASIO for glitch-free sound presentation.
374.0 次下载
更新时间 2012/7/5

查看许可证

Reliable audio presentation is difficult with the Matlab/Windows 7 combination. So tplay is a simple function (equivalent to sound or wavplay) that takes care of it.

***tplay will only work with ASIO-enabled sound-cards, i.e., it will probably NOT work on your laptop (unless you install ASIO4ALL -- see http://www.asio4all.com/)***

THE PROBLEM:
Several soundcard manufacturers recommend that Windows 7 users only use ASIO to communicate with the soundcard; Matlab's native audio functions (sound, wavplay, audioplayer) do not currently support ASIO.

As such sound/wavplay/audioplayer may work with Windows 7, but they are unsupported. Artefacts are in fact likely, including:
* Truncation (the last ~30 ms of your signal is removed, without any smooth ramp off, leading to an audible click)
* Glitches (click-like artefacts occurring in the middle of a sound at random intervals).

THE SOLUTION(S)
Download tplay (from here) and playrec.dll (from www.earcatching.com/playrec.zip for 32-bit computers)

You can then just replace your "sound(wave,fs)" with "tplay(wave,fs)" in your code.

OR, even better, adapt the code of tplay for your own purposes: it is just an interface to "playrec", which is a little more complicated, but a lot more powerful -- see http://www.playrec.co.uk/

SMALLPRINT
tplay.m has two undesirable features:

1/ tplay.m opens the first ASIO channel it finds, which should be the same channel on the same device each time. If you want more control, you can use the 'asioname' parameter, but you might be better using playrec directly.

2/ The first time it's used, tplay.m opens a new ASIO channel (if necessary) but then leaves it open for the next time! (The alternative, closing the ASIO channel immediately at the end of the sound, truncates up to 30 ms of the sound on some systems.) Make sure to exit Skype to avoid interactions!

To close the ASIO channel without a click, use 'tplayclean.m'.

To close the ASIO channel more violently, perhaps to stop an interminable sound, use 'tplayinterrupt.m'

You may find 'tplaywait.m' useful to wait until the end of a sound if you've used tplay's non-blocking mode (waitflag=false)

引用格式

Trevor Agus (2024). tplay.m: artefact-free audio presentation despite Windows 7 (https://www.mathworks.com/matlabcentral/fileexchange/35111-tplay-m-artefact-free-audio-presentation-despite-windows-7), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2007b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Audio and Video Data 的更多信息
致谢

参考作品: pa-wavplay

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.2.0.0

Links to playrec.zip rather than playrec.dll

1.0.0.0