Voice Message Service Developer's Reference Manual (6422-16): Alphabetical Function Reference
(Page 23 of 41 in this chapter) Version
vceOpenFile
Description
- Opens a voice file and returns a voice handle.
Prototype
- DWORD vceOpenFile ( CTAHD ctahd,
char *filename,
unsigned filetype,
unsigned openmode,
unsigned encoding,
VCEHD *vh)
- ctahd Handle returned by ctaCreateContext.
- filename Pointer to the name of the file to create. If the name does not contain a prepended path, then the file is created in the current working directory of either the application or the Natural Access Server (ctdaemon), depending on whether the application is running in Library or Server mode.
- filetype Acceptable values are:
VCE_FILETYPE_VOX VCE_FILETYPE_WAVE VCE_FILETYPE_FLAT VCE_FILETYPE_AUTO
- Refer to Details for more information.
- openmode Either VCE_PLAY_ONLY or VCE_PLAY_RECORD.
- encoding For unformatted files, the encoding of the data in the file. Set this to zero (0) for other files.
- vh Pointer to a returned voice handle.
Return Values
Events
Details
- This function opens an existing voice file. The file can be opened for play only or for both play and record. A file opened for record can have one writer but many readers. Only one application process or thread in the system can open the file for recording, whereas simultaneous play access is always allowed.
- The following file types are supported:
- WAVE
- Flat (unformatted)
- To have the file type inferred from the filename, set filetype to VCE_FILETYPE_AUTO.
- Note: The file extensions can also be lower case.
- If the filename has no extension and the file type is specified, then a .vox, .wav, or .vce extension is automatically implied.
- The NMS VOX file format stores multiple messages in one file and enables an application to delete, add, and edit messages.
- WAVE files are expected to conform to the Microsoft Multimedia Format and contain a WAVE chunk as the first or only RIFF form in the file. For additional information, refer to the Microsoft Windows Multimedia Programmer's Reference.
- Flat files contain no header information, only data.
- The encoding argument is necessary for flat files. It is not necessary to specify the encoding for other file types because the encoding is contained in the file header. If a non-zero encoding is specified, it must match the encoding in the header, or an error is returned.
- In Server mode, the file is created by the Natural Access Server (ctdaemon). It is recommended that you specify a fully qualified path for the filename argument to ensure the proper location of the file.
See Also
- vceAssignHandle
, vceCreateFile
Example
/* Open ten files containing spoken digits and store the handles in an array. */
VCEHD prompt_hd[10] = {0};
void openprompts (CTAHD ctahd)
{
unsigned index;
for (index=0; index<10; index++)
{
char filename[20];
sprintf (filename, "PROMPT%d.VCE", index);
vceOpenFile (ctahd, filename,
VCE_FILETYPE_FLAT, VCE_PLAY_ONLY,
VCE_ENCODE_NMS_24, &prompt_hd [index] );
}
}
(Page 23 of 41 in this chapter) Version
Want to send us feedback on our documentation? Email: Tech_Pubs@nmss.com
Copyright © 2001, Natural MicroSystems, Inc. All rights
reserved.