开发者

Create .wav file using C#

开发者 https://www.devze.com 2023-03-09 21:08 出处:网络
I have nessary chunk header bytes for a wave file stored in a text file. What I\'d like to do is create a new .wav that will vary in data length and write int开发者_JS百科o it 50ms/10kHz signals(which

I have nessary chunk header bytes for a wave file stored in a text file. What I'd like to do is create a new .wav that will vary in data length and write int开发者_JS百科o it 50ms/10kHz signals(which is stored in separate file). How can I accomplish with .NET/C#?

-Mickey


Use the System.IO.BinaryReader and System.IO.BinaryWriter streams to read data from your signals files, write binary datatypes to a file, as per the wav file specification.

0

精彩评论

暂无评论...
验证码 换一张
取 消