dancasimiro / WAV.jl

Julia package for working with WAV files
Other
85 stars 35 forks source link

Fix #77: Remove wavplay function #84

Closed dancasimiro closed 4 years ago

dancasimiro commented 4 years ago

The original implementation from Julia 0.2 times is not working well in the Julia 1.4.2 timeframe. Consider using LibSndFile as a replacement. Perhaps I will reimplement the wavplay interface in terms of LibSndFile and PortAudio later.

Remove wavplay from the package to fix #77.

coveralls commented 4 years ago

Coverage Status

Coverage increased (+23.4%) to 90.379% when pulling 517a25b31e0cf404ad7e461858fd3677a4066bbd on fix/remove-wavplay into b6a1b7f28d2918c49770865f8f43e203e97553ef on master.

ssfrr commented 4 years ago

It's worth noting that LibSndFile.jl doesn't offer a wavplay alternative - it just loads and saves files from disk but doesn't interact with soundcard. you'll need PortAudio.jl for that, which still has some lingering issues before I can do a release (though master seems to be working OK for most people right now)

dancasimiro commented 4 years ago

replaced by #85