vote up 3 vote down star
2

<flavor> I want to create a spelling test program for my grade schoolers that would let them enter and record their spelling words then test them on them through out the week.</flavor>

What's a good Delphi API with which I could select a recording device, capture and save sound files, then play them back?

I'm also toying with doing the same project in C#, so C# Sound capture/playback API recommendations would also be appreciated.

flag

6 Answers

vote up 2 vote down check

An alternative to recording would be to use the MS Speech API with C#, enter the words via keyboard, and have it state what was keyed in.

Just a thought... Good luck on your app -- it sounds like a really cool program!

link|flag
I'll play with that, my concern is that it probably will mangle a few of the words via phonetic pronounciation. (i.e. 'though') and confuse my kids more than help them. If it works though it'd be slick. – Zartog Sep 26 '08 at 20:03
It works pretty well actually, and it is possible to spell them in different spellings to 'encourage' the engine to pronounce them properly. – Zooba Sep 27 '08 at 2:13
Yeah, I'm definitely familiar with that (forcing phoenetic spellings) - 'wich is wie I woud nott want et en eh sppeleng drel' :) – Zartog Sep 27 '08 at 18:50
Even the speech synthesiser I had on my Apple IIe didn't need that much help :D Besides, who says you have to display/expect the same string as what you're sending to the synthesiser? – Zooba Oct 1 '08 at 10:39
vote up 2 vote down

This component set looks promising though I've never used it myself. AudioLab 3.1 has both VCL components as well .NET 2.0 components which should allow you to use it whether you stay with developing your application in Delphi or move to C#. Finally, it appears to be Free for non-commercial use.

link|flag
vote up 1 vote down

The best place to look for Delphi Components

(Audio) http://www.torry.net/pages.php?id=167

link|flag
vote up 1 vote down

I've found New Audio Components to be quite good for Delphi.

link|flag
vote up 0 vote down

Why not use the TMediaPlayer that comes with Delphi (in the System Tab of the Palette)?
It can record and play wave files very easily

link|flag
vote up 0 vote down

I was also going to suggest AudioLab.

link|flag

Your Answer

Get an OpenID
or

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