0

I'm hoping to programmatically record several sound files from a microphone under DOS using DJGPP.

So far my research has pointed to OpenAL, but I can't find anything definite that that's the best way to go. I'm wondering if anyone here's done this before and can save me some time?

Galwegian
  • 41,475
  • 16
  • 112
  • 158

2 Answers2

1

There is no OpenAL implementation for DOS. Why do you want to do it under DOS? Anyway, look for original SoundBlaster API.

John
  • 2,295
  • 1
  • 20
  • 25
  • thanks for your reply. I _have_ to do this under DOS unfortunately, so I'm stuck with it. Care to elaborate on your answer? – Galwegian May 30 '11 at 16:53
  • @Galwegian: Well, there is Sound Blaster SDK for DOS available. It should support playing/recording waveform and MIDI. But remember it's almost 20 years old and uses really low level (ISA DMA). – John May 30 '11 at 20:31
0

did you take a look to allegro ? It has some sound recording features : http://alleg.sourceforge.net/latestdocs/en/alleg029.html and it is working with DJGPP

willll
  • 1,809
  • 1
  • 16
  • 23