Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently I'm recording an audio signal with following specs:

  • Channels: 1
  • SamplesPerSecond: 8000
  • BitsPerSample: 16

How can I convert this .wav-file to eg following specs (pure c# is preferred):

  • Channels: 1
  • SamplesPerSecond: 22050
  • BitsPerSample: 16

Thanks in advance!

share|improve this question

3 Answers

up vote 3 down vote accepted

Windows API (one of) to resample audio is Audio Resampler DSP. This transform class is pretty straightforward to set up input and output types, then push input data and pull output.

Another task you would possible deal additionally with is reading from file and writing into a new file (you did not specify if it is actually needed in your original description though).

You might also want to use third party libraries like NAudio.

See also:

share|improve this answer
the demo @stackoverflow.com/questions/3194184/… looks really promising! – Andreas Niedermair Nov 3 '11 at 13:55
too funny ... Alvas.Audio is working with MsgBox ... fail on a web-page (even with their own example @alvas.net/alvas.audio,tips.aspx#tip24) – Andreas Niedermair Nov 4 '11 at 6:53
ha ... even more funny ... typeInitializer of Alvas.Audio is using a MsgBox ... so ... nope - but thanks! – Andreas Niedermair Nov 4 '11 at 7:00
This is why third party libraries are to be used with care :) – Roman R. Nov 4 '11 at 7:11

try Naudio - it is a free + opensource .NET library offering several things including the ability to resample AFAIK.

As requested sample source for resampling

share|improve this answer
can you give me any example code? – Andreas Niedermair Nov 3 '11 at 13:16
@AndreasNiedermair added a link to a sample which does resampling – Yahia Nov 3 '11 at 13:20

AS3 function for resampling. You can easy change to convert this code to C#:

    private function resampling(fromSampleRate:int, toSampleRate:int, quality:int = 10):void
    {
        var samples:Vector.<Number> = new Vector.<Number>;

        var srcLength:uint = this._samples.length;
        var destLength:uint = this._samples.length*toSampleRate/fromSampleRate;
        var dx:Number = srcLength/destLength;

        // fmax : nyqist half of destination sampleRate
        // fmax / fsr = 0.5;
        var fmaxDivSR:Number = 0.5;
        var r_g:Number = 2 * fmaxDivSR;

        // Quality is half the window width
        var wndWidth2:int = quality;
        var wndWidth:int = quality*2;

        var x:Number = 0;
        var i:uint, j:uint;
        var r_y:Number;
        var tau:int;
        var r_w:Number;
        var r_a:Number;
        var r_snc:Number;
        for (i=0;i<destLength;++i)
        {
            r_y = 0.0;
            for (tau=-wndWidth2;tau < wndWidth2;++tau)
            {
                // input sample index
                j = (int)(x+tau);

                // Hann Window. Scale and calculate sinc
                r_w = 0.5 - 0.5 * Math.cos(2*Math.PI*(0.5 + (j-x)/wndWidth));
                r_a = 2*Math.PI*(j-x)*fmaxDivSR;
                r_snc = 1.0;
                if (r_a != 0)
                    r_snc = Math.sin(r_a)/r_a;

                if ((j >= 0) && (j < srcLength))
                {
                    r_y += r_g * r_w * r_snc * this._samples[j];
                }
            }
            samples[i] = r_y;
            x += dx;
        }

        this._samples = samples.concat();
        samples.length = 0;
    }
share|improve this answer
interesting stuff! just to be sure: Vector.<Number> is equivalent to int[2]? – Andreas Niedermair Aug 21 '12 at 4:18
No, "Vector.<Number>" is vector of 32 bit floating point numbers – Sasha Aug 21 '12 at 18:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.