c# 4.0 - Audio Conversion using C#.Net -


i want build simple audio converter (between major file formats) using c#.net, need know basic steps so.

thanks.

step 1: find third-party component(s) do(es) conversion between file formats.

step 2: use component in app.

if intent write raw conversion code yourself, ready pain. wav file format (aka linear pcm) easy enough deal with, long file header plus sample data. often, however, wav files lot more complicated , require more elaborate code locate various riff chunks , parse file.

and that's straightforward file format (usually) not encoding of sort. mp3 format vastly more complex, , requires knowledge of fft (fast fourier transform) , like.

update: alvas.audio 1 third-party c# component may need. naudio another.


Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -