VOGONS


First post, by DracoNihil

User metadata
Rank Oldbie
Rank
Oldbie

In some of my older games I have it apparently let's you select something called "VESA MIDI Driver"... what exactly is that? For some reason that just sounds like a MIDI port being offered by a SVGA card.

“I am the dragon without a name…”
― Κυνικός Δράκων

Reply 2 of 8, by DracoNihil

User metadata
Rank Oldbie
Rank
Oldbie

Almost anything using Miles Sound System I'd imagine, Cyberbykes in particular. The driver name is "vesamid.adv"

“I am the dragon without a name…”
― Κυνικός Δράκων

Reply 3 of 8, by Jepael

User metadata
Rank Oldbie
Rank
Oldbie

Eons ago VESA tried to standardize audio interfaces with supplemental specs.

It was thought to be same than for video cards, at first enhanced video cards needed special support like in the form of a driver that can drive the particular piece of hardware while still offering standard interface for software, now they just tried to extend that to sound devices.

Reply 4 of 8, by DracoNihil

User metadata
Rank Oldbie
Rank
Oldbie

Ah okay... Though did any such VESA MIDI device exist? Because really when I see VESA I immediately think of SVGA cards.

“I am the dragon without a name…”
― Κυνικός Δράκων

Reply 5 of 8, by keropi

User metadata
Rank l33t++
Rank
l33t++

the VESA people standardized many more things than vga modes, from ic/connector pinouts to pins spacing and stuff that are out of the computing universe...

🎵 🎧 PCMIDI MPU , OrpheusII , Action Rewind , Megacard and 🎶GoldLib soundcard website

Reply 6 of 8, by bristlehog

User metadata
Rank Oldbie
Rank
Oldbie

VESA VBE/AI is an unified interface for sound cards TSR drivers released circa 1994.

To the best of my knowledge, only these sound and music devices have VESA drivers:

PCM:

Sound Blaster
Pro AudioSpectrum
Disney Sound Source

Music:

Generic OPL2
Generic MPU-401

Miles AIL 2.0 supports VESADIG.ADV/VESAMID.ADV for PCM sound and MIDI music, DIGPAK has support via DIGVESA.COM. However, the mentioned support is all but useless since DIGPAK supports all mentioned digital devices (SB, PAS and DSS) directly, while AIL does SB & PAS for digital and OPL2 & MPU for MIDI. Maybe if one has a Disney Sound Source and wants to run an AIL game on it, the VESADIG.ADV driver might prove useful.

Maybe there are other sound devices that have VESA VBE/AI compliant drivers, but I know none.

VESA VBE/AI SDK (VAISDK.ZIP) including VBE/AI sound drivers can be found here: http://cd.textfiles.com/freedom/CODE/SOUND/

P.S.

DracoNihil wrote:

Almost anything using Miles Sound System I'd imagine, Cyberbykes in particular. The driver name is "vesamid.adv"

You mean Miles Audio Interface Library (AIL) and MIDPAK which is a wrapper for Miles AIL real mode MIDI drivers (*.ADV).

Miles Sound System (MSS) is a heir of Miles AIL, it uses DIG/MDI drivers for PCM/MIDI. It only works in protected mode, making it nearly impossible to interact with any TSR software (while VESA sound drivers are TSR). In MSS, several devices support was dropped compared to AIL:

VESA VBE/AI
Sierra Semiconductor ARIA
Turtle Beach Multisound Classic
ASC Media Master

Hardware comparisons and game system requirements: https://technical.city

Reply 7 of 8, by digger

User metadata
Rank Oldbie
Rank
Oldbie
bristlehog wrote:

Miles AIL 2.0 supports VESADIG.ADV/VESAMID.ADV for PCM sound and MIDI music, DIGPAK has support via DIGVESA.COM. However, the mentioned support is all but useless since DIGPAK supports all mentioned digital devices (SB, PAS and DSS) directly, while AIL does SB & PAS for digital and OPL2 & MPU for MIDI. Maybe if one has a Disney Sound Source and wants to run an AIL game on it, the VESADIG.ADV driver might prove useful.

That's a very interesting thing to try out! A lot of games used the Miles/AIL drivers and if they could all be made to support digital audio output over the parallel port using this trick, that would be great. As you yourself listed in this topic, that is quite a list of games we're talking about. 😀

However, since the Disney Sound Source only supports playback of audio at a fixed frequency of around 7kHz, and most DOS games use 11kHz audio samples, I wonder how the VBE/AI driver for the Disney Sound Source would cope with that. According to the official VBE/AI specification, 11025Hz is supported as one of the "standard sample rates", but I wonder if the standard provided Disney Sound Source driver won't throw a WAV_BADSAMPLERATE error at that frequency anyway. If it doesn't, does it simply play back the 11kHz at 7kHz, resulting in the digital audio in games being played at a lower pitch? That seems the most obvious, since downsampling from 11kHz to 7kHz in the driver would seem quite a complex thing to implement, especially in a driver that is only 5K in size. Or am I mistaken?

Anyway, I tried loading SSWAVE.COM (the VESA VBE/AI driver for the Disney Sound Source) in a DOSBox session, but unfortunately the DSS emulation in DOSBox doesn't work with the autodetection performed by the driver. Could somebody with an actual Disney Sound Source or a compatible DIY clone try loading the driver on actual hardware and then trying it out in combination with VESADIG.ADV with any of the Miles/AIL-supporting games listed in this topic? Thanks! I'm really curious about the results. 😀

Maybe there are other sound devices that have VESA VBE/AI compliant drivers, but I know none.

Glancing through the specification, the VBE/AI looks like a fairly elegant standard that was hardware-neutral and easy to program for as well as to implement. It was even envisioned that support for it would be included in the ROM BIOS on newer systems. It's a shame this standard never took off and that apparently no DOS games supported it natively. If only this standard had come out 3 years earlier or so! If such a DOS sound standard with proper hardware abstraction had taken hold, we would not have so much trouble getting sound in DOS games to work in the PCI(e) era! 🙁

Also, it's typicial how not a single person in the long list of committee members on page 2 and 3 worked at Creative Labs. Pretty much every other relevant company in the multimedia industry of the era was represented in that list. It was obviously not in Creative's best interest to stimulate a hardware-independent audio interface standard... 🤣

Lately, I've been wanting to write DOS drivers for more modern sound devices, such as AC'97, HDA, USB Audio or even a PulseAudio source that would stream the audio from DOS games over a network using mTCP. The VBE/AI 1.0 standard would seem a perfect fit for such a project. At first I considered writing such a new driver as a DIGPAK driver, but not only would a VBE/AI driver get me both DIGPAK and Miles/AIL support for free in the form of existing bridge drivers, I would also be supporting an open standard. And additionally, it would help cross off an item from the FreeDOS development wishlist. It really seems like a fun and worthwhile project, but if anyone would be interested in joining me or helping me along, I would appreciate it. I've been dabbling with 8086 assembly lately and it's fun, but I'm only gradually gaining experience with it. 😀

VESA VBE/AI SDK (VAISDK.ZIP) including VBE/AI sound drivers can be found here: http://cd.textfiles.com/freedom/CODE/SOUND/

Thanks for that link. And in addition to that, here is a link to version 1.0 of the official VBE/AI standard: http://stagit.kroovy.de/gopher.viste.fr/P/pro … AI%2520v1.0.pdf